@charset "UTF-8";
@media (min-width: 300px) {
    html {
        scroll-behavior: smooth;
    }
    body {
        margin: 0;
    }
    p {
        margin-bottom: 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-spacing: 6.6px;
        line-height: 40px;
        margin-bottom: 68px;
    }
    .concept-container .concept-text {
        color: #000000;
        letter-spacing: 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-spacing: 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: MatisseProN-M;
        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 {
        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-spacing: 9.6px;
        line-height: 40px;
        margin-bottom: 68px;
    }
    .concept-container .concept-text {
        color: #000000;
        letter-spacing: 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-spacing: 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: MatisseProN-M;
        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: 18px 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-top: 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-spacing: 9.6px;
        line-height: 40px;
        margin-bottom: 68px;
    }
    .concept-container .concept-text {
        color: #000000;
        letter-spacing: 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-spacing: 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 {
        text-align: 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 {
        opacity: 1;
        text-align: left;
        margin-top: -36px;
        display: block;
    }
    .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;
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    .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: 18px 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 */


/*----------------------------------------------------------
会社概要
-----------------------------------------------------------*/

.p_inquirement {
    padding-bottom: 230px;
}

section {
    font-size: 1.4rem;
    letter-spacing: 0.08em;
}

.o_c_s-wrap__inner_1080 {
    max-width: 1080px;
}

.o_c_title__en {
    font-size: 4.2rem;
    letter-spacing: 0.9rem;
    padding-bottom: 10px;
}

.f_f-a1min {
    font-family: YakuHanMP, "A1明朝", 'A1 Mincho', sans-serif;
    -webkit-font-feature-settings: "fwid";
    font-feature-settings: "fwid";
}

.f_f-cardo {
    font-family: 'Cardo', serif;
}

.f_f-roboto_c {
    font-family: 'Roboto Condensed', sans-serif;
}

.f_f-min {
    font-family: "Yu Mincho Light", YuMincho, "Yu Mincho", 游明朝体, "Noto Serif JP", serif !important;
}

.f-f-notoserif {
    font-family: 'Noto Serif JP', serif;
}

.o_c_title__center:first-child .o_c_title__jp {
    line-height: 1;
    letter-spacing: 0.05em;
}

.o_c_title__jp {
    font-size: 1.8rem;
    letter-spacing: 0.2rem;
    -webkit-font-feature-settings: "fwid";
    font-feature-settings: "fwid";
    font-family: YakuHanMP, "Noto Serif JP", serif, "Arial", "メイリオ", sans-serif;
}

.rec_title {
    margin: 0 24px 40px;
    font-weight: 800;
    text-align: center;
    letter-spacing: 0.5rem;
    -webkit-font-feature-settings: "fwid";
    font-feature-settings: "fwid";
    font-family: YakuHanMP, "Noto Serif JP", serif, "Arial", "メイリオ", sans-serif;
}

.rec_title p {
    font-size: 2.5rem;
    color: #183b58;
    font-weight: 800;
    font-family: YakuHanMP, "Noto Serif JP", serif, "Arial", "メイリオ", sans-serif;
}

@media (max-width: 650px) {
    .rec_title p {
        font-size: 1.6rem;
        font-weight: 800;
        font-family: Copperplate, "YakuHanMP", "Noto Serif JP", serif, "Arial", "メイリオ", sans-serif;
    }
}

.o_c_s-wrap__inner,
.o_c_s-wrap__inner_1080,
.o_c_s-wrap__inner_860 {
    margin: auto;
    width: 90%;
}

.p_inquirement .l_header--1080 {
    background: url(../img/contact.png) no-repeat center/cover;
}

.l_header--1080 {
    width: 100%;
    max-width: 1080px;
    height: 400px;
    margin-right: auto;
    margin-left: auto;
    background: #99cb3d;
}

.o_c_s-wrap__inner_860 {
    max-width: 860px;
}


/*
.mw_wp_form p {
    text-align: center;
}*/

.mw_wp_form.mw_wp_form_input .o_c_f-inquirement__caution__preview {
    display: none;
}

.mw_wp_form.mw_wp_form_input .o_c_f-inquirement {
    width: 100%;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

.mw_wp_form.mw_wp_form_input .o_c_f-inquirement th {
    vertical-align: top;
    width: 230px;
    padding-top: 15px;
    font-family: YakuHanMP, "Noto Serif JP", serif, "Arial", "メイリオ", sans-serif;
}

caption,
th {
    text-align: left;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
    font-style: normal;
    font-weight: normal;
}

.browser-default {
    background: #f7f7f3;
    padding: 19px 17px;
    font-family: YakuHanMP, "Noto Serif JP", serif, "Arial", "メイリオ", sans-serif;
}

.mw_wp_form.mw_wp_form_input .o_c_f-inquirement .o_c_f-required::after {
    content: "必須";
    display: inline-block;
    color: #5172bb;
    border: 1px solid;
    font-size: 1.2rem;
    margin-left: 8px;
}

.mw_wp_form.mw_wp_form_input .o_c_f-inquirement td {
    padding: 0 0 25px 0;
}

.p_inquirement .p_inquirement__submit_back {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 40px;
}

button,
input {
    overflow: visible;
}

.mw_wp_form.mw_wp_form_input input[type="submit"] {
    cursor: pointer;
    background: #183b58;
    color: #fff;
    text-align: center;
    padding: 30px 0;
    max-width: 360px;
    width: 100%;
    margin: auto;
    margin-top: 72px;
    margin-bottom: 72px;
    display: block;
}

@media screen and (max-width: 559px) {
    .mw_wp_form.mw_wp_form_input input[type="submit"] {
        font-size: 1.2rem;
        padding: 18px 0;
        width: 94%;
    }
}

.o_c_s-wrap__inner_860 {
    max-width: 860px;
}

.o_c_s-wrap__inner,
.o_c_s-wrap__inner_1080,
.o_c_s-wrap__inner_860 {
    margin: auto;
    width: 90%;
}

.o_c_title__center:first-child {
    padding: 100px 0 50px 0;
}

.o_c_title__center {
    text-align: center;
}

.o_c_f-inquirement__caution {
    text-align: center;
    line-height: 2;
    font-size: 1.2rem;
    padding: 40px 0 70px 0px;
    margin-bottom: 80px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    font-family: YakuHanMP, "Noto Serif JP", serif, "Arial", "メイリオ", sans-serif;
}

@media screen and (max-width: 650px) {
    .o_c_f-inquirement__caution {
        font-size: 1.0rem;
    }
}

.mw_wp_form.mw_wp_form_input .o_c_f-inquirement input[type="text"],
.mw_wp_form.mw_wp_form_input .o_c_f-inquirement input[type="email"],
.mw_wp_form.mw_wp_form_input .o_c_f-inquirement textarea {
    background: #f7f7f3;
    padding: 19px 17px;
    font-family: YakuHanMP, "Noto Serif JP", serif, "Arial", "メイリオ", sans-serif;
}

@media screen and (max-width: 650px) {
    .mw_wp_form.mw_wp_form_input .o_c_f-inquirement input[type="text"],
    .mw_wp_form.mw_wp_form_input .o_c_f-inquirement input[type="email"],
    .mw_wp_form.mw_wp_form_input .o_c_f-inquirement textarea {
        background: #f7f7f3;
        padding: 20px 0px 20px 5px;
        font-size: 1.2rem;
        font-family: YakuHanMP, "Noto Serif JP", serif, "Arial", "メイリオ", sans-serif;
    }
}

.mw_wp_form.mw_wp_form_input textarea {
    height: 190px;
    line-height: 1.8;
}

form {
    display: block;
    margin-top: 0em;
}

button,
input,
optgroup,
select,
textarea {
    font-family: YakuHanMP, "Noto Serif JP", serif, "Arial", "メイリオ", sans-serif;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

td {
    display: table-cell;
    vertical-align: inherit;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="number"],
input[type="tel"],
textarea,
input[type="submit"] {
    padding: 0;
    border-radius: 0;
    outline: none;
    background: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 8px;
    vertical-align: middle;
    width: 100%;
    border: none;
    text-align: left;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
    font-style: normal;
    font-weight: normal;
}

.sp,
.tab {
    display: none;
}

.pc {
    display: block;
}

.notfound p {
    top: 250px;
    position: relative;
    color: #ffff;
    font-family: 'Times New Roman', Times, serif;
    font-size: 7.0rem;
}

.coment p {
    top: 300px;
    position: relative;
    color: #ffff;
    font-family: 'Times New Roman', Times, serif;
    font-size: 3.0rem;
}

.c-content {
    max-width: 1080px;
    margin: auto;
    margin-bottom: 124px;
}

.c-content__inner {
    margin: auto;
    width: 80%;
}

.c-table {
    width: 100%;
    border-collapse: collapse;
    vertical-align: top;
    /*border-top: 1px solid rgba(0, 0, 0, 0.2);*/
}

.c-table td {
    font-weight: normal;
    text-align: left;
    letter-spacing: 0.025em;
    vertical-align: top;
    line-height: 1.6;
    padding: 24px 36px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    position: relative;
}

.c-table th {
    font-weight: normal;
    text-align: left;
    letter-spacing: 0.025em;
    vertical-align: top;
    line-height: 1.6;
    padding: 24px 36px;
    border-bottom: 1px solid #183b58;
    position: relative;
}

.c-table p {
    font-family: YakuHanMP, "Noto Serif JP", serif, "Arial", "メイリオ", sans-serif;
}

.c-table.-type1 tr>:first-child {
    width: 25%;
}

.c-list {
    list-style-type: none;
    padding: 0;
    text-align: left;
    line-height: 1.6;
}

.c-list li {
    list-style-type: none;
    padding-top: 12px;
    line-height: 1.6;
    position: relative;
    font-family: YakuHanMP, "Noto Serif JP", serif, "Arial", "メイリオ", sans-serif;
}

.br-sp {
    display: none;
}

@media screen and (max-width: 559px) {
    .c-table tr>:first-child {
        padding: 10px;
        border-bottom: none;
    }
}

@media screen and (max-width: 559px) {
    .c-table tbody {
        width: 100%;
    }
}

@media screen and (max-width: 559px) {
    .c-table tr>:first-child {
        width: auto;
    }
}

@media screen and (max-width: 559px) {
    .c-table tr>:first-child {
        padding: 12px 0;
        border-bottom: none;
    }
}

@media screen and (max-width: 559px) {
    .c-content {
        min-width: inherit;
        min-width: auto;
        margin-bottom: 88px;
    }
}

.c-content__inner {
    width: 85%;
    margin: auto;
}

@media screen and (max-width: 559px) {
    .c-table,
    .c-table tbody,
    .c-table td,
    .c-table th,
    .c-table tr {
        display: block;
    }
}

@media screen and (max-width: 559px) {
    .c-list li {
        line-height: 1.45;
        font-family: YakuHanMP, "Noto Serif JP", serif, "Arial", "メイリオ", sans-serif;
    }
}

@media screen and (max-width: 600px) {
    .mw_wp_form.mw_wp_form_input .o_c_f-inquirement th {
        display: block;
        width: 100%;
        padding-bottom: 10px;
    }
}

@media screen and (max-width: 600px) {
    input[type="text"],
    input[type="password"],
    input[type="email"],
    input[type="number"],
    input[type="tel"],
    textarea,
    input[type="submit"] {
        font-size: 1.6rem;
    }
}

@media screen and (max-width: 600px) {
    section {
        font-size: 1.4rem;
        letter-spacing: 0.05em;
    }
}

@media screen and (max-width: 600px) {
    .mw_wp_form.mw_wp_form_input .o_c_f-inquirement td {
        display: block;
        width: 100%;
        padding-bottom: 30px;
    }
}

@media screen and (max-width: 600px) {
    section {
        font-size: 1.4rem;
        letter-spacing: 0.05em;
    }
}


/*
@media screen and (max-width: 600px) {
    .mw_wp_form.mw_wp_form_input input[type="submit"] {
        margin-top: 0;
    }
}
*/

@media screen and (max-width: 600px) {
    section {
        font-size: 1.4rem;
        letter-spacing: 0.05em;
    }
}

@media screen and (max-width: 600px) {
    .l_header--1080 {
        height: 260px;
    }
}

@media screen and (max-width: 600px) {
    .o_c_title__center:first-child {
        padding: 115px 0 45px 0;
        letter-spacing: 0.1em;
    }
}

@media screen and (max-width: 600px) {
    .o_c_title__center:first-child .o_c_title__en {
        font-size: 3.2rem;
    }
}

@media screen and (max-width: 600px) {
    .o_c_title__center:first-child .o_c_title__jp {
        font-size: 1.5rem !important;
    }
}

@media screen and (max-width: 600px) {
    .p_inquirement .o_c_f-inquirement__caution {
        padding: 40px 0 40px;
    }
}

.c-table p {
    font-family: YakuHanMP, "Noto Serif JP", serif, "Arial", "メイリオ", sans-serif;
}


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

.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 h2 {
    font-family: Copperplate;
    color: #fff;
    padding-top: 200px;
    padding-bottom: 250px;
    margin: 0;
    padding-left: 10px;
    padding-right: 10px;
    text-align: center;
    letter-spacing: 4px;
    font-size: 4rem;
}

.usualview__visual span {
    font-family: MatisseProN-M;
    display: block;
    font-size: 1.4rem;
    font-weight: normal;
    letter-spacing: 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 h2 {
        font-size: 2.4rem;
    }
    .usualview__visual span {
        font-size: 1.0rem;
    }
}


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


/*----------------------------------------------------------
サイトマップ
-------------------------------------------------------------*/

@media (min-width: 875px) {
    .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;
    }
}

@media (max-width: 874px) {
    .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;
}

.sitemap span {
    color: black;
}

.page-navi-item::before {
    display: inline-block;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
    color: #636c72;
    content: '/';
}


/*サイトマップ  終---------------------------------------------*/

@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;
    }
}