@charset "utf-8";


/* -------------------------------------------------------------------- 
 body
-------------------------------------------------------------------- */

body {
    color: #000000;
    background-color: #ffffff;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 13px;
    *font-size: small;
    *font: x-small;
    text-align: center;
    text-size-adjust: 100%;
    -moz-text-size-adjust: none;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    max-height: 999999px;
}

.webFontMontserrat {
    font-family: 'Montserrat', sans-serif;
}

#wrap {
    overflow: hidden;
    margin-top: 0px;
    margin-right: auto;
    margin-bottom: 0px;
    margin-left: auto;
    padding: 0px;
    min-width: 1160px;
}
img {
    vertical-align: bottom;
    width: 100%;
    height: auto;
}
.pos {
    position: relative;
    top: -50px;
}

@media screen and (max-width:768px) {

    #wrap {
        overflow: hidden;
        width: auto;
        margin-top: 0px;
        margin-right: auto;
        margin-bottom: 0px;
        margin-left: auto;
        padding: 0px;
        min-width: 320px;
    }
    img {
        width: 100%;
        height: auto;
    }
}


/* -------------------------------------------------------------------- 
 header
-------------------------------------------------------------------- */

header {
    height: 125px;
    position: fixed;
    left: 0px;
    top: 0px;
    z-index: 100;
    width: 100%;
    background: #ffffff;
}
.headerWrap {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 27px 20px 22px;
    background: #ffffff;
}
.headerFlex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.headerLogo {
    width: 150px;
    padding-bottom: 8px;
}
.headerNavi {
    display: flex;
    align-items: center;
}
.headerNavi01 {
    display: flex;
    height: 65px;
}
.headerNavi01>li {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    margin: 0 28px 0 0
}
.headerNavi01>li>a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 65px;
    border-bottom: 2px solid #FFF;
}
.headerNavi01>li>a:hover {
    color: #00307B;
    border-bottom: 2px solid #00307B;
}
.headerNavi01>li>a span {
    display: block;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 10px;
    font-weight: 500;
    text-align: center;
    padding: 5px 0 0;
}


/* メガメニュー */

.menu {
    position: relative;
}
.menu__second-level {
    visibility: hidden;
    opacity: 0;
    z-index: 1;
}
li.menu__mega .menu__second-level {
    position: fixed;
    top: 95px;
    left: 0;
    box-sizing: border-box;
    width: 100%;
    padding: 35px 20px 28px;
    background: rgba(0, 48, 123, 0.84);
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
}
li.menu__mega:hover .menu__second-level {
    top: 95px;
    visibility: visible;
    opacity: 1;
}
li.menu__mega .menu__second-level ul {
    width: 854px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 auto;
}
li.menu__mega .menu__second-level ul>li {
    width: 416px;
    background: #FFFFFF;
    text-align: left;
    margin-bottom: 7px;
}
li.menu__mega .menu__second-level ul>li a {
    display: block;
    padding: 20px 10px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.05em;
    background: #FFF;
    text-align:center;
}
li.menu__mega .menu__second-level ul>li a:hover {
    color: #FFF;
    background: #00307B;
}

.headerNavi02 {
    display: flex;
    flex-direction: column;
    height: 76px;
    width: 116px;
}
.headerNavi02 li {
    margin: 0 0 2px;
    width: 116px;
    height: 36px;
}
.headerNavi02 li a {
    display: flex;
    justify-content:center;
    align-items: center;
    width: 116px;
    height: 36px;
    font-size: 12px;
    color: #FFF;
    padding: 0;
    transition: 0.3s;
}
.headerNavi02 li.download a {
    border: 1px solid #F18C01;
    background: #F18C01;
}
.headerNavi02 li.contact a {
    border: 1px solid #00307B;
    background: #00307B;
}
.headerNavi02 li.download a:hover {
    color: #F18C01;
    background: #FFF;
}
.headerNavi02 li.contact a:hover {
    color: #00307B;
    background: #FFF;
}
.headerNavi03 {
    cursor: pointer;
    height: 22px;
    width: 28px;
    position: relative;
}
.headerNavi03 span {
    border-bottom: 2px solid #000;
    display: block;
    left: 0;
    position: absolute;
    width: 100%;
    border-width: 4px;
}
.headerNavi03 span:first-child {
    top: 0
}
.headerNavi03 span:nth-child(2) {
    top: 10px
}
.headerNavi03 span:nth-child(3) {
    top: 20px
}
@media screen and (max-width:768px) {


    header {
        height: 60px;
    }
    .headerWrap {
        padding: 0 20px;
    }
    .headerLogo {
        width: 100px;
    }
    .headerNavi {
        height: 60px;
    }
    .headerNavi01,
    .headerNavi02 {
        display: none;
    }
    .headerNavi03 {
        cursor: pointer;
        height: 22px;
        width: 28px;
        position: relative;
    }
    .headerNavi03 span {
        border-bottom: 2px solid #000;
        display: block;
        left: 0;
        position: absolute;
        width: 100%;
        border-width: 4px;
    }
}


/* -------------------------------------------------------------------- 
 Footer
-------------------------------------------------------------------- */



footer {
    border-top: 1px solid #CCC6C6;
    padding: 50px 0 15px;
}
footer .flexCol2 {
    display: flex;
    justify-content: space-between;
}
footer .flexCol2 .footerLogo {
    width: 155px;
}
footer .flexCol2 .footerLink {
    display: flex;
}
footer .flexCol2 .footerLink ul {
    padding: 0 0 0 100px;
}
footer .flexCol2 .footerLink li {
    font-size: 13px;
    font-weight: 700;
    text-align: left;
    line-height: 1.6;
    margin: 0 0 14px;
}
footer .flexCol2 .footerLink .cases li {
    margin: 0;
}
footer .flexCol2 .footerLink .cases li:not(:first-child) {
    font-weight: 400;
    font-size: 12px;
    margin:0 0 2px;
}
footer .flexCol2 .footerLink li a:hover {
    text-decoration: underline;
}
footer .flexCol2 .footerLink li.corp a {
    display:inline-block;
    border:1px solid #707070;
    padding: 5px 10px;
}
footer .flexCol2 .footerLink li.corp a:hover {
    background:#707070;
    color:#FFF;
    text-decoration:none;
}
footer .contentWrap .footerCopyright {
    font-size: 10px;
    text-align: left;
    padding: 25px 0 0;
}



@media screen and (max-width:768px) {


    footer {
        padding: 40px 0 15px;
    }
    footer .flexCol2 {
        display: block;
    }
    footer .flexCol2 .footerLogo {
        width: 100px;
        margin: 0 0 20px;
    }
    footer .flexCol2 .footerLink {
        display: block;
    }
    footer .flexCol2 .footerLink ul {
        padding: 0 0 0 20px;
        margin: 0;
    }
    footer .flexCol2 .footerLink li {
        max-width: initial;
    }
    footer .flexCol2 .footerLink .cases {
        margin: 0 0 10px;
    }
    footer .contentWrap .footerCopyright {
        font-size: 10px;
        text-align: left;
        padding: 20px 0 0;
    }
}

/* -------------------------------------------------------------------- 
 Button
-------------------------------------------------------------------- */


.contactBtn01 a,
.downloadBtn01 a {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 456px;
    height: 94px;
	padding-bottom: 0.1em;
    background: #00307B;
    color: #FFF;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.1em;
    border-radius: 50px;
    border: 2px solid #00307B;
    transition: 0.3s;
}
.contactBtn01 a:hover {
    background: #FFF;
    color: #00307B;
}
.downloadBtn01 a {
	border-color: #F18C01;
	background: #F18C01;
}
.downloadBtn01 a:hover {
	color: #F18C01;
	background: #FFF;
}
.contactBtn02 {
    margin: 60px 0 0;
}
.contactBtn02.pt2 {
    margin: 30px 0 0;
}
.contactBtn02 a {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 294px;
    height: 78px;
    background: #FFF;
    color: #00307B;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.1em;
    border-radius: 50px;
    border: 2px solid #00307B;
    transition: 0.3s;
    margin: 0 auto;
}
.contactBtn02 a:hover {
    background: #00307B;
    color: #FFF;
}
.contactBtn02.pt2 a:hover {
    border: 2px solid #FFF;
}
.contactBtn03 {
    margin: 60px 0 0;
}
.contactBtn03 a {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 294px;
    height: 78px;
    background: #00307B;
    color: #FFF;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.1em;
    border-radius: 50px;
    border: 2px solid #00307B;
    transition: 0.3s;
    margin: 0 auto;
}
.contactBtn03 a:hover {
    background: #FFF;
    color: #00307B;
}
.contactBtn03.sq a {
    border-radius: 0;
}
.contactBtn03.sq span {
    display:inline-block;
    font-size:22px;
    font-weight:700;
    color:#00307B;
    margin: 0 0 20px;
}


@media screen and (max-width:768px) {

    .contactBtn01 a,
	.downloadBtn01 a {
        max-width: initial;
        height: 70px;
        font-size: 18px;
    }
    .contactBtn02.pt2 {
        margin: 0;
        padding: 0 0 20px;
    }

    .contactBtn03 {
        margin: 40px 0 0;
    }
    .contactBtn02 a,
    .contactBtn03 a {
        height: 60px;
        font-size: 18px;
    }
.contactBtn03.sq span {
    font-size:18px;
}
}



/* -------------------------------------------------------------------- 
 TOP Contents
-------------------------------------------------------------------- */


.contentWrap {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.topMainvisual {
    margin: 125px 0 0;
    padding: 22px 0;
    background: no-repeat url("../img/top/mainvisual.png") 0 0 / cover;
}
.topMainvisual .topMainFlex {
    display: flex;
    justify-content: space-between;
}
.topMainvisual .topMainFlex .leftColumn {
    text-align: left;
    padding: 33px 0;
}
.topMainvisual .topMainFlex .leftColumn .servicenow_logo {
    width: 465px;
    margin: 0 0 30px;
}
.topMainvisual .topMainFlex .leftColumn .servicenow_logo .img01 {
    width: auto;
    height:98px;
    margin:0 20px 0 0;
}
.topMainvisual .topMainFlex .leftColumn .servicenow_logo .img02 {
    width: auto;
    height:98px;
}
.topMainvisual .topMainFlex .leftColumn h1 {
    color: #FFF;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.7;
    margin: 0 0 30px;
}
.topMainvisual .topMainFlex .leftColumn h1 span {
    display: inline-block;
    font-size: 37px;
    border-top: 3px solid #62D84E;
    margin: 18px 0 0;
    padding: 10px 0 0;
}
.topMainvisual .topMainFlex .contact {
    background: rgba(255, 255, 255, 0.91);
    width: 449px;
}
.topMainvisual .topMainFlex .contact .form {}
.topMainvisual .topMainFlex .contact .form .smpForm {}


.topMainvisual .topMainFlex .rightColumn {
       padding: 110px 120px 0 0;
}
.topMainvisual .topMainFlex .snap_itsm {
    width: 250px;
    padding: 0;
}
.topMainvisual .topMainFlex .snap_itsm a:hover {
    opacity:0.9;
}

.topContent01 {
    padding: 100px 0;
}
.titleHead02 {
    margin: 0 0 30px;
}
.titleHead02 h2 {
    color: #00307B;
    font-size: 35px;
    font-weight: 700;
}
.titleHead02 h2 span {
    font-family: 'Montserrat', sans-serif;
    color: #222;
    font-size: 16px;
    letter-spacing: 0.05em;
    display: inline-block;
    position: relative;
}
.titleHead02 h2 span:before {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    background: #62D84E;
    top: 0;
    left: -10px;
}
.leadText01 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.8;
    margin: 0 0 20px;
}
.detailText01 {
    font-size: 16px;
    line-height: 2.2;
}
.topContent02 .detailText01 {
    margin: 0 0 80px;
}
.detailImg01 {
    margin: 0 0 45px;
}
.topContent01sec01 {}
.flexCol3 {
    display: flex;
    justify-content: space-between;
}
.flexCol3 .box {
    width: 364px;
}
.flexCol3 .box h4 {
    width: 364px;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.8;
    margin: 0 0 35px;
}
.flexCol3 .box h4 span {
    color: #00307B;
}
.flexCol3 .box figure {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 173px;
    margin: 0 0 30px;
}
.flexCol3 .box:nth-child(1) img {
    width: 176px;
}
.flexCol3 .box:nth-child(2) img {
    width: 173px;
}
.flexCol3 .box:nth-child(3) img {
    width: 213px;
}
.flexCol3 .box p {
    font-size: 16px;
    line-height: 1.9;
    text-align: left;
}


.topContent02 {
    padding: 100px 0 0;
    background: #F4F4F4;
}
.topContent02Sec01 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0 134px;
}
.topContent02Sec01 figure:nth-child(1) {
    padding: 0 83px 0 0;
}
.topContent02Sec01 figure:nth-child(2) {
    padding: 0 0 0 55px;
    border-left: 1px solid #707070;
}
.topContent02sec02 {
    height: 400px;
    background: rgb(27, 85, 149);
    background: linear-gradient(90deg, rgba(27, 85, 149, 1) 0%, rgba(7, 57, 129, 1) 100%);
}
.flexCol3b {
    display: flex;
    justify-content: space-between;
    position: relative;
    top: -54px;
}
.flexCol3b .box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 384px;
    height: 200px;
}
.flexCol3b .box:nth-child(1) {
    background: url("../img/top/top_img15.jpg") 0 0 / cover;
}
.flexCol3b .box:nth-child(2) {
    background: url("../img/top/top_img16.jpg") 0 0 / cover;
}
.flexCol3b .box:nth-child(3) {
    background: url("../img/top/top_img17.jpg") 0 0 / cover;
}
.flexCol3b .box h4 {
    font-size: 22px;
    line-height: 1.8;
    color: #FFF;
    letter-spacing: 0.05em;
    font-weight: 700;
}


.topContent03 {
    padding: 100px 0;
    background: #F4F4F4;
}
.topContent03 .contentWrap {
    padding-bottom: 80px;
}
.topContent03sec01 {
    padding: 80px 0 20px;
    background: #FFF;
    position: relative;
}
.topContent03sec01:after {
    content: "";
    position: absolute;
    bottom: -30px;
    left: 50%;
    margin-left: -69px;
    width: 138px;
    height: 58px;
    background: no-repeat url("../img/top/arrow01.png") 0 0 / contain;
}


.contactBox {
    padding: 72px 0 0;
}
.contactBox p {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.8;
    margin: 0 0 78px;
}
.contactBox p span {
    font-size: 30px;
    color: #00307B;
}


.flexCol4 {
    display: flex;
    justify-content: center;
    padding: 0 0 30px;
    margin: 0 0 30px;
}
.flexCol4:not(:last-child) {
    border-bottom: 1px dashed #707070;
}
.flexCol4 .box {
    width: 25%;
}
.flexCol4 .box:not(:last-child) {
    border-right: 1px dashed #707070;
}
.flexCol4 .box:not(:last-child) {
    border-right: 1px dashed #707070;
}
.flexCol4:last-child .box {
    border-right: 1px dashed #707070;
}
.flexCol4:last-child .box:first-child {
    border-left: 1px dashed #707070;
}
.flexCol4 .box figure {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 130px;
}
.flexCol4.row01 .box:nth-child(1) img {
    width: 86px;
}
.flexCol4.row01 .box:nth-child(2) img {
    width: 68px;
}
.flexCol4.row01 .box:nth-child(4) img {
    width: 84px;
}
.flexCol4.row01 .box:nth-child(5) img {
    width: 62px;
}
.flexCol4.row02 .box:nth-child(1) img {
    width: 66px;
}
.flexCol4.row02 .box:nth-child(2) img {
    width: 58px;
}
.flexCol4.row02 .box:nth-child(4) img {
    width: 87px;
}
.flexCol4.row02 .box:nth-child(5) img {
    width: 51px;
}
.flexCol4.row03 .box:nth-child(1) img {
    width: 76px;
}
.flexCol4.row03 .box:nth-child(2) img {
    width: 84px;
}
.flexCol4 .borderArea {
    display: none;
}
.topContent03sec01 .flexCol4 .box .category {
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
    color: #00307B;
    letter-spacing: 0.05em;
    border: 1px solid #00307B;
    padding: 1px 10px 2px;
    margin: 0 0 13px;
}
.topContent03sec01 .flexCol4 .box h4 {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.05em;
}
.topContent03sec01 .flexCol4 .box h4 span {
    color: #00307B;
    text-decoration: underline;
}
.topContent03sec01 .flexCol4 .box a {
    display: block;
    position: relative;
	margin: 0 10px;
    padding: 0 0 106px;
}
.topContent03sec01 .flexCol4 .box a:after {
    position: absolute;
    content: "詳しくはこちら";
	display: flex;
	justify-content: center;
  	align-items: center;
	font-size: 15px;
	font-weight: 700;
	color: #fff;
    max-width: 12.667em;
	width: 100%;
    height: 2.533em;
	padding-bottom: .133em;
    bottom: 2.8em;
    left: 50%;
	transform: translate(-50%, 0);
	background-color: #00307B;
	background-image: url("../img/top/top_arrow.svg");
	background-repeat: no-repeat;
	background-position: center right;
	border-radius: 9999px;
	transition: 0.3s;
}
.topContent03sec01 .flexCol4 .box a:hover {
    background: #E5F8FE;
}
.topContent03sec01 .flexCol4 .box a:hover:after {
	background-color: #5798FF;
}
.topContent04 {
    padding: 80px 0 70px;
}
.topContent04 .titleHead02 {
    margin: 0 0 80px;
}
.topContent04 .flexCol2 {
    display: flex;
    justify-content: space-between;
    padding: 0 0 20px;
}
.topContent04 .flexCol2 .box {
    width: 545px;
    text-align: left;
}
.topContent04 .flexCol2 .box a {
    display: block;
}
.topContent04 .flexCol2 .box a:hover {
    opacity: 0.7;
}
.topContent04 .flexCol2 .box figure {
    margin: 0 0 44px;
}
.topContent04 .flexCol2 .box .category {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #00307B;
    letter-spacing: 0.05em;
    background: #D4EBFA;
    border-radius: 20px;
    padding: 5px 20px;
    margin: 0 0 18px;
    display: inline-block;
}
.topContent04 .flexCol2 .box h3 {
    font-size: 22px;
    font-weight: 700;
    line-height: 1.8;
    margin: 0 0 20px;
}
.topContent04 .flexCol2 .box p {
    font-size: 16px;
    line-height: 1.8;
    margin: 0 0 40px;
}
.topContent04 .flexCol2 .box .readMore {
    border: 2px solid #484747;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    padding: 15px 25px;
    display: inline-block;
    transition: 0.3s;
}
.topContent04 .flexCol2 .box a:hover .readMore {
    background: #484747;
    color: #FFF;
}


.contactBlock01 {
    padding: 70px 0 30px;
}
.contactBlock01 p {
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0.05em;
    line-height: 1.8;
    margin: 0 0 55px;
}
.contactBlock01 p span {
    font-size: 30px;
    color: #00307B;
}
.contactBlock01 .flexCol2 {
    display: flex;
    justify-content: space-between;
}
.contactBlock01 .flexCol2 .flexItem {}
.contactBlock01 .flexCol2 .flexItem a {
    width: 566px;
    height: 195px;
}
.contactBlock01 .flexCol2 .flexItem.btn01 {}
.contactBlock01 .flexCol2 .flexItem.btn01 a {
    background: #00307B;
    border: 1px solid #00307B;
    color: #FFF;
    font-size: 25px;
    font-weight: 500;
    letter-spacing: 0.05em;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}
.contactBlock01 .flexCol2 .flexItem.btn01 a:hover {
    background: #FFF;
    color: #00307B;
}
.contactBlock01 .flexCol2 .flexItem.btn01 a > span {
    display: inline-block;
    position: relative;
    padding: 0 0 0 44px;
    line-height:1.8;
}
.contactBlock01 .flexCol2 .flexItem.btn01 a.snap > span {
    padding: 0;
}
.contactBlock01 .flexCol2 .flexItem.btn01 a.snap > span > span {
    display: inline-block;
    position: relative;
    padding: 0 0 0 44px;
}
.contactBlock01 .flexCol2 .flexItem.btn01 a.seminar span:before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 26px;
    height: 25px;
    background: no-repeat url(../img/common/icon_contact01.png) center center / contain;
}
.contactBlock01 .flexCol2 .flexItem.btn01 a.snap > span > span:before {
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
    width: 26px;
    height: 25px;
    background: no-repeat url(../img/common/icon_contact01.png) center center / contain;
}
.contactBlock01 .flexCol2 .flexItem.btn01 a.snap:hover > span > span:before {
    background: no-repeat url(../img/common/icon_contact01_on.png) center center / contain;
}
.contactBlock01 .flexCol2 .flexItem.btn01 .text01 {}
.contactBlock01 .flexCol2 .flexItem.btn02 {}
.contactBlock01 .flexCol2 .flexItem.btn02 a {
    background: #F18C01;
    border: 1px solid #F18C01;
    color: #FFF;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: 0.3s;
}
.contactBlock01 .flexCol2 .flexItem.btn02 .tel {
    font-family: 'Barlow', sans-serif;
    font-size: 25px;
    letter-spacing: 0.05em;
    position: relative;
    padding: 0 0 0 42px;
    margin: 0 0 12px;
}
.contactBlock01 .flexCol2 .flexItem.btn02 .tel:before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 23px;
    height: 23px;
    background: no-repeat url(../img/common/icon_tel.png) center center / contain;
}
.contactBlock01 .flexCol2 .flexItem.btn02 .time {
    font-size: 14px;
}

.contactBlock01 .notes {
    text-align: left;
    padding: 100px 0 0;
}
.contactBlock01 .notes li {
    line-height: 1.6;
    padding: 0 0 0 1em;
    text-indent: -1em;
}
.contactBlock01 .notes li:not(last-child) {
    margin: 0 0 5px;
}

footer .flexCol2 .footerLink li.corp {
	margin: 0 0 8px;
}
footer .flexCol2 .footerLink li.corp a {
	width: 154px;
	text-align: center;
}


@media screen and (max-width:768px) {


    .contentWrap {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    .topMainvisual {
        margin: 66px 0 0;
        padding: 0;
        background: no-repeat url("../img/top/mainvisual.png") 0 0 / cover;
    }
    .topMainvisual .contentWrap {
        padding: 0;
    }
    .topMainvisual .topMainFlex {
        display: block;
    }
    .topMainvisual .topMainFlex .leftColumn {
        text-align: left;
        padding: 30px 20px 30px;
        background: no-repeat url("../img/top/mainvisual.png") 0 0 / cover;
    }
    .topMainvisual .topMainFlex .leftColumn .servicenow_logo {
        width: 100%;
        margin: 0 0 20px;
    }
    .topMainvisual .topMainFlex .leftColumn .servicenow_logo .img01 {
      height:60px;
    }
    .topMainvisual .topMainFlex .leftColumn .servicenow_logo .img02 {
      height:60px;
    }
    .topMainvisual .topMainFlex .leftColumn h1 {
        font-size: 16px;
        margin: 0 0 30px;
    }
    .topMainvisual .topMainFlex .leftColumn h1 span {
        display: block;
        font-size: 20px;
        margin: 12px 0 0;
        padding: 10px 0 0;
    }


.topMainvisual .topMainFlex .rightColumn {
   display:flex;
   flex-direction:row;
justify-content:space-around;
   align-items: center;
       padding:0 20px 20px;
}
.topMainvisual .topMainFlex .snap_itsm {
    width: 38%;
}
.topMainvisual .topMainFlex .snap_itsm a:hover {
    opacity:0.9;
}


    .topMainvisual .topMainFlex .contact {
        width: auto;
        background: #F4F4F4;
        padding: 20px;
    }
    .topMainvisual .topMainFlex .contact .form {}
    .topMainvisual .topMainFlex .contact .form .smpForm {}



    .topContent01 {
        padding: 54px 0 20px;
    }
    .titleHead02 {
        margin: 0 0 15px;
    }
    .titleHead02 h2 {
        font-size: 20px;
    }
    .leadText01 {
        font-size: 16px;
        margin: 0 0 18px;
    }
    .detailText01 {
        font-size: 14px;
        margin: 0 0 40px;
        text-align: left;
    }
    .detailImg01 {
        margin: 0 0 45px;
    }
    .flexCol3 {
        display: block;
    }
    .flexCol3 .box {
        width: auto;
        margin: 0 0 30px;
    }
    .flexCol3 .box h4 {
        width: auto;
        font-size: 16px;
        margin: 0 0 20px;
    }
    .flexCol3 .box figure {
        display: block;
        height: auto;
        margin: 0 0 20px;
    }
    .flexCol3 .box p {
        font-size: 14px;
    }


    .topContent02 {
        padding: 54px 0 0;
    }
    .topContent02Sec01 {
        display: block;
        margin: 0 0 100px;
    }
    .topContent02Sec01 figure:nth-child(1) {
        padding: 0 15% 20px;
    }
    .topContent02Sec01 figure:nth-child(2) {
        padding: 20px 15% 0;
        border-left: none;
        border-top: 1px solid #707070;
    }
    .topContent02 .detailText01 {
        margin: 0 0 40px;
    }
    .topContent02sec02 {
        height: auto;
    }
    .flexCol3b {
        display: block;
        top: -54px;
    }
    .flexCol3b .box {
        width: auto;
    }
    .flexCol3b .box:not(:last-child) {
        margin: 0 0 20px;
    }
    .flexCol3b .box h4 {
        font-size: 16px;
    }
    .topContent03 {
        padding: 54px 0;
    }
    .topContent03 .contentWrap {
        padding-bottom: 20px;
    }
    .topContent03:after {
        bottom: -20px;
        margin-left: -40px;
        width: 80px;
        height: 36px;
    }
    .topContent03sec01 {
        padding: 40px 0 20px;
    }

    .topContent03sec01:after {
        content: "";
        position: absolute;
        bottom: -15px;
        left: 50%;
        margin-left: -34px;
        width: 69px;
        height: 29px;
    }
    .flexCol4 {
        padding: 0 0 10px;
        margin: 0 0 10px;
        flex-wrap: wrap;
    }
    .flexCol4:not(:last-child) {
        border-bottom: 1px dashed #707070;
    }
    .flexCol4 .box {
        width: 50%;
        padding: 0 0 10px;
    }
    .flexCol4 div.box:nth-of-type(2n) {
        padding: 0 0 10px 10px;
    }
    .flexCol4 div.box:nth-of-type(2n+1) {
        padding: 0 10px 10px 0;
    }
    .flexCol4 .box:not(:last-child) {
        border-right: none;
    }
    .flexCol4 .box:not(:last-child) {
        border-right: none;
    }
    .flexCol4 .borderArea:not(:nth-of-type(2)) {
        display: none;
    }
    .flexCol4:last-child .borderArea {
        display: none;
    }
    .flexCol4:last-child .box:first-child {
        border-left: none;
    }
    .flexCol4.row03 .box {
        border-right: none;
    }
    .flexCol4.row03 .box:first-child {
        border-left: none;
    }
    .flexCol4 div.box:nth-of-type(2n) {
        border-left: 1px dashed #707070 !important;
    }
    .flexCol4 .borderArea {
        display: block;
        width: 100%;
        padding: 0 0 10px;
        margin: 10px 0 0;
        border-top: 1px dashed #707070;
    }
    .flexCol4.row01 .box:nth-child(4) img {
        width: 84px;
    }
    .flexCol4.row01 .box:nth-child(5) img {
        width: 62px;
    }
    .flexCol4.row02 .box:nth-child(4) img {
        width: 87px;
    }
    .flexCol4.row02 .box:nth-child(5) img {
        width: 51px;
    }
    .topContent03sec01 .flexCol4 .box .category {
        font-size: 12px;
        padding: 1px 5px 2px;
    }
    .topContent03sec01 .flexCol4 .box h4 {
        font-size: 16px;
    }
	.topContent03sec01 .flexCol4 .box a {
		padding-bottom: 70px;
	}
	.topContent03sec01 .flexCol4 .box a:after {
		font-size: 13px;
		bottom: 1.6em;
		background-size: 1.133em .667em;
	}
    .contactBox {
        padding: 40px 0 0;
    }
    .contactBox p {
        font-size: 20px;
        margin: 0 0 40px;
    }
    .contactBox p span {
        font-size: 24px;
    }
    .topContent04 {
        padding: 54px 0 40px;
    }
    .topContent04 .titleHead02 {
        margin: 0 0 40px;
    }
    .topContent04 .flexCol2 {
        display: block;
        padding: 0 0 20px;
    }
    .topContent04 .flexCol2 .box {
        width: auto;
        padding: 0 0 30px;
    }
    .topContent04 .flexCol2 .box figure {
        margin: 0 0 30px;
    }
    .topContent04 .flexCol2 .box .category {
        margin: 0 0 18px;
    }
    .topContent04 .flexCol2 .box h3 {
        font-size: 18px;
        margin: 0 0 15px;
    }
    .topContent04 .flexCol2 .box p {
        font-size: 14px;
        margin: 0 0 20px;
    }
    .topContent04 .flexCol2 .box .readMore {
        padding: 12px 20px;
    }

    .contactBlock01 {
        padding: 40px 0 20px;
    }
    .contactBlock01 p {
        font-size: 16px;
        margin: 0 0 30px;
    }
    .contactBlock01 p span {
        font-size: 20px;
    }
    .contactBlock01 .flexCol2 {
        display: block;
    }
    .contactBlock01 .flexCol2 .flexItem a {
        width: auto;
        height: 100px;
    }
    .contactBlock01 .flexCol2 .flexItem.btn01 {
        margin: 0 0 10px;
    }
    .contactBlock01 .flexCol2 .flexItem.btn01 a {
        font-size: 16px;
        padding: 0 10px;
    }
    .contactBlock01 .flexCol2 .flexItem.btn01 a span,
    .contactBlock01 .flexCol2 .flexItem.btn01 a.snap > span > span {
        padding: 0 0 0 32px;
    }
    .contactBlock01 .flexCol2 .flexItem.btn01 a span:before {
        top: 4px;
        width: 20px;
        height: 18px;
    }
    .contactBlock01 .flexCol2 .flexItem.btn01 a.snap > span > span:before,
    .contactBlock01 .flexCol2 .flexItem.btn01 a.seminar > span:before {
        top: 7px;
        width: 20px;
        height: 18px;
    }
    .contactBlock01 .flexCol2 .flexItem.btn02 a {
        padding: 0 10px;
    }
    .contactBlock01 .flexCol2 .flexItem.btn02 .tel {
        font-size: 20px;
        padding: 0 0 0 36px;
        margin: 0 0 10px;
    }
    .contactBlock01 .flexCol2 .flexItem.btn02 .tel:before {
        top: 2px;
        width: 20px;
        height: 20px;
    }
    .contactBlock01 .flexCol2 .flexItem.btn02 .time {
        font-size: 12px;
    }
    .contactBlock01 .notes {
        padding: 40px 0 0;
    }
}





.cp_fullscreenmenu {
    width: 62px;
    height: 65px;
    margin: 0;
    position: relative;
}

/*menuコンテンツ*/

.cp_fullscreenmenu .menu {
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    visibility: hidden;
    overflow: hidden;
    width: 100%;
    height: 100%;
    pointer-events: none;
    outline: 1px solid transparent;

    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    align-items: center;
    justify-content: center;
}
.cp_fullscreenmenu .menu>div {
    display: flex;
    overflow: hidden;
    width: 200vw;
    height: 200vw;
    transition: all 0.4s ease;
    -webkit-transform: scale(0);
    transform: scale(0);
    text-align: center;
    color: #fefefe;
    border-radius: 50%;
    background-color: rgba(0, 47, 123, .9);

    flex: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    align-items: center;
    justify-content: center;
}
.cp_fullscreenmenu .menu>div>ul {
    display: block;
    max-height: 100vh;
    margin: 0;
    padding: 0 1em;
    list-style: none;
    transition: opacity 0.4s ease;
    opacity: 0;
}
.cp_fullscreenmenu .menu>div>ul>li {
    font-size: 20px;
    display: block;
    margin: 0.5em 1em;
    padding: 0;
}
.cp_fullscreenmenu .menu>div>ul>li>a {
    position: relative;
    display: inline;
    cursor: pointer;
    transition: color 0.4s ease;
    color: #FFF;
}
.cp_fullscreenmenu .menu>div>ul>li>a:hover {
    color: #e5e5e5;
}
.cp_fullscreenmenu .menu>div>ul>li>a:hover:after {
    width: 100%;
}
.cp_fullscreenmenu .menu>div>ul>li>a:after {
    position: absolute;
    z-index: 1;
    bottom: -0.15em;
    left: 0;
    width: 0;
    height: 2px;
    content: '';
    transition: width 0.4s ease;
    background: #e5e5e5;
}


.cp_fullscreenmenu .menu>div>ul>li.sub {
    display: flex;
    flex-direction: column;
}
.cp_fullscreenmenu .menu>div>ul>li.sub span {}
.cp_fullscreenmenu .menu>div>ul>li.sub a {
    color: #FFF;
    font-size: 16px;
}



/*クリックしたらメニューが開閉の動作*/

.cp_fullscreenmenu .toggle {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 62px;
    height: 65px;
    cursor: pointer;
    opacity: 0;
}
.cp_fullscreenmenu .toggle:checked+.hamburger>span {
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}
.cp_fullscreenmenu .toggle:checked+.hamburger>span:before,
.cp_fullscreenmenu .toggle:checked+.hamburger>span:after {
    top: 0;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}
.cp_fullscreenmenu .toggle:checked+.hamburger>span:after {
    opacity: 0;
}
.cp_fullscreenmenu .toggle:checked~.menu {
    visibility: visible;
    pointer-events: auto;
}
.cp_fullscreenmenu .toggle:checked~.menu>div {
    transition-duration: 0.75s;
    -webkit-transform: scale(1);
    transform: scale(1);
}
.cp_fullscreenmenu .toggle:checked~.menu>div>ul {
    opacity: 1;
}
.cp_fullscreenmenu .toggle:hover+.hamburger {}
.cp_fullscreenmenu .toggle:checked:hover+.hamburger>span {
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
}

/*ハンバーガー*/

.cp_fullscreenmenu .hamburger {
    position: absolute;
    z-index: 1;
    top: 5px;
    left: 0;
    display: block;
    width: 62px;
    height: 65px;
    padding: 0.5em 0 0.5em 34px;
    cursor: pointer;
    transition: box-shadow 0.4s ease;
    border-radius: 0 0.12em 0.12em 0;

    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.cp_fullscreenmenu .hamburger>span {
    position: relative;
    top: 50%;
    display: block;
    width: 28px;
    height: 4px;
    transition: all 0.4s ease;
    background: #000;
}
.cp_fullscreenmenu .toggle:checked+.hamburger>span {
    background: #FFF;
}
.cp_fullscreenmenu .hamburger>span:before,
.cp_fullscreenmenu .hamburger>span:after {
    position: absolute;
    z-index: 1;
    top: -10px;
    left: 0;
    display: block;
    width: 100%;
    height: 4px;
    content: '';
    transition: all 0.4s ease;
    background: inherit;
}
.cp_fullscreenmenu .toggle:checked+.hamburger>span:before,
.cp_fullscreenmenu .toggle:checked+.hamburger>span:after {
    background: #FFF;
}
.cp_fullscreenmenu .hamburger>span:after {
    top: 10px;
}



@media screen and (max-width:768px) {


    .cp_fullscreenmenu .toggle {
        height: 60px;
    }
}


.bottom_bnr {
	position: fixed;
	bottom: 80px;
	right: 0;
	z-index: 999;
	width: 200px;
  display:none;
}
.bottom_bnr a {
  display:block;
  color:#FFF;
  font-weight:700;
}
.bottom_bnr li.dl a {
   background:#F18C01;
   border: 1px solid #F18C01;
   padding:30px 10px 10px;
   position:relative;
}
.bottom_bnr li.cnt a {
   background:#00307B;
   border: 1px solid #00307B;
   padding:10px;
}
.bottom_bnr li.dl a:hover {
   background:#FFF;
  color:#F18C01;
}
.bottom_bnr li.cnt a:hover {
   background:#FFF;
  color:#00307B;
}
.bottom_bnr li.dl a img {
   position:absolute;
   bottom:36px;
   left:50%;
   width:140px;
   margin-left:-72px;
}
.bottom_bnr li.dl a:hover img {
  opacity:0.8;
}
.bottom_bnr .closeBtn {
    position: absolute;
    right: 10px;
    top: -25px;
    height: 15px;
    z-index: 2;
    cursor:pointer;
}


@media screen and (max-width:768px) {

.bottom_bnr {
  display:none !important;
}
}