/** 固定 page */
.main-content-page {
    width: var(--content-width);
    max-height: 100%;
    flex-direction: column;
    justify-content: center;
    gap: 3rem;
    text-align: center;
    align-items: center;
}

.cform th {
    font-size: 15px;
    width: 25%;
    padding: 10px 0px 10px 15px;
    font-weight: bolder;
    text-align: left;
}

.cform td {
    font-size: 15px;
    line-height: 200%;
    padding: 10px 10px;
    text-align: left;
}


.cform {
    width: 94%;
    margin: auto;
}

.cform option,
.cform textarea,
.cform input[type=text],
.cform input[type=email],
.cform input[type=search],
.cform input[type=url] {
    width: auto;
}

.cform textarea {
    width: 100%;
}

@media only screen and (min-width: 768px) {
    .cform .last_name {
        margin-left: 20px;
    }

    .error_wrapper {
        display: flex;
        margin-top: -1em;
    }

    .error_flex1,
    .error_flex2 {
        min-width: 223px;
    }

    .error_flex2 {}
}

@media only screen and (max-width:767px) {

    .cform th,
    .cform td {
        width: 97%;
        border: 1px solid #999;
        padding: .5em 1em;
        display: block;
        border-top: none;
    }
}

/*――「送信ボタン」デザイン――*/
.submit-btn input {
    padding: 1rem 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 52px;
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(6px);
    background: transparent;
    color: white;
    font-size: 1.75rem;
}

.submit-btn {
    text-align: center;
    margin-top: 20px;
    cursor: pointer;
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

.submit-btn input:hover {
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.5);
}

::placeholder {
    font-weight: normal !important;
}

/*―――「必須」デザイン―――*/
.required-srt {
    font-size: .9em;
    margin-left: 5px;
    margin-right: 5px;
    color: #B70000;
}

/*ーーーーーーーーーーーーーーーー*/

iframe {
    width: 100%;
    margin-top: 10px;
    border: 1px solid #ccc;
}

.cform iframe {
    max-width: 790px;
}

.mw_wp_form_confirm .display-none {
    display: none;
}

.form-thanks {
    font-size: 1.3em;
    text-align: center;
}

.stepBar {
    position: relative;
    list-style: none;
    margin: 0 0 1em;
    padding: 0;
    text-align: center;
    width: 94%;
    margin: 0 auto 50px;
    overflow: hidden;
    zoom: 1;
}

.stepBar .step {
    position: relative;
    float: left;
    display: inline-block;
    line-height: 40px;
    padding: 0 40px 0 20px;
    background-color: #eee;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-top: none !important;
    border-bottom: none !important;
    color: #000;
}

.stepBar .step:before,
.stepBar .step:after {
    position: absolute;
    left: -15px;
    display: block;
    content: '';
    background-color: #eee;
    border-left: 22px solid #FFF;
    width: 20px;
    height: 20px;
}

.stepBar .step:after {
    top: 0;
    -moz-transform: skew(30deg);
    -ms-transform: skew(30deg);
    -webkit-transform: skew(30deg);
    transform: skew(30deg);
}

.stepBar .step:before {
    bottom: 0;
    -moz-transform: skew(-30deg);
    -ms-transform: skew(-30deg);
    -webkit-transform: skew(-30deg);
    transform: skew(-30deg);
}

.stepBar .step:first-child {
    -moz-border-radius-topleft: 4px;
    -webkit-border-top-left-radius: 4px;
    border-top-left-radius: 4px;
    -moz-border-radius-bottomleft: 4px;
    -webkit-border-bottom-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.stepBar .step:first-child:before,
.stepBar .step:first-child:after {
    content: none;
}

.stepBar .step:last-child {
    -moz-border-radius-topright: 4px;
    -webkit-border-top-right-radius: 4px;
    border-top-right-radius: 4px;
    -moz-border-radius-bottomright: 4px;
    -webkit-border-bottom-right-radius: 4px;
    border-bottom-right-radius: 4px;
}

.stepBar .step.current {
    color: #FFF;
    background-color: rgb(255,255,255, 0.1);

}

.stepBar .step.current:before,
.stepBar .step.current:after {
    background-color: rgb(255,255,255, 0.1);
}

.stepBar.step2 .step {
    width: 50%;
}

.stepBar.step3 .step {
    width: calc(100% / 3);
}

.stepBar.step4 .step {
    width: 25%;
}

.stepBar.step5 .step {
    width: 20%;
}

table {
    border-top: 1px solid rgb(255,255,255, 0.2);
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%
}

table td,
table th {
    border: 1px solid rgb(255,255,255, 0.2);
}

/*ーーーーーーーーーーーーーーーー*/
/*　　MW WP Formカスタマイズ　　*/
/*ーーーーーーーーーーーーーーーー*/

.mw_wp_form input[type="email"],
.mw_wp_form input[type="tel"],
.mw_wp_form input[type="text"],
.mw_wp_form textarea {
    padding: 1em;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 15px !important;
    font-size: 1rem;
    padding: 12px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.20);
    background: #1C1C1E;
    color: #fff;
}

.mw_wp_form select {
    display: block;
    position: relative;
    width: auto;
    height: 38px;
    font-size: 14px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.20);
    background: #1C1C1E;
    color: #fff;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    border-radius: 4px;
    overflow: hidden;
    padding: 0 10px;
}

.mw_wp_form .vertical-item {
    display: inline;
    margin-right: 10px;
}

.mw_wp_form selectt:after {
    position: absolute;
    display: block;
    content: '';
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-left: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #333;
    top: 50%;
    right: 10px;
    margin-top: -3px;
    pointer-events: none;
}

::placeholder {
    font-weight: normal !important;
}

/** 既存固定ページ微調整 */
#recruit-info .maincontent h2 {
    line-height: 55px;
}

#top-summary {
    margin-top: 30px;
}

#page-summary {
    margin-top: 0;
}

#top-summary .business-information,
#page-summary .business-information {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 8px;
    color: #fff;
}

#top-summary .top__summary--inner,
#page-summary .top__summary--inner {
    margin-top: 20px;
    margin-bottom: 20px;
}

#top-summary .top__summary--flex,
#page-summary .top__summary--flex {
    display: flex;
    border-bottom: 1px dashed rgb(255, 255, 255, 0.3);
    padding-bottom: 5px;
}

#top-summary .top__summary--time,
#page-summary .top__summary--time {
    width: 100px;
}

#business-information {
    margin-top: 80px;
    /* background-image: url(images/business-information-back.jpg); */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    width: 100vw;
    margin-left: calc((100% - 100vw) / 2);
    height: auto;
    padding: 50px 0;
}

#business-information .business-information {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 8px;
    color: rgb(255, 255, 255);
    text-shadow: rgb(102 102 102) 0px 0px 10px !important;
}

#business-information .business-information span {
    font-size: 30px;
    letter-spacing: 2px;
}

#business-information .information {
    margin: 40px auto;
    display: flex;
}

#business-information .information-title {
    width: 200px;
    position: relative;
    background-color: #406195;
    margin-right: 20px;
}

#business-information .information-title p {
    min-width: 180px;
    text-align: center;
    font-weight: bold;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

#business-information .information-cont {
    width: calc(100% - 220px);
    background-color: rgba(203, 228, 249, 0.9);
    padding: 20px 20px 0;
}

#business-information .information-cont .more {
    width: 5em;
    margin-left: auto;
    border: 1px solid #163d6b;
    text-align: center;
    padding: 0 1em;
    margin-top: -.7em;
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
}

#business-information .information-cont .more:hover {
    color: #fff;
    background-color: #163d6b;
    -ms-transform: translateY(2px);
    -webkit-transform: translateY(2px);
    transform: translateY(3px);
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
}

/*ー会社案内ー*/
:root {
    --vk-color-primary: #163d6b;
    --vk-color-border-hr: #6d6c6c;
}

#company .position-wrapper {
    position: relative;
}

#company .origin {
    margin: 0 auto;
    position: absolute;
    top: 6%;
    right: 5%;
    left: 5%;
    font-size: 1.2em;
    font-weight: bold;
    color: #163d6b;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: .5em;
    background-color: #fff;
    -ms-transform: translateY(3px);
    -webkit-transform: translateY(3px);
    transform: translateY(3px);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    text-align: left;
}

#company table.company {
    max-width: 90%;
    margin-top: 120px;
    position: absolute;
    top: 15%;
    right: 5%;
    left: 5%;
    color:#000;
}

#company table.company td {
    background-color: #fff;
}

table.company th,
table.company td {
	font-size: 1em !important;
}
table.company th {
    border: 1px solid silver !important;
	background-color: #06335c;
	color: #fff;
    padding: .5rem 1rem;
}

/*ー代表挨拶ー*/
#message {
    position: relative;
    color: #000;
}

#message .message-cont {
    max-width: 1000px;
    margin: 0 auto;
    margin-top: -650px;
    line-height: 4;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 1em 2em;
    background-color: #fff;
    -ms-transform: translateY(3px);
    -webkit-transform: translateY(3px);
    transform: translateY(3px);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

#message .message-cont .font-decoration {
    font-family: "ヒラギノ角ゴ ProN W6", HiraKakuProN-W6, 游ゴシック, "Yu Gothic", メイリオ, Meiryo, Verdana, Helvetica, Arial, sans-serif;
    font-size: 60px;
    color: #296db8;
    line-height: 1.4;
    margin-top: 50px;
    margin-bottom: 70px;
    text-align: center;
    transform: rotate(-10deg);
}

#message .message-cont .font-decoration span {}

#message ul {
    position: relative;
}

#message ul li {
    line-height: 2;
    margin-top: 0;
    margin-bottom: 0;
}

#message .signature {
    text-align: right;
}

/*ー経営理念ー*/
#management-philosophy h2 {
    position: relative;
    padding: 0.25em 1em;
    border-top: solid 1px var(--vk-color-primary);
    border-bottom: solid 1px var(--vk-color-primary);
}

#management-philosophy h2:before,
#management-philosophy h2:after {
    content: '';
    position: absolute;
    top: -7px;
    width: 1px;
    height: -webkit-calc(100% + 14px);
    height: calc(100% + 14px);
    background-color: var(--vk-color-primary);
}

#management-philosophy h2:before {
    left: 7px;
}

#management-philosophy h2:after {
    right: 7px;
}

#management-philosophy .philosophy {
    padding-left: 2em;
    padding-right: 2em;
    font-size: 1.1em;
}

#management-philosophy .conduct-code {
    line-height: 4;
    margin: 30px 0 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 1em 2em;
    -ms-transform: translateY(3px);
    -webkit-transform: translateY(3px);
    transform: translateY(3px);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

#management-philosophy .conduct-code p.code-title {
    font-size: 1.1em;
    margin-bottom: 10px;
}

#management-philosophy .conduct-code p.text-line {
    padding-right: 1.5em;
    padding-left: 1.5em;
    line-height: 3em;
    background-image: linear-gradient(transparent 0, transparent 97%, #ddd 100%);
    background-size: 100% 3em;
    margin-bottom: 40px;
}

/*ーDXコンサルティングー*/
#dx-consulting .information__cont {
    margin: 30px 0 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 1em 2em;
    -ms-transform: translateY(3px);
    -webkit-transform: translateY(3px);
    transform: translateY(3px);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

#dx-consulting h2 {
    border-top: none;
}

#dx-consulting h3 {
    padding: .5em 0;
    border-bottom: 1px solid var(--vk-color-border-hr);
}

#dx-consulting h3.steps-title {
    width: 100%;
    background: #163d6b;
    text-decoration: none;
    font-size: 16px !important;
    font-weight: normal !important;
    line-height: 1.6;
    color: #fff;
    position: relative;
    height: 100px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column nowrap;
    list-style: none;
}

#dx-consulting .steps-title::after {
    content: " ";
    display: block;
    width: 0;
    height: 0;
    border-top: 50px solid transparent;
    border-bottom: 50px solid transparent;
    border-left: 30px solid #163d6b;
    position: absolute;
    top: 50%;
    margin-top: -50px;
    left: 100%;
    z-index: 2;
}

#dx-consulting .steps-title.last-title::after {
    display: none;
}

#dx-consulting .steps-title li {
    padding-left: 15px;
}

#dx-consulting .steps-title.first-title li {
    padding-left: 0;
}

.comments-area {
    display: none;
}

@media print,
screen and (max-width: 767px) {
    #dx-consulting .steps-title {
        width: 80%;
        margin: 0 auto 30px;
        background: #163d6b;
        text-decoration: none;
        color: #fff;
        position: relative;
        height: auto;
        text-align: center;
        padding: 10px;
    }

    #dx-consulting .steps-title::after {
        content: "";
        display: block;
        border-top: 20px solid #163d6b !important;
        border-right: 38vw solid transparent !important;
        border-left: 38vw solid transparent !important;
        border-bottom: none;
        position: absolute;
        width: 0;
        height: 0;
        bottom: -20px !important;
        top: auto !important;
        left: 50%;
        margin-top: 0 !important;
        margin-left: -38vw;
    }
}

/*ーシステムサポートー*/
#system-support .information-title {
    font-size: 2rem;
    font-weight: bold;
}

#system-support .information__cont {
    margin: 30px 0 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 1em 2em;
    -ms-transform: translateY(3px);
    -webkit-transform: translateY(3px);
    transform: translateY(3px);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

#system-support h2 {
    border-top: none;
}

#system-support h3 {
    padding: .5em 0;
    border-bottom: 1px solid var(--vk-color-border-hr);
}

#system-support h4 {
    padding: .5em 0;
    border-bottom: 1px solid var(--vk-color-border-hr);
}

#system-support h3.steps-title {
    width: 100%;
    background: #163d6b;
    text-decoration: none;
    font-size: 16px !important;
    font-weight: normal !important;
    line-height: 1.6;
    color: #fff;
    position: relative;
    height: 50px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column nowrap;
    list-style: none;
}

#system-support .steps-title::after {
    content: " ";
    display: block;
    width: 0;
    height: 0;
    border-top: 25px solid transparent;
    border-bottom: 25px solid transparent;
    border-left: 30px solid #163d6b;
    position: absolute;
    top: 50%;
    margin-top: -25px;
    left: 100%;
    z-index: 2;
}

#system-support .steps-title.last-title::after {
    display: none;
}

#system-support .steps-title li {
    padding-left: 15px;
}

#system-support .steps-title.first-title li {
    padding-left: 0;
}

#system-support .row-steps {
    margin-bottom: 50px;
}

@media print,
screen and (min-width: 768px) {
    #message .signature {
        text-align: right;
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }

    #message .signature img {
        margin-left: 30px;
    }

    #system-support .col-md-5 {
        flex: 0 0 20% !important;
        max-width: 20% !important;
    }
}

@media print,
screen and (max-width: 767px) {
    #system-support .steps-title {
        width: 80%;
        margin: 0 auto 30px;
        background: #163d6b;
        text-decoration: none;
        color: #fff;
        position: relative;
        height: auto;
        text-align: center;
        padding: 10px;
    }

    #system-support .steps-title::after {
        content: "";
        display: block;
        border-top: 20px solid #163d6b !important;
        border-right: 38vw solid transparent !important;
        border-left: 38vw solid transparent !important;
        border-bottom: none;
        position: absolute;
        width: 0;
        height: 0;
        bottom: -20px !important;
        top: auto !important;
        left: 50%;
        margin-top: 0 !important;
        margin-left: -38vw;
    }
}

@media print,
screen and (min-width: 767px) and (max-width: 768px) {
    #system-support h3.steps-title {
        font-size: 14px !important;
    }
}

/*ー情報セキュリティに関する方針ー*/
#security .security-title {
    color: #fff
    font-size: 1.2em;
    line-height: 1.8;
}

#security p {
    color: #fff;
    font-size: 1.1em;
    line-height: 2;
}

#security h2 {
    font-size: 1.3em;
    padding: .5em 0;
    margin-top: 20px;
    border-top: 1px solid var(--vk-color-border-hr);
    border-bottom: 1px solid var(--vk-color-border-hr);
}

#security .behavioral-guidelines {
    margin: 30px 0 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 1em 2em;
    -ms-transform: translateY(3px);
    -webkit-transform: translateY(3px);
    transform: translateY(3px);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

#security .behavioral-guidelines li {
    color: #fff;
    font-size: 1.2em;
    line-height: 2;
    padding-left: 1em;
    list-style-type: decimal;
}

/*ー個人情報保護方針ー*/
#privacy-policy p {
    color: #fff;
    font-size: 1em;
    line-height: 2;
}

#privacy-policy h2 {
    font-size: 18px;
    padding: .5em 0;
    margin-top: 50px;
    border-top: 1px solid var(--vk-color-border-hr);
    border-bottom: 1px solid var(--vk-color-border-hr);
}

.page-link-wrapper {
    display: none;
    justify-content: center;
}

.page-link {
    background-color: var(--vk-color-primary);
    color: #fff;
    padding: .5em 1em;
    border-radius: var(--vk-size-radius);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: all 0.35s ease;
    transition: all 0.35s ease;
    margin-right: 50px;
}

.page-link:hover {
    -ms-transform: translateY(3px);
    -webkit-transform: translateY(3px);
    transform: translateY(3px);
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
}

.contact-us {
    color: #fff;
    font-size: 1em;
    line-height: 2;
    margin: 30px 0 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 1em 2em 0;
    -ms-transform: translateY(3px);
    -webkit-transform: translateY(3px);
    transform: translateY(3px);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.contact-us li {
    margin-bottom: 1em;
}

.contact-us p.inquiry {
    display: inline-block;
    font-size: 1.1em !important;
    color: #fff !important;
    border-bottom: thin solid var(--vk-color-primary) !important;
}

.enactment {
    color: #fff;
    font-size: .9em;
    line-height: 2;
    text-align: right;
}

table {
    border-top: 1px solid rgb(255,255,255, 0.2);
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%
}

table td,table th {
    border: 1px solid rgb(255,255,255, 0.2);
    padding: .5rem 1rem;
}


#wpfront-scroll-top-container {
    display: none !important;
}

/* 採用情報 */
#recruit-info .maincontent h2{
    background-color: rgb(255,255,255, 0.1) !important;
    border-left: solid 7px #fff !important;
}

#recruit-info .h2_subTitle_002 {
    color: #fff;
    border-color: #fff;
}