@charset "UTF-8";
@media (min-width: 300px) {
    html {
        scroll-behavior: smooth;
    }
    p {
        margin-bottom: 0;
    }
    body {
        margin: 0;
    }
    a {
        text-decoration: none;
    }
    .top-container {
        /*
②画像の数ごとに animation-delay を設定します。
　下記では、5秒間隔で切り替わるように設定しています。
*/
    }
    .top-container .hero {
        position: relative;
        overflow: hidden;
        height: 100vh;
    }
    .top-container .slider {
        position: absolute;
        top: 0;
        left: 0;
        overflow: hidden;
        width: 100%;
        height: 100%;
        background-color: #000;
    }
    .top-container .slider .image {
        position: absolute;
        z-index: 1;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        -webkit-animation: anime 15s 0s infinite;
        animation: anime 15s 0s infinite;
        /* ②で設定したanimation-delayをスライド数で割った時間をdelay(15s)に入れる */
        opacity: 0;
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
    }
    .top-container .slider .image:nth-of-type(1) {
        background-image: url('../image/main.png');
    }
    .top-container .slider .image:nth-of-type(2) {
        -webkit-animation-delay: 5s;
        animation-delay: 5s;
        background-image: url('../image/main.png');
    }
    .top-container .slider .image:nth-of-type(3) {
        -webkit-animation-delay: 10s;
        animation-delay: 10s;
        background-image: url('../image/main.png');
    }
    @-webkit-keyframes anime {
        0% {
            opacity: 0;
        }
        50% {
            opacity: 1;
        }
        100% {
            opacity: 0;
            -webkit-transform: scale(1.18);
            transform: scale(1.18);
        }
    }
    @keyframes anime {
        0% {
            opacity: 0;
        }
        50% {
            opacity: 1;
        }
        100% {
            opacity: 0;
            -webkit-transform: scale(1.18);
            transform: scale(1.18);
        }
    }
    .top-container #header-container {
        display: none;
    }
    .message-container {
        margin: 0 auto;
    }
    .message-container .information {
        text-align: left;
        padding: 40px 24px 40px 24px;
    }
    .message-container .information .message {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        flex-wrap: wrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .message-container .information .message .date-time {
        font-family: MatisseProN-M;
        font-size: 12px;
    }
    .date-message {
        font-family: MatisseProN-M;
        font-size: 14px;
        min-width: 100%;
        padding-top: 10px;
        color: #11365c;
    }
    .message-container .information .button-container {
        text-align: left;
        padding-top: 10px;
    }
    .concept-container {
        text-align: center;
        margin: 0 auto;
    }
    .concept-container .concept-title {
        margin-bottom: 50px;
    }
    .concept-container .concept-theme {
        color: #000000;
        font-size: 14px;
        font-family: Copperplate;
        height: 49px;
        letter-ing: 6.6px;
        line-height: 40px;
        margin-bottom: 68px;
    }
    .concept-container .concept-text {
        color: #000000;
        letter-ing: 3.2px;
        line-height: 40px;
        font-size: 12px;
        padding: 0 10px 0 10px;
    }
    .concept-container .concept-text .concept-text2 {
        margin: 68px 0 68px 0;
        display: inline-block;
    }
    .works-over-container {
        position: relative;
        z-index: 1;
    }
    .works-over-container:before {
        content: '';
        background-color: #e5eaee;
        position: absolute;
        left: 0;
        top: 3%;
        width: 100%;
        height: 55%;
        -webkit-transform: translateY(50px) skew(0, -8deg);
        transform: translateY(50px) skew(0, -8deg);
    }
    .works-container {
        text-align: center;
        margin-bottom: 124px;
    }
    .works-container .works-title {
        padding: 76px 0 50px 0;
        position: relative;
        z-index: 2;
    }
    .works-container .works-contents-container {
        margin: 0 auto;
    }
    .works-container .works-contents-container .works-category-container {
        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;
        margin: 0 auto;
    }
    .works-container .works-contents-container .works-category-container .works-block {
        margin: 0 12px 36px 12px;
        position: relative;
        z-index: 2;
        /*ホバーエフェクト*/
    }
    .works-container .works-contents-container .works-category-container .works-block img {
        max-width: 100%;
    }
    .works-container .works-contents-container .works-category-container .works-block HTML CSS Result Skip Results Iframe .zoom-out {
        width: 100%;
    }
    .works-container .works-contents-container .works-category-container .works-block .zoom-out-img {
        margin: 0;
        padding: 0;
        background: #fff;
        overflow: hidden;
        cursor: pointer;
    }
    .works-container .works-contents-container .works-category-container .works-block .zoom-out-img img {
        width: 100%;
    }
    .works-container .works-contents-container .works-category-container .works-block .zoom-out-img img {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
        -webkit-transition: 0.3s ease-in-out;
        transition: 0.3s ease-in-out;
    }
    .works-container .works-contents-container .works-category-container .works-block .zoom-out-img:hover img {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    .works-container .works-contents-container .works-category-container .works-block .category-container {
        text-align: center;
        position: absolute;
        top: 90%;
        left: 15%;
    }
    .works-container .works-contents-container .works-category-container .works-block .category-container .category {
        width: 136px;
        height: 36px;
        background-color: white;
        color: black;
        border: none;
        font-size: 14px;
        font-family: MatisseProN-M;
        cursor: pointer;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
    }
    .works-container .works-contents-container .works-category-container .works-block .category-container .category.float:hover {
        -webkit-box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.5);
        box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.5);
    }
    .access-container {
        text-align: center;
        position: relative;
        z-index: 2;
    }
    .access-container .google-container {
        max-width: 100%;
        padding: 30px 0 10px 0;
    }
    .access-container .company-name {
        font-family: MatisseProN-M;
        font-size: 16px;
        padding-bottom: 24px;
        line-height: 45px;
    }
    .access-container .address-text {
        font-size: 12px;
        font-family: KozGoPr6N-Regular;
    }
    .access-container .address-text2 {
        font-size: 12px;
        padding-top: 24px;
        font-family: MatisseProN-M;
    }
    .access-container .bottom {
        margin-bottom: 10px;
    }
    .banner-container {
        max-height: 180px;
        background-color: #22222e;
        text-align: center;
        height: 112px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .banner-container img {
        max-width: 100%;
    }
    .title-container {
        letter-ing: 9.6px;
        color: #1a5086;
        font-size: 36px;
        font-family: Copperplate;
    }
    .title-container .image-container {
        width: 568px;
        height: 96px;
        vertical-align: middle;
        margin: 0 auto;
        background-color: white;
    }
    .recruit-container {
        background-image: url('../image/footer.jpg');
    }
    .recruit-container .recruit-information .recruit-address-information {
        margin: 0 auto;
        padding: 33px 0 0 8%;
    }
    .recruit-container .recruit-information .recruit-address-information .recruit-company-name {
        margin-bottom: 28px;
        font-family: MatisseProN-M;
        font-size: 14px;
        color: #ffffff;
    }
    .recruit-container .recruit-information .recruit-address-information .recruit-address {
        font-family: KozGoPr6N-Regular;
        color: #ffffff;
        margin-bottom: 12px;
        font-size: 14px;
    }
    .recruit-container .recruit-information .recruit-address-information .phone-number {
        font-family: MatisseProN-M;
        font-size: 14px;
        color: #ffffff;
    }
    .recruit-container .recruit-information .recruit-address-information .phone-recruit-container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-bottom: 48px;
    }
    .recruit-container .recruit-information .recruit-address-information .time {
        font-size: 14px;
        font-family: MatisseProN-M;
        color: #ffffff;
    }
    .recruit-container .recruit-information .wave-container img {
        max-width: 100%;
    }
    .recruit-container .recruit-button-container {
        text-align: center;
    }
    .button-container {
        text-align: left;
        margin-top: 0;
        margin-left: 8%;
    }
    .button-container2 {
        text-align: left;
        margin-left: 8%;
        margin-top: 12px;
        margin-bottom: 32px;
    }
    .button-containerINF {
        text-align: center;
        margin: 0;
    }
    .button-container .button {
        background-color: #1a5086;
        color: white;
        border: none;
        font-size: 0.8rem;
        padding-top: 0.8rem;
        padding-bottom: 0.7rem;
        padding-left: 40px;
        padding-right: 40px;
        border-radius: 2px;
        font-family: MatisseProN-M;
        cursor: pointer;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
    }
    .information .button-container .button {
        background-color: #1a5086;
        color: white;
        border: none;
        font-size: 0.6rem;
        padding: 8px 20px;
        border-radius: 2px;
        font-family: MatisseProN-M;
        cursor: pointer;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
    }
    .button-container .button.float:hover {
        -webkit-box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.5);
        box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.5);
    }
    .button-container .button.float:focus {
        outline: none;
    }
    .left {
        margin: 10px 0 10px 0;
    }
    .add-top {
        opacity: 0;
        display: none;
    }
    .footer-container {
        display: none;
        background-color: #1a5086;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding: 28px 0 28px 0;
    }
    .footer-container .footer-contents-container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-right: 200px;
    }
    .footer-container .footer-contents-container li {
        list-style: none;
    }
    .footer-container .logo-image-container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .copyright-container {
        text-align: center;
        background-color: #1a5086;
        color: #ffffff;
        padding-top: 8px;
        padding-bottom: 8px;
    }
    .copyright-container .copyright {
        font-size: 0.2rem;
    }
    .top {
        margin-top: 56px;
    }
    a {
        color: white;
    }
    a:hover {
        color: white;
    }
    li {
        font-family: MatisseProN-M;
    }
    #header {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 56px;
        z-index: 500;
    }
    .scroll-nav {
        background-color: #1a5086;
    }
    .global-nav {
        position: fixed;
        right: -320px;
        /* これで隠れる */
        top: 0;
        width: 300px;
        /* スマホに収まるくらい */
        height: 100vh;
        padding-top: 40px;
        background-color: #183b58;
        -webkit-transition: all 0.6s;
        transition: all 0.6s;
        z-index: 200;
        overflow-y: auto;
        /* メニューが多くなったらスクロールできるように */
    }
    .hamburger {
        position: absolute;
        right: 0;
        top: 10px;
        width: 50px;
        /* クリックしやすいようにちゃんと幅を指定する */
        height: 50px;
        /* クリックしやすいようにちゃんと高さを指定する */
        cursor: pointer;
        z-index: 300;
    }
    .global-nav__list {
        margin: 0;
        padding: 0;
        list-style: none;
    }
    .global-nav__item {
        text-align: left;
        margin-left: 24px;
        padding: 0 14px;
    }
    .hamburger__line {
        position: absolute;
        left: 11px;
        width: 18px;
        height: 2px;
        background-color: #fff;
        -webkit-transition: all 0.6s;
        transition: all 0.6s;
    }
    .hamburger__line--1 {
        top: 14px;
    }
    .hamburger__line--2 {
        top: 20px;
    }
    .hamburger__line--3 {
        top: 26px;
    }
    .black-bg {
        position: fixed;
        left: 0;
        top: 0;
        width: 100vw;
        height: 100vh;
        z-index: 100;
        background-color: #000;
        opacity: 0;
        visibility: hidden;
        -webkit-transition: all 0.6s;
        transition: all 0.6s;
        cursor: pointer;
    }
    /* 表示された時用のCSS */
    .nav-open .global-nav {
        right: 0;
    }
    .nav-open .black-bg {
        opacity: 0.8;
        visibility: visible;
    }
    .nav-open .hamburger__line--1 {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        top: 20px;
    }
    .nav-open .hamburger__line--2 {
        width: 0;
        left: 50%;
    }
    .nav-open .hamburger__line--3 {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        top: 20px;
    }
}

@media (min-width: 450px) {
    html {
        scroll-behavior: smooth;
    }
    p {
        margin-bottom: 0;
    }
    .top-container {
        /*
②画像の数ごとに animation-delay を設定します。
　下記では、5秒間隔で切り替わるように設定しています。
*/
    }
    .top-container .hero {
        position: relative;
        overflow: hidden;
        height: 100vh;
    }
    .top-container .slider {
        position: absolute;
        top: 0;
        left: 0;
        overflow: hidden;
        width: 100%;
        height: 100%;
        background-color: #000;
    }
    .top-container .slider .image {
        position: absolute;
        z-index: 1;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        -webkit-animation: anime 15s 0s infinite;
        animation: anime 15s 0s infinite;
        /* ②で設定したanimation-delayをスライド数で割った時間をdelay(15s)に入れる */
        opacity: 0;
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
    }
    .top-container .slider .image:nth-of-type(1) {
        background-image: url('../image/main.png');
    }
    .top-container .slider .image:nth-of-type(2) {
        -webkit-animation-delay: 5s;
        animation-delay: 5s;
        background-image: url('../image/main.png');
    }
    .top-container .slider .image:nth-of-type(3) {
        -webkit-animation-delay: 10s;
        animation-delay: 10s;
        background-image: url('../image/main.png');
    }
    @-webkit-keyframes anime {
        0% {
            opacity: 0;
        }
        50% {
            opacity: 1;
        }
        100% {
            opacity: 0;
            -webkit-transform: scale(1.18);
            transform: scale(1.18);
        }
    }
    @keyframes anime {
        0% {
            opacity: 0;
        }
        50% {
            opacity: 1;
        }
        100% {
            opacity: 0;
            -webkit-transform: scale(1.18);
            transform: scale(1.18);
        }
    }
    .top-container #header-container {
        display: none;
    }
    .message-container {
        margin: 0 auto;
    }
    .message-container .information {
        text-align: left;
        padding: 40px 36px 40px 36px;
    }
    .message-container .information .message {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        flex-wrap: wrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .message-container .information .message .date-time {
        font-family: MatisseProN-M;
        font-size: 12px;
    }
    .date-message {
        font-family: MatisseProN-M;
        font-size: 14px;
        min-width: 100%;
        padding-top: 10px;
        color: #11365c;
    }
    .message-container .information .button-container {
        text-align: left;
        padding-top: 10px;
    }
    .concept-container {
        text-align: center;
        margin: 0 auto;
    }
    .concept-container .concept-title {
        margin-bottom: 50px;
    }
    .concept-container .concept-theme {
        color: #000000;
        font-size: 18px;
        font-family: Copperplate;
        height: 49px;
        letter-ing: 9.6px;
        line-height: 40px;
        margin-bottom: 68px;
    }
    .concept-container .concept-text {
        color: #000000;
        letter-ing: 3.2px;
        line-height: 40px;
        font-size: 12px;
        padding: 0 10px 0 10px;
    }
    .concept-container .concept-text .concept-text2 {
        margin: 68px 0 68px 0;
        display: inline-block;
    }
    .works-over-container {
        position: relative;
        z-index: 1;
    }
    .works-over-container:before {
        content: '';
        background-color: #e5eaee;
        position: absolute;
        left: 0;
        top: 3%;
        width: 100%;
        height: 56%;
        -webkit-transform: translateY(50px) skew(0, -8deg);
        transform: translateY(50px) skew(0, -8deg);
    }
    .works-container {
        text-align: center;
        margin-bottom: 124px;
    }
    .works-container .works-title {
        padding: 76px 0 50px 0;
        position: relative;
        z-index: 2;
    }
    .works-container .works-contents-container {
        margin: 0 auto;
    }
    .works-container .works-contents-container .works-category-container {
        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;
        margin: 0 auto;
    }
    .works-container .works-contents-container .works-category-container .works-block {
        margin: 0 12px 36px 12px;
        position: relative;
        z-index: 2;
        /*ホバーエフェクト*/
    }
    .works-container .works-contents-container .works-category-container .works-block img {
        max-width: 100%;
    }
    .works-container .works-contents-container .works-category-container .works-block HTML CSS Result Skip Results Iframe .zoom-out {
        width: 100%;
    }
    .works-container .works-contents-container .works-category-container .works-block .zoom-out-img {
        margin: 0;
        padding: 0;
        background: #fff;
        overflow: hidden;
        cursor: pointer;
    }
    .works-container .works-contents-container .works-category-container .works-block .zoom-out-img img {
        width: 100%;
    }
    .works-container .works-contents-container .works-category-container .works-block .zoom-out-img img {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
        -webkit-transition: 0.3s ease-in-out;
        transition: 0.3s ease-in-out;
    }
    .works-container .works-contents-container .works-category-container .works-block .zoom-out-img:hover img {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    .works-container .works-contents-container .works-category-container .works-block .category-container {
        text-align: center;
        position: absolute;
        top: 93%;
        left: 19%;
    }
    .works-container .works-contents-container .works-category-container .works-block .category-container .category {
        width: 156px;
        height: 36px;
        background-color: white;
        color: black;
        padding: 2px 2px;
        border: none;
        font-size: 16px;
        font-family: MatisseProN-M;
        cursor: pointer;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
    }
    .works-container .works-contents-container .works-category-container .works-block .category-container .category.float:hover {
        -webkit-box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.5);
        box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.5);
    }
    .access-container {
        text-align: center;
        position: relative;
        z-index: 2;
    }
    .access-container .google-container {
        max-width: 100%;
        padding: 30px 0 10px 0;
    }
    .access-container .company-name {
        font-family: MatisseProN-M;
        font-size: 16px;
        line-height: 45px;
        padding-top: 24px;
        padding-bottom: 16px;
    }
    .access-container .address-text {
        font-size: 14px;
        padding-top: 8px;
        font-family: KozGoPr6N-Regular;
    }
    .access-container .address-text2 {
        font-size: 14px;
        padding-top: 48px;
        font-family: MatisseProN-M;
    }
    .access-container .bottom {
        margin-bottom: 10px;
    }
    .banner-container {
        max-height: 180px;
        background-color: #22222e;
        text-align: center;
        margin-top: 24px;
        margin-bottom: 24px;
        height: 156px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .banner-container img {
        max-width: 100%;
    }
    .rogo_resize img {
        padding-top: 24px;
        padding-left: 32px;
        width: 180px;
    }
    .title-container {
        letter-ing: 9.6px;
        color: #1a5086;
        font-size: 36px;
        font-family: Copperplate;
    }
    .title-container .image-container {
        width: 568px;
        height: 96px;
        vertical-align: middle;
        margin: 0 auto;
        background-color: white;
    }
    .recruit-container {
        background-image: url('../image/footer.jpg');
    }
    .recruit-container .recruit-information .recruit-address-information {
        margin: 0 auto;
        padding: 56px 0 0 12%;
    }
    .recruit-container .recruit-information .recruit-address-information .recruit-company-name {
        margin-bottom: 28px;
        font-family: MatisseProN-M;
        font-size: 18px;
        color: #ffffff;
    }
    .recruit-container .recruit-information .recruit-address-information .recruit-address {
        font-family: KozGoPr6N-Regular;
        color: #ffffff;
        margin-bottom: 12px;
        font-size: 16px;
    }
    .recruit-container .recruit-information .recruit-address-information .phone-number {
        font-family: MatisseProN-M;
        font-size: 14px;
        color: #ffffff;
    }
    .recruit-container .recruit-information .recruit-address-information .phone-recruit-container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-bottom: 48px;
    }
    .recruit-container .recruit-information .recruit-address-information .time {
        font-size: 14px;
        font-family: MatisseProN-M;
        color: #ffffff;
    }
    .recruit-container .recruit-information .wave-container img {
        width: 100%;
    }
    .recruit-container .recruit-button-container {
        text-align: center;
    }
    .button-container {
        text-align: center;
        margin: 0;
    }
    .button-container .button {
        background-color: #1a5086;
        color: white;
        border: none;
        padding: 12px 56px;
        margin-bottom: 8px;
        font-family: MatisseProN-M;
        cursor: pointer;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
    }
    .information .button-container .button {
        background-color: #1a5086;
        color: white;
        border: none;
        padding: 8px 31px;
        margin-bottom: 8px;
        font-size: 12px;
        border-radius: 2px;
        font-family: MatisseProN-M;
        cursor: pointer;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
    }
    .button-container .button.float:hover {
        -webkit-box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.5);
        box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.5);
    }
    .button-container .button.float:focus {
        outline: none;
    }
    .left {
        margin: 10px 0 10px 0;
    }
    .add-top {
        opacity: none;
        display: none;
    }
    .footer-container {
        display: none;
        background-color: #1a5086;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding: 28px 0 28px 0;
    }
    .footer-container .footer-contents-container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-right: 200px;
    }
    .footer-container .footer-contents-container li {
        list-style: none;
    }
    .footer-container .logo-image-container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .copyright-container {
        text-align: center;
        background-color: #1a5086;
        color: #ffffff;
        margin: 0;
    }
    .copyright-container .copyright {
        font-size: 12px;
        padding-bottom: 8px;
    }
    .top {
        margin-top: 56px;
    }
    a {
        color: white;
    }
    a:hover {
        color: white;
    }
    li {
        font-family: MatisseProN-M;
    }
    #header {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 72px;
        z-index: 500;
    }
    .scroll-nav {
        background-color: #1a5086;
    }
    .global-nav {
        position: fixed;
        right: -320px;
        /* これで隠れる */
        top: 0;
        width: 300px;
        /* スマホに収まるくらい */
        height: 100vh;
        padding-top: 40px;
        background-color: #183b58;
        -webkit-transition: all 0.6s;
        transition: all 0.6s;
        z-index: 200;
        overflow-y: auto;
        /* メニューが多くなったらスクロールできるように */
    }
    .hamburger {
        position: absolute;
        right: 12px;
        top: 16px;
        width: 50px;
        /* クリックしやすいようにちゃんと幅を指定する */
        height: 50px;
        /* クリックしやすいようにちゃんと高さを指定する */
        cursor: pointer;
        z-index: 300;
    }
    .global-nav__list {
        margin: 0;
        padding: 0;
        list-style: none;
    }
    .global-nav__item {
        text-align: left;
        margin-left: 24px;
        padding: 0 14px;
    }
    .hamburger__line {
        position: absolute;
        left: 11px;
        width: 28px;
        height: 2px;
        background-color: #fff;
        -webkit-transition: all 0.6s;
        transition: all 0.6s;
    }
    .hamburger__line--1 {
        top: 14px;
    }
    .hamburger__line--2 {
        top: 20px;
    }
    .hamburger__line--3 {
        top: 26px;
    }
    .black-bg {
        position: fixed;
        left: 0;
        top: 0;
        width: 100vw;
        height: 100vh;
        z-index: 100;
        background-color: #000;
        opacity: 0;
        visibility: hidden;
        -webkit-transition: all 0.6s;
        transition: all 0.6s;
        cursor: pointer;
    }
    /* 表示された時用のCSS */
    .nav-open .global-nav {
        right: 0;
    }
    .nav-open .black-bg {
        opacity: 0.8;
        visibility: visible;
    }
    .nav-open .hamburger__line--1 {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        top: 20px;
    }
    .nav-open .hamburger__line--2 {
        width: 0;
        left: 50%;
    }
    .nav-open .hamburger__line--3 {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        top: 20px;
    }
}

@media (min-width: 1024px) {
    html {
        scroll-behavior: smooth;
    }
    p {
        margin-bottom: 0;
    }
    .top-container {
        /*
②画像の数ごとに animation-delay を設定します。
　下記では、5秒間隔で切り替わるように設定しています。
*/
    }
    .top-container .hero {
        position: relative;
        overflow: hidden;
        height: 100vh;
    }
    .top-container .slider {
        position: absolute;
        top: 0;
        left: 0;
        overflow: hidden;
        width: 100%;
        height: 100%;
        background-color: #000;
    }
    .top-container .slider .image {
        position: absolute;
        z-index: 1;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        -webkit-animation: anime 15s 0s infinite;
        animation: anime 15s 0s infinite;
        /* ②で設定したanimation-delayをスライド数で割った時間をdelay(15s)に入れる */
        opacity: 0;
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
    }
    .top-container .slider .image:nth-of-type(1) {
        background-image: url('../image/main.png');
    }
    .top-container .slider .image:nth-of-type(2) {
        -webkit-animation-delay: 5s;
        animation-delay: 5s;
        background-image: url('../image/main.png');
    }
    .top-container .slider .image:nth-of-type(3) {
        -webkit-animation-delay: 10s;
        animation-delay: 10s;
        background-image: url('../image/main.png');
    }
    @-webkit-keyframes anime {
        0% {
            opacity: 0;
        }
        50% {
            opacity: 1;
        }
        100% {
            opacity: 0;
            -webkit-transform: scale(1.18);
            transform: scale(1.18);
        }
    }
    @keyframes anime {
        0% {
            opacity: 0;
        }
        50% {
            opacity: 1;
        }
        100% {
            opacity: 0;
            -webkit-transform: scale(1.18);
            transform: scale(1.18);
        }
    }
    .top-container #header-container {
        position: fixed;
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        z-index: 3;
        height: 80px;
    }
    .top-container #header-container .image-container {
        margin-left: 48px;
    }
    .top-container #header-container .menu-text {
        color: white;
        font-size: 14px;
        font-family: MatisseProN-M;
        vertical-align: middle;
    }
    .top-container #header-container nav {
        margin: 0 0 0 auto;
    }
    .top-container #header-container .menu-group {
        list-style: none;
        margin: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .top-container #header-container .menu-item {
        margin: 0 56px 0 0;
    }
    .top-container .scroll-nav {
        background-color: #1a5086;
    }
    .message-container {
        margin: 0 auto;
    }
    .message-container .information {
        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;
        padding: 60px 0 60px 0;
    }
    .message-container .information .message {
        margin-right: 524px;
        margin-left: 36px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        flex-wrap: nowrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .message-container .information .message .date-time {
        font-family: MatisseProN-M;
        font-size: 14px;
    }
    .date-message {
        font-family: MatisseProN-M;
        font-size: 14px;
        padding-top: 0;
        padding-left: 8px;
        color: #11365c;
    }
    .concept-container {
        text-align: center;
        margin: 0 auto;
    }
    .concept-container .concept-title {
        margin-bottom: 76px;
    }
    .concept-container .concept-theme {
        color: #000000;
        font-size: 24px;
        font-family: Copperplate;
        height: 49px;
        letter-ing: 9.6px;
        line-height: 40px;
        margin-bottom: 68px;
    }
    .concept-container .concept-text {
        color: #000000;
        letter-ing: 3.2px;
        line-height: 40px;
        font-size: 16px;
    }
    .concept-container .concept-text .concept-text2 {
        margin: 68px 0 68px 0;
        display: inline-block;
    }
    .works-over-container {
        position: relative;
        z-index: 1;
    }
    .works-over-container:before {
        content: '';
        background-color: #e5eaee;
        position: absolute;
        left: 0;
        top: 4%;
        width: 100%;
        height: 54%;
        -webkit-transform: translateY(50px) skew(0, -8deg);
        transform: translateY(50px) skew(0, -8deg);
    }
    .works-container {
        text-align: center;
        margin-bottom: 124px;
    }
    .works-container .works-title {
        padding: 76px 0 124px 0;
        position: relative;
        z-index: 2;
    }
    .works-container .works-contents-container {
        margin: 0 auto;
    }
    .works-container .works-contents-container .works-category-container {
        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;
        margin: 0 auto;
    }
    .works-container .works-contents-container .works-category-container .phone-nav {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }
    .works-container .works-contents-container .works-category-container .works-block {
        margin: 24px;
        position: relative;
        z-index: 2;
        /*ホバーエフェクト*/
    }
    .works-container .works-contents-container .works-category-container .works-block HTML CSS Result Skip Results Iframe .zoom-out {
        width: 100%;
    }
    .works-container .works-contents-container .works-category-container .works-block .zoom-out-img {
        margin: 0;
        padding: 0;
        background: #fff;
        overflow: hidden;
        cursor: pointer;
    }
    .works-container .works-contents-container .works-category-container .works-block .zoom-out-img img {
        width: 100%;
    }
    .works-container .works-contents-container .works-category-container .works-block .zoom-out-img img {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
        -webkit-transition: 0.3s ease-in-out;
        transition: 0.3s ease-in-out;
    }
    .works-container .works-contents-container .works-category-container .works-block .zoom-out-img:hover img {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    .works-container .works-contents-container .works-category-container .works-block .category-container {
        text-align: center;
        position: absolute;
        top: 90%;
        left: 5%;
    }
    .works-container .works-contents-container .works-category-container .works-block .category-container .category {
        background-color: white;
        color: black;
        border: none;
        width: 224px;
        font-size: 20px;
        height: 54px;
        font-family: MatisseProN-M;
        cursor: pointer;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
    }
    .works-container .works-contents-container .works-category-container .works-block .category-container .category.float:hover {
        -webkit-box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.5);
        box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.5);
    }
    .works-container .works-contents-container .upper {
        margin-bottom: 69px;
    }
    .access-container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin: 0 auto;
        position: relative;
        z-index: 2;
    }
    .access-container .google-container {
        width: 540px;
        padding: 112px 0 10px 0;
    }
    .access-container .access-contents-container {
        text-align: left;
    }
    .access-container .access-contents-container .access-title {
        margin-right: 150px;
    }
    .access-container .access-contents-container .company-name {
        font-family: MatisseProN-M;
        font-size: 16px;
        line-height: 45px;
    }
    .access-container .access-contents-container .address-text {
        line-height: 45px;
        font-size: 16px;
        font-family: MatisseProN-M;
    }
    .banner-container {
        height: 180px;
        background-color: #22222e;
        text-align: center;
        margin: 48px 0 48px 0;
    }
    .title-container {
        letter-ing: 9.6px;
        color: #1a5086;
        font-size: 48px;
        font-family: Copperplate;
    }
    .title-container .image-container {
        width: 568px;
        height: 96px;
        vertical-align: middle;
        margin: 0 auto;
        background-color: white;
    }
    .recruit-container {
        padding: 66px 0 0 0;
        background-image: url('../image/footer.jpg');
        background-size: cover;
        position: relative;
    }
    .recruit-container .recruit-information {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .recruit-container .recruit-information .recruit-address-information {
        margin: 0;
        padding: 56px 12% 0 0;
    }
    .recruit-container .recruit-information .recruit-address-information .recruit-company-name {
        margin-bottom: 28px;
        font-family: MatisseProN-M;
        color: #ffffff;
        font-size: 24px;
    }
    .recruit-container .recruit-information .recruit-address-information .recruit-address {
        font-family: MatisseProN-M;
        color: #ffffff;
        font-size: 24px;
        margin-bottom: 28px;
    }
    .recruit-container .recruit-information .recruit-address-information .phone-number {
        font-family: MatisseProN-M;
        font-size: 24px;
        color: #ffffff;
    }
    .recruit-container .recruit-information .recruit-address-information .time {
        font-family: MatisseProN-M;
        font-size: 24px;
        color: #ffffff;
    }
    .recruit-container .recruit-information .wave-container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        position: absolute;
        top: 110%;
    }
    .recruit-container .recruit-information .wave-container img {
        max-width: 100%;
    }
    .recruit-container .recruit-button-container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-left: 30px;
        margin-top: 72px;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
    .category-container .category {
        background-color: #1a5086;
        color: white;
        border: none;
        padding: 10px 40px;
        font-weight: 600px;
        font-family: MatisseProN-M;
        cursor: pointer;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
    }
    .category-container .category.float:hover {
        -webkit-box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.5);
        box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.5);
    }
    .category-container .category.float:focus {
        outline: none;
    }
    .left {
        margin-left: 24px;
    }
    .add-top {
        display: block;
        opacity: 1;
        text-align: left;
        margin-top: -36px;
    }
    .footer-container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        background-color: #1a5086;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding: 24px 0 0 0;
    }
    .footer-container a {
        color: #fff;
    }
    .footer-container .footer-contents-container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-right: 200px;
    }
    .footer-container .footer-contents-container li {
        list-style: none;
        font-size: 0.9rem;
        padding: 8px 16px;
    }
    .footer-container .logo-image-container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: inline-block;
        text-align: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-top: 10%;
    }
    .logo-image-container p {
        color: #fff;
        font-size: 1.2rem;
        font-family: MatisseProN-M;
    }
    .copyright-container {
        text-align: center;
        background-color: #1a5086;
        color: #ffffff;
        margin: 0;
    }
    .button-container {
        text-align: center;
    }
    .information .button-container .button {
        background-color: #1a5086;
        color: white;
        border: none;
        font-family: MatisseProN-M;
        float: left;
        padding: 16px 30px;
        margin-top: 0;
        font-size: 12px;
        cursor: pointer;
        border-radius: 2px;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
    }
    .button-container .button {
        background-color: #1a5086;
        color: white;
        border: none;
        font-family: MatisseProN-M;
        float: left;
        padding: 12px 48px;
        margin-top: 40px;
        margin-bottom: 10%;
        border-radius: 2px;
        font-size: 16px;
        cursor: pointer;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
    }
    .button-container .button.float:hover {
        -webkit-box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.5);
        box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.5);
    }
    .top {
        margin-top: 18px;
        padding-left: 0;
    }
    a {
        color: white;
    }
    a:hover {
        color: white;
    }
    li {
        font-family: MatisseProN-M;
    }
    /*.col-md-3 {
    margin-left: 40px;
}*/
    #header {
        display: none;
    }
    .fade-in-bottom {
        opacity: 0;
        -webkit-animation-name: fadein-bottom;
        animation-name: fadein-bottom;
        -webkit-animation-duration: 1.5s;
        animation-duration: 1.5s;
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out;
        -webkit-animation-fill-mode: forwards;
        animation-fill-mode: forwards;
    }
    @-webkit-keyframes fadein-bottom {
        0% {
            opacity: 0;
            -webkit-transform: translateY(20px);
            transform: translateY(20px);
        }
        100% {
            opacity: 1;
            -webkit-transform: translateY(0);
            transform: translateY(0);
        }
    }
    @keyframes fadein-bottom {
        0% {
            opacity: 0;
            -webkit-transform: translateY(20px);
            transform: translateY(20px);
        }
        100% {
            opacity: 1;
            -webkit-transform: translateY(0);
            transform: translateY(0);
        }
    }
}


/*# sourceMappingURL=breakpoint.css.map */


/*----------------------------------------------------------
トピックス
-----------------------------------------------------------*/


/*記事　874px以下px-----------------------------------------------*/

@media (max-width: 874px) {
    .article-pc-container {
        margin: 32px 0 102px 0;
        width: 600px;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .article-pc-container .blog-container {
        margin-top: 30px;
        width: 720px;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .article-pc-container .blog-list {
        padding: 16px 20px;
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row;
        flex-flow: row;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .recent_contents {
        padding: 20px;
    }
    .recent_contents .blog-list-image {
        padding-right: 16px;
        width: 106px;
    }
    .blog-list-image img {
        object-fit: cover;
        height: 112px;
        width: 100%;
        position: relative;
        display: block;
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
        line-height: 0;
        font-size: 1px;
    }
    .recent_contents .blog-list-image img {
        object-fit: cover;
        height: 80px;
        width: 100%;
        margin: 0 auto;
    }
    .mb30 {
        width: 110%;
    }
    .article-pc-container .blog-list:after {
        content: '';
        position: absolute;
        top: 0;
        border-bottom: 1px solid #ddd;
        left: 0;
        width: 90%;
        height: 100%;
        /* margin: auto; */
        z-index: 1;
    }
    .article-pc-container .blog-list-image {
        padding-right: 20px;
        width: 116px;
        overflow: hidden;
        position: relative;
        z-index: 2;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .article-pc-container .blog-list-body {
        position: relative;
        z-index: 2;
        overflow: hidden;
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }
    .article-pc-container .blog-list-body .blog-list-title {
        width: 100%;
        font-size: 0.9rem;
        font-weight: normal;
        line-height: 96%;
        letter-ing: 1px;
    }
    .article-pc-container .blog-list-body .blog-list-title a {
        color: #000;
    }
    .article-pc-container .blog-list-body .blog-list-time {
        line-height: 150%;
        vertical-align: top;
        font-size: 0.9rem;
        letter-ing: 1px;
        max-width: 100px;
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        margin-right: 320px;
    }
    .article-pc-container .blog-list-body .category-container a {
        font-size: 0.7rem;
    }
    .category-container {
        margin-top: 8px;
        margin-bottom: 2px;
        text-align: left;
    }
    .article-pc-container .side-navi {
        width: 80%;
        margin-top: 96px;
        margin-left: auto;
        margin-right: auto;
    }
    .article-pc-container .side-navi .page-navi-container {
        text-align: center;
        margin-bottom: 30px;
    }
    .sitemap {
        position: relative;
        margin-left: auto;
        margin-right: auto;
        width: 960px;
        max-width: 100%;
    }
    .page-navi-container {
        /*サイトマップ追加*/
        text-align: right;
        padding: 8px;
        padding-right: 4%;
        margin-top: 16px;
        font-size: 0.8rem;
        font-family: MatisseProN-M;
    }
    .page-navi-middle-container {
        padding: 0.75rem 1rem;
        margin-bottom: 1rem;
        list-style: none;
        background-color: #fff;
        border-radius: 2px;
    }
    .page-navi-item-fist {
        color: black;
        display: inline-block;
        float: none;
    }
    .page-navi-item {
        color: black;
        display: inline-block;
        float: none;
    }
    .page-navi-item::before {
        display: inline-block;
        padding-right: 0.5rem;
        padding-left: 0.5rem;
        color: #636c72;
        content: '/';
    }
    .sitemap span {
        color: black;
    }
    .badge-outline {
        color: #333;
        padding-top: 0.5rem;
        padding-bottom: 0.4rem;
        padding-right: 8px;
        padding-left: 8px;
        font-weight: normal;
        background: rgb(255, 255, 255);
        border-width: 1px;
        border-style: solid;
        border-color: #183b58;
        border-radius: 0px;
    }
    .badge-outline:hover {
        color: rgb(255, 255, 255);
        background-color: #183b58;
        border-color: #183b58;
        text-decoration: none;
    }
    .article-pc-container .side-navi .side-navi-title {
        color: #183b58;
        font-family: Copperplate;
        font-size: 1.4rem;
        margin-bottom: 30px;
    }
    .article-pc-container .side-navi .cat-list .side-item {
        margin-bottom: 16px;
    }
    .cat-list {
        padding: 0;
    }
    .article-pc-container .side-navi .children {
        margin-top: 30px;
    }
    .article-pc-container .side-navi .side-item {
        list-style: none;
        margin-bottom: 30px;
    }
    .article-pc-container .side-navi .side-item a {
        font-size: 0.9rem;
        color: black;
    }
    .recent-blog-list-image {
        padding-right: 20px;
        margin-right: 12px;
        width: 140px;
        overflow: hidden;
        position: relative;
        z-index: 2;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .recent-image-container {
        max-width: 90px;
        margin-left: 30px;
    }
    .recent-title {
        color: #183b58;
        font-family: Copperplate;
        font-size: 1.4rem;
        margin-top: 56px;
    }
    .recent-text {
        font-size: 0.8rem;
    }
}


/*記事　875px以上-----------------------------------------------------*/

@media (min-width: 875px) {
    .article-pc-container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-right: 8%;
        margin-left: 14%;
        margin-bottom: 36vh;
    }
    .article-pc-container .blog-container {
        flex: 0 0 75%;
        max-width: 75%;
    }
    .article-pc-container .blog-list {
        padding: 25px 0;
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row;
        flex-flow: row;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .recent_contents {
        padding: 20px;
    }
    .article-pc-container .blog-list:after {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        border-bottom: 1px solid #ddd;
        width: 100%;
        height: 100%;
        z-index: 1;
    }
    .article-pc-container .blog-list-image {
        padding-right: 25px;
        width: 140px;
        overflow: hidden;
        position: relative;
        z-index: 2;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .recent_contents .blog-list-image {
        padding-right: 16px;
        width: 106px;
    }
    .blog-list-image img {
        object-fit: cover;
        height: 112px;
        width: 100%;
        position: relative;
        display: block;
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
        line-height: 0;
        font-size: 1px;
    }
    .recent_contents .blog-list-image img {
        object-fit: cover;
        height: 72px;
        width: 100%;
    }
    .mb30 {
        width: 262px;
    }
    .article-pc-container .blog-list-body {
        position: relative;
        z-index: 2;
        overflow: hidden;
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }
    .article-pc-container .blog-list-body .blog-list-title {
        width: 100%;
        margin-top: 0.5rem;
        font-size: 0.9rem;
        font-weight: normal;
        line-height: 150%;
        letter-ing: 1px;
    }
    .article-pc-container .blog-list-body .blog-list-title a {
        color: #000;
    }
    .article-pc-container .blog-list-body .blog-list-time {
        line-height: 150%;
        vertical-align: top;
        font-size: 0.9rem;
        letter-ing: 1px;
        max-width: 100px;
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        margin-right: 320px;
    }
    .article-pc-container .blog-list-body .category-container a {
        font-size: 0.8rem;
    }
    .category-container {
        margin-top: 8px;
        text-align: left;
    }
    .article-pc-container .side-navi {
        margin-left: 30px;
        margin-right: 30px;
    }
    .article-pc-container .side-navi .page-navi-container {
        text-align: center;
        margin-bottom: 30px;
    }
    .sitemap {
        position: relative;
        margin-left: auto;
        margin-right: auto;
        width: 1140px;
        max-width: 100%;
    }
    .page-navi-container {
        text-align: right;
        padding: 8px;
        padding-right: 4%;
        margin-top: 16px;
        font-size: 0.8rem;
        font-family: MatisseProN-M;
    }
    .page-navi-middle-container {
        padding: 0.75rem 1rem;
        margin-bottom: 1rem;
        list-style: none;
        background-color: #fff;
        border-radius: 2px;
    }
    .page-navi-item-fist {
        color: black;
        display: inline-block;
        float: none;
    }
    .page-navi-item {
        color: black;
        display: inline-block;
        float: none;
    }
    .page-navi-item::before {
        display: inline-block;
        padding-right: 0.5rem;
        padding-left: 0.5rem;
        color: #636c72;
        content: '/';
    }
    .sitemap span {
        color: black;
    }
    .badge-outline {
        color: #333;
        padding-top: 0.4rem;
        padding-bottom: 0.3rem;
        padding-right: 8px;
        padding-left: 8px;
        font-weight: normal;
        background: rgb(255, 255, 255);
        border-width: 1px;
        border-style: solid;
        border-color: #183b58;
        border-radius: 0px;
    }
    a.badge-outline:hover {
        color: rgb(255, 255, 255);
        background-color: #183b58;
        border-color: #183b58;
        text-decoration: none;
    }
    .article-pc-container .side-navi .side-navi-title {
        color: #183b58;
        font-family: Copperplate;
        font-size: 1.4rem;
        margin-bottom: 30px;
    }
    .article-pc-container .side-navi .cat-list .side-item {
        margin-bottom: 16px;
    }
    .article-pc-container .side-navi .children {
        margin-top: 30px;
    }
    .article-pc-container .side-navi .side-item {
        list-style: none;
        margin-bottom: 30px;
    }
    .article-pc-container .side-navi .side-item a {
        font-size: 0.9rem;
        color: black;
    }
    .recent-title {
        color: #183b58;
        font-family: Copperplate;
        font-size: 1.4rem;
        margin-top: 56px;
    }
    .recent-text {
        font-size: 0.9rem;
    }
    .cat-list {
        padding-left: 0;
    }
}


/*-----------------------------------------------------
メインビジュアル
-------------------------------------------------------*/

.usualview__visual {
    width: 100%;
    min-height: 26.5rem;
    position: relative;
    z-index: 0;
    background-image: url('../image/recruit.jpeg');
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    margin: 0;
}

.usualview__visual h1 {
    display: block;
    font-family: Copperplate;
    color: #fff;
    padding-top: 200px;
    padding-bottom: 250px;
    margin: 0;
    padding-left: 10px;
    padding-right: 10px;
    text-align: center;
    letter-ing: 4px;
    font-size: 4rem;
}

.usualview__visual span {
    font-family: MatisseProN-M;
    display: block;
    font-size: 1.4rem;
    font-weight: normal;
    letter-ing: 2px;
}

@media screen and (max-width: 740px) {
    .usualview__visual {
        width: 100%;
        min-height: 18.5rem;
        position: relative;
        z-index: 0;
        background-image: url('../image/recruit.jpeg');
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: no-repeat;
    }
}

@media screen and (max-width: 450px) {
    .usualview__visual {
        width: 100%;
        min-height: 12.5rem;
        position: relative;
        z-index: 0;
        background-image: url('../image/recruit.jpeg');
        background-size: cover;
        background-position: 50% 50%;
        background-repeat: no-repeat;
    }
    .usualview__visual h1 {
        font-size: 2.4rem;
    }
    .usualview__visual span {
        font-size: 1rem;
    }
}


/*メインビジュアル終----------------------------------------*/


/*-----------------------------------------------------
ページネーション
------------------------------------------------------*/

.pnavi {
    margin: 40px 0 0;
    text-align: center;
}

.nav-links {
    display: flex;
}

.page-numbers {
    display: inline-block;
    font-size: 0.9rem;
    margin-right: 6px;
    padding: 2px 10px;
    color: #333;
    border-radius: 2px;
    border: 1px solid #1b5186;
    background: #fff;
}

.current {
    padding: 2px 10px;
    background: #1b5186;
    color: #fff;
}

.prev .next {
    background: transparent;
    box-shadow: none;
    color: #1b5186;
}

.dots {
    background: transparent;
    box-shadow: none;
}


/*-----------------------------------------------------
記事ページ
------------------------------------------------------*/

.c-description {
    background-color: #fffefb;
}

.c-description__inner {
    padding-top: 2rem;
}

@media screen and (min-width: 1025px) {
    .c-description__inner {
        max-width: 1180px;
        margin: 0 auto;
    }
}

.c-description__breadcrumb {
    margin-bottom: .57rem;
    margin-right: -1rem;
    padding-bottom: 1.6rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
}

@media screen and (min-width: 1025px) {
    .c-description__breadcrumb {
        margin-bottom: 3.95rem;
        margin-right: 0;
        padding-bottom: 0;
        overflow-x: visible;
    }
}

section {
    display: block;
}

.entry-content {
    padding-bottom: 12rem!important;
}

.frame {
    max-width: 1220px;
    margin: auto;
    position: relative;
}

.entry-content .inner,
section.list-news {
    width: 86%;
    max-width: 1220px;
    margin-left: auto;
    margin-right: auto;
}

.builds section.entry-content h3 {
    padding: 15px 0 0;
    font-size: 20px;
    letter-spacing: .1rem;
}

.builds section.entry-content time {
    display: block;
    padding: 25px 0 15px;
    font-size: 14px;
    letter-spacing: .06rem;
}

.builds-content {
    width: 100%;
    display: block;
    padding: 5px 0;
    font-size: 0;
}

.title_main {
    font-size: 16px;
    font-weight: 400;
    margin: 45px 0 0;
}

.fullsize_text,
.title_main,
.title_sub {
    width: 100%;
    letter-spacing: normal;
}

.builds-content>* {
    font-size: 14px;
}

.title_lead {
    width: 100%;
    font-size: 15px;
    font-weight: 400;
    margin: 4.5rem 0 0;
    letter-spacing: normal;
}

.title_inner {
    margin-bottom: 4vh;
    margin-top: 5vh;
}

.fullsize_img img,
.title_lead span {
    width: 95%;
    max-height: 600px;
    display: block;
    margin: 0 auto;
    object-fit: cover;
}

.title_lead span {
    font-size: 85%;
    font-weight: 400;
    margin: 15px 0 0;
}

.builds-content>* {
    font-size: 14px;
}

@media (max-width:500px) {
    .fullsize_img img,
    .title_lead span {
        width: 100%;
        max-height: 245px;
        display: block;
        margin: 0 auto;
        object-fit: cover;
    }
}

.fullsize_text {
    margin: 45px 0 0;
}

.fullsize_text p {
    line-height: 1.9;
}

.text_link {
    margin: 4.5rem 0 0;
}

.image_double_caption span,
.image_triple_caption span,
.text_link a {
    display: block;
    padding: 7px 0 0;
    letter-spacing: normal;
}

.text_link a {
    position: relative;
    display: inline-block;
    padding: 0 25px 0 0;
    font-size: 14px;
}

.builds .text_link a {
    color: #f58219;
    border-bottom: 1px solid #f58219;
    padding-bottom: .8rem;
}

@media (max-width: 449px) {
    .rogo_resize img {
        padding-top: 21px;
        padding-left: 20px;
        width: 136px;
    }
}

@media (min-width: 500px) {
    .global-nav__item a {
        display: block;
        padding: 18px 0;
        letter-spacing: 0.3rem;
        border-bottom: 1px solid #eee;
        text-decoration: none;
    }
    .global-nav__item a:hover {
        background-color: #eee;
    }
}

@media (max-width: 499px) {
    .global-nav__item a {
        display: block;
        font-size: 14px;
        padding: 12px 0;
        margin: 0 auto;
        width: 85%;
        letter-spacing: 0.2rem;
        border-bottom: 1px solid #eee;
        text-decoration: none;
    }
    .global-nav__item a:hover {
        background-color: #eee;
    }
}


/*-------------------------------------------
コンテンツ
---------------------------------------------*/

.article_list:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background: transparent;
    -webkit-transform: translate(-10px, -10px) rotate(45deg);
    transform: translate(-10px, -10px) rotate(45deg);
    -webkit-transition: .3s;
    transition: .3s;
}

.article_list:hover:before {
    background: #448aca;
}

.article_list {
    padding: .5em;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .article_list {
        padding: 1em;
    }
}

.col {
    display: block;
    float: left;
    width: 100%;
}

.col {
    float: none;
}

@media (min-width: 768px) {
    .col {
        float: left;
    }
}

@media (min-width: 768px) {
    .reverse>.col:last-child,
     :not(.reverse)>.col:first-child {
        margin-left: -4%;
    }
}

@media (min-width: 768px) {
    .article_detail:not(.reverse) .col.span_12+.span_4,
    .article_list:not(.reverse) .col.span_12+.span_4 {
        margin-left: 0;
    }
}

@media (min-width: 768px) {
    .col {
        margin-left: 20%;
    }
}

.col:not(:last-child) {
    margin-bottom: 3%;
}

.row:not(:last-child) {
    margin-bottom: 4%;
}

@media (min-width: 768px) {
    .col:not(:last-child) {
        margin-bottom: 0;
    }
}

.article_list .span_12 {
    margin: 2% 0 6%;
    font-family: MatisseProN-M;
}

.article_list .span_10 {
    margin: 2% 0 6%;
    font-family: MatisseProN-M;
}

@media (max-width: 767px) {
    .article_list .span_12 {
        margin: 2% 0;
        font-family: MatisseProN-M;
        font-size: 0.8rem;
    }
    .article_list .span_10 {
        margin: 2% 0 0 6%;
        margin-left: 8%;
        font-family: MatisseProN-M;
        font-size: 0.8rem;
    }
}

@media (max-width: 450px) {
    .article_list .span_12 {
        margin: 2% 0;
        font-family: MatisseProN-M;
        font-size: 0.8rem;
    }
    .article_list .span_10 {
        margin: 2% 0 0 6%;
        font-family: MatisseProN-M;
        font-size: 0.8rem;
    }
}

@media (min-width: 768px) {
    .span_4 {
        width: 28%;
    }
}

@media (min-width: 768px) {
    .span_5 {
        margin-top: -24.5%;
    }
}

@media (max-width: 767px) {
    .span_5 {
        margin-top: 16px;
    }
}

h2 {
    display: table;
    table-layout: fixed;
    text-align: center;
    margin: 0 auto 1.5em;
    position: relative;
    border: 0;
    word-wrap: break-word;
    font-weight: normal;
    font-size: 1.6rem;
    color: #362e2b;
}

@media (max-width: 767px) {
    h2 {
        font-size: 18px;
        font-size: 1rem;
    }
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

h2:before {
    right: calc(100% + 40px);
}

h2:after {
    left: calc(100% + 40px);
}

h2:before,
h2:after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 1px;
    background: #261f17;
    width: 72px;
}

@media (max-width: 767px) {
    h2:before {
        right: calc(100% + 16px);
    }
    h2:after {
        left: calc(100% + 16px);
    }
    h2:before,
    h2:after {
        content: '';
        display: block;
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        height: 1px;
        background: #261f17;
        width: 56px;
    }
}

figure {
    margin: 0;
    text-align: center;
}

.container img {
    max-width: 100%;
}

img {
    vertical-align: middle;
    border-style: none;
    width: 156%;
}

@media (max-width: 767px) {
    img {
        border-style: none;
        width: 80%;
    }
}

figure figcaption {
    margin: 0.5em;
    text-align: center;
    margin-left: 20%;
    font-family: MatisseProN-M;
}

@media (max-width: 767px) {
    figure figcaption {
        margin: 0.5em;
        text-align: center;
        font-family: MatisseProN-M;
    }
}

.clr:after,
.col:after,
.container:after,
.group:after,
.row:after {
    content: "";
    display: table;
    clear: both;
}

.article_list .case_arrow {
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    display: block;
    position: relative;
    height: 236px;
}

@media (max-width: 767px) {
    .article_list .case_arrow {
        height: 80px;
        margin-top: 0;
    }
}

p:last-child {
    margin-bottom: 0;
}

p:first-child {
    margin-top: 12%;
}

@media (min-width: 768px) {
    p {
        margin: 0.5em 0 1em;
    }
}

.article_list .case_arrow:after {
    content: "";
    display: block;
    position: absolute;
    top: 56%;
    right: -6%;
    margin: auto;
    width: 32px;
    height: 32px;
    border-top: 5px solid #1a5086;
    border-right: 5px solid #1a5086;
    -webkit-transform: translate(0, -50%) rotate( 45deg);
    transform: translate(0, -50%) rotate( 45deg);
    -webkit-transform-origin: left top;
    transform-origin: left top;
    -webkit-transition: .2s;
    transition: .2s;
}

@media (max-width: 767px) {
    .article_list .case_arrow:after {
        left: -12%;
        bottom: 25%;
        border-top: 5px solid #1a5086;
        border-right: 5px solid #1a5086;
        -webkit-transform: translate(0, -50%) rotate( 135deg);
        transform: translate(0, -50%) rotate( 135deg);
        -webkit-transform-origin: center;
        transform-origin: center;
    }
}

.clr:after,
.col:after,
.container:after,
.group:after,
.row:after {
    content: "";
    display: table;
    clear: both;
}