@charset "UTF-8";

/*--topのkv--*/


/*--topのkv--*/

.visualArea {
    background-color: #0b2a44;
    width: 100%;
    min-width: 1160px;
    /*コンテンツ幅に揃える*/
    height: 900px;
    overflow: hidden;
    margin: 0 auto;
    position: relative;
}

.topVisual {
    position: absolute;
    left: 48%;
    margin-left: -950px;
    width: 2000px;
    height: 900px;
    overflow: hidden;
}

.first-box {
    background-image: url(../images/kvLogo.png);
    background-repeat: no-repeat;
    width: 496px;
    height: 506px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 888;
}

.areaTop {
    position: absolute;
    animation-name: areaTopAni;
    animation-duration: 6s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    animation-timing-function: ease;
    -webkit-animation-name: areaTopAni;
    -webkit-animation-duration: 6s;
    -webkit-animation-iteration-count: 1;
    -webkit-animation-fill-mode: forwards;
    -webkit-animation-timing-function: ease;
    background-image: url(../images/kvDown.jpg);
    background-repeat: no-repeat;
    /*    background-attachment: fixed;*/
    top: 0;
    left: 0;
    background-position: left top;
    width: 2100px;
    height: 900px;
}

@keyframes areaTopAni {
    from {
        -ms-transform: translateX(-100px);
        -webkit-transform: translateX(-100px);
        transform: translateX(-100px);
    }
    to {
        -ms-transform: translateX(0px);
        -webkit-transform: translateX(0px);
        transform: translateX(0px);
    }
}

.areaBottom {
    background: url(../images/kvUpper.png);
    /*    background-attachment: fixed;*/
    width: 2100px;
    height: 900px;
    position: absolute;
    top: 0;
    left: 0;
}

@media(max-width:768px) {
    .visualArea {
        min-width: 320px;
        height: 450px;
    }
    .first-box {
        background-image: url(../images/sp/sp_kvlogo.png);
        width: 248px;
        height: 253px;
        background-size: cover;
    }
    .areaTop {
        width: 768px;
        height: 450px;
        background: url(../images/sp/kvDown_sp.jpg) 32% top no-repeat;
        background-size: cover;
    }
    .areaBottom {
        width: 768px;
        height: 450px;
        background: url(../images/sp/kvUpper_sp.png) center top no-repeat;
        background-size: cover;
        left: 90px;
    }
    .topVisual {
        margin-left: -480px;
        left: 64%;
    }
    @keyframes areaTopAni {
        from {
            -ms-transform: translateX(-20px);
            -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
        }
        to {
            -ms-transform: translateX(0px);
            -webkit-transform: translateX(0px);
            transform: translateX(0px);
        }
    }
}


/*--topContentsArea--*/

.container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    /*-ms-flex-wrap: wrap;
-webkit-flex-wrap: wrap;
flex-wrap: wrap;*/
    /* flex: wrapをすると、折り返してしまう*/
    flex: 0 0 50%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    justify-content: space-between;
}

.firstC {
    width: 1100px;
    /*width: 100%;*/
    margin: 0 auto;
    margin-bottom: 100px;
    padding-top: 90px;
}

.otherC {
    margin-bottom: 130px;
}

.txtAfirst {
    width: 550px;
    display: block;
    background-color: #32485a;
    color: #fff;
}

.titleA {
    font-size: 2.8rem;
    font-weight: 700;
    padding: 30px 0 20px 60px;
}

.txtAfirst p {
    padding: 0 60px 30px 60px;
}

.moreBtn {
    position: relative;
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.moreBtn span {
    padding-left: 60px;
    transition: all 0.5s;
}

.moreBtn::before {
    content: "";
    width: 50px;
    position: absolute;
    background-color: #fff;
    height: 2px;
    top: 50%;
    transition: all 0.5s;
}

.moreBtn2 {
    position: relative;
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    padding-bottom: 30px;
}

.moreBtn2 span {
    padding-left: 60px;
    transition: all 0.5s;
}

.moreBtn2::before {
    content: "";
    width: 50px;
    position: absolute;
    background-color: #fff;
    height: 2px;
    top: 25%;
    transition: all 0.5s;
}

.item:hover .moreBtn::before {
    width: 80px;
}

.item:hover .moreBtn span {
    padding-left: 90px;
}

.txtA:hover .moreBtn2::before {
    width: 80px;
}

.txtA:hover .moreBtn2 span {
    padding-left: 90px;
}

@media(max-width:768px) {
    .moreBtn {
        font-size: 1rem;
        margin-bottom: 15px;
        float: right;
    }
    .moreBtn::before {
        left: unset;
        right: 0px;
    }
    .moreBtn span {
        padding-left: unset;
        padding-right: 60px;
    }
    .txtA:hover .moreBtn::before {
        width: 80px;
    }
    .txtA:hover .moreBtn span {
        padding-left: 90px;
    }
    .moreBtn2 {
        font-size: 1rem;
    float: right;
    margin-top: -65px;
    padding-bottom: 15px;
    }
    .moreBtn2::before {
        left: unset;
        right: 0px;
    }
    .moreBtn2 span {
        padding-left: unset;
        padding-right: 60px;
    }
    .txtA:hover .moreBtn2::before {
        width: 80px;
    }
    .txtA:hover .moreBtn2 span {
        padding-left: 90px;
    }
    
}

.building {
    width: 550px;
    /*width: 100%;*/
}

.txtA {
    width: 1100px;
    /*width: 100%;*/
    margin: 0 auto;
    background-color: #32485a;
    color: #fff;
}

.contentsA {
    width: 980px;
    margin: 0 auto;
    padding-top: 30px;
    padding-bottom: 70px;
}

.contentsB {
    width: 980px;
    margin: 0 auto;
    padding-top: 30px;
    padding-bottom: 30px;
}

.titleB {
    font-size: 2.8rem;
    font-weight: 700;
    width: 23.67346938776%;
}

.rightSide {
    width: 76.32653061224%;
}

.upper {
    position: relative;
    margin-top: -34px;
    max-width: 1160px;
}

.upper2 {
    position: relative;
    margin: 0 auto;
    margin-top: -7px;
    max-width: 1148px;
    width: 100%;
}

.underContents1 {
    margin: 0;
    padding: 0;
    width: 50%;
    overflow: hidden;
}

.underContents2 {
    margin: 0;
    padding: 0;
    width: 50%;
    overflow: hidden;
}

.topBtn {
    width: 580px;
    transition: 0.6s;
}

.underContents2:hover > .topBtn{
   -moz-transform: scale(1.1,1.1);
  -webkit-transform: scale(1.1,1.1);
  -o-transform: scale(1.1,1.1);
  -ms-transform: scale(1.1,1.1);
}

.underContents1:hover > .topBtn{
   -moz-transform: scale(1.1,1.1);
  -webkit-transform: scale(1.1,1.1);
  -o-transform: scale(1.1,1.1);
  -ms-transform: scale(1.1,1.1);
}

.underContents {
    width: 33%;
    overflow: hidden;
}

.Mimg.pc{
    transition: 0.6s;
}

.underContents a:hover > .Mimg.pc{
       -moz-transform: scale(1.1,1.1);
  -webkit-transform: scale(1.1,1.1);
  -o-transform: scale(1.1,1.1);
  -ms-transform: scale(1.1,1.1);
}
.boxImage1 .boxImage2 {
    position: relative;
}

.boxImage1 p {
    position: absolute;
    color: #fff;
    top: 0;
    left: 0;
    top: 50%;
    left: 25%;
    -ms-transform: translate(-50%, -25%);
    -webkit-transform: translate(-50%, -25%);
    transform: translate(-50%, -25%);
    font-size: 2.5rem;
    font-weight: 700;
}

.underContents1 p {
    position: absolute;
    color: #fff;
    top: 0;
    left: 0;
    top: 50%;
    left: 75%;
    -ms-transform: translate(-50%, -25%);
    -webkit-transform: translate(-50%, -25%);
    transform: translate(-50%, -25%);
    font-size: 2.5rem;
    font-weight: 700;
}

.underContents2 p {
    position: absolute;
    color: #fff;
    top: 0;
    left: 0;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    font-weight: 700;
}

.boxImage2 {
    transform: translateY(30px);
}

.underContents {
    position: relative;
}

.underContents img {
    vertical-align: top;
    width: 100%;
}

.underContents p {
    position: absolute;
    width: 100%;
    padding: 16px 20px;
    background: rgba(0, 0, 0, .5);
    color: #fff;
    font-weight: 700;
    margin-top: -64px;
    font-size: 1.6rem;
}

/*--採用情報エリア--*/

.recruitInfo {
    background-color: #596b7a;
    color: #fff;
}

.recruitInfo .line{
    margin-top: 60px;
}

.recruitInfoTxt {
    padding-bottom: 20px;
}

.recruitTitle {
    font-size: 2.8rem;
    font-weight: 700;
    padding-top: 70px;
    padding-bottom: 70px;
    text-align: center;
}

.recruitBtns {
    width: 980px;
    margin: 0 auto;
}

.recruitBtn {
    width: 340px;
    background-color: #fff;
    height: 86px;
    -webkit-transition-property: background;
    transition-property: background;
    transition: all .6s;
    color: #333333;
}

.recruitBtn:hover{
    color: #fff;
    background-color: #052A43;
}

.ghost-btn {
    width: 31%;
    height: 100%;
    border: 2px solid #fff;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 1.3;
    padding: 20px ;
    text-align: center;
    text-decoration: none;
    -webkit-transition-property: background;
    transition-property: background;
    transition: all .6s;
}

.ghost-btn.highschool{
    background: #126437;
    border: 2px solid #126437;
}

.ghost-btn:hover{
    color: #0b2a44;
    background: #fff;
}

.recruitEntry {
    width: 22%;
    background-color: #ce3a2c;
    height: 86px;
    padding: 32px 10px;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    color: #fff;
    text-align: center;
}

.recruitBtntxt {
    font-size: 1.8rem;
    font-weight: 700;
    padding: 34px 0;
    text-align: center;
    width: 78%;
}

@media(max-width:768px) {
    .container {
        -ms-flex-wrap: wrap;
        -webkit-flex-wrap: wrap;
        flex-wrap: wrap;
        flex-direction: column;
        margin-top: 0px;
    }
    .upper2{
        margin-top: -25px;
    }
    .contentsA {
        display: block;
        width: 100%;
        padding: 0 20px 20px 20px;
    }
    .contentsB {
    display: block;
    width: 100%;
    padding: 0 20px 65px 20px;
    }
    .titleA {
        padding: 20px 0 20px 20px;
        font-size: 1.4rem;
    }
    .txtA {
        width: 100%;
        height: 100%;
    }
    .txtAfirst p {
        padding: 0 20px 20px 20px;
    }
    .titleB {
        width: 100%;
        padding: 20px 0;
        font-size: 1.4rem;
    }
    .rightSide {
        width: 100%;
    }
    .underContents1 {
        width: 100%;
        margin-top: 30px;
    }
    .underContents1 p {
        top: 75%;
        left: 50%;
        font-size: 1.2rem;
    }
    .underContents2 {
        width: 100%;
        margin-top: -30px;
    }
    .underContents2 p {
        font-size: 1.2rem;
    }
    .topBtn {
        width: 100%;
        max-width: 100%;
        height: auto;
    }
    .underContents {
        width: 100%;
    }
    .Mimg {
        width: 100%;
        max-width: 100%;
        height: auto;
    }
    .back {
        height: 50px;
        margin-right: 0;
    }
    .back p {
        font-size: 1.1rem;
        padding-left: 11px;
        padding-top: 14px;
    }
    .ghost-btn {
        margin: 0;
    }
    .ghost-btn {
        width: 265px;
        font-size: 1.2rem;
        padding: 18px 0;
        height: 54px;
        margin-bottom: 20px;
    }
    .recruitBtn {
        width: 265px;
        height: 53px;
    }
    .recruitEntry {
        width: 20%;
        height: 53px;
        padding: 17px 8px;
        font-size: 1rem;
    }
    .recruitBtntxt {
        font-size: 1.2rem;
        padding: 15px 0;
    }
    .recruitTitle {
        font-size: 1.4rem;
        padding-top: 35px;
        padding-bottom: 35px;
    }
    .recruitInfoTxt {
        padding-bottom: 10px;
    }
    .underContents p{
        font-size: 1.2rem;
        margin-top: -55px;
    }
    .recruitInfo .line{
        margin-top: 40px;
    }
}


/*--topPageCoding--*/


/*--industry--*/

.intro {
    max-width: 1100px;
    background-color: #fff;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.15);
    margin: 0 auto;
    margin-top: -40px;
    z-index: 1001;
}

.titleUnder {
    text-align: center;
    font-weight: 700;
    font-size: 2.8rem;
    color: #0b2a44;
    padding-top: 40px;
    padding-bottom: 40px;
    margin: 0 auto;
}

.introInner {
    width: 750px;
    margin: 0 auto;
    color: #32485a;
}

.accent {
    font-weight: 700;
}

.intro img.diagram {
    margin: 0 auto;
    padding: 40px 0 60px 0;
}

.section {
    margin-top: 40px;
    width: 1100px;
}

.industryP {
    width: 480px;
}
.industryP2 {
    width: 480px;
}

.sectionA {
    margin: 0 auto;
    padding-bottom: 40px;
}

#containerR {
    padding-right: 30px;
}

#containerL {
    padding-left: 52px;
}

.forMargin{
    margin-bottom: 100px;
}

@media(max-width:768px) {
    .otherC {
        margin-bottom: 14px;
    }
    .otherC:last-child{
        margin-bottom: 48px;
    }
    .firstC {
        width: 100%;
        margin-bottom: 48px;
        padding-top: 30px;
    }
    .txtAfirst {
        width: 100%;
    }
    .item {
        width: 100%;
        max-width: 100%;
    }
    .building {
        width: 100%;
        max-width: 100%;
        height: auto;
    }
    .introInner {
        width: 100%;
        padding: 15px;
    }
    .section {
        width: 100%;
    }
    .forMargin{
        margin-bottom: 60px;
    }
    .intro img.diagram {
        max-width: 100%;
        height: auto;
        padding: 40px 15px 40px 15px;
    }
    .sectionA{
        padding-bottom: 0;
    }
    .sectionA img.sp {
        max-width: 100%;
        height: auto;
    }
    #containerL {
        padding-left: 0;
    }
    .lineUnder {
        padding-top: 10px;
    }
    .titleUnder {
        font-size: 1.5rem;
        padding-top: 0;
        padding-top: 20px;
        padding-bottom: 20px;
    }
    #containerR {
        padding: 0;
    }
}


/*--workHumanIndex--*/

.sectionIndex {
    margin-top: 40px;
    width: 100%;
    padding-left: 60px;
}

.first-boxUnder4 h2{
    color: #fff;
}

.titleBox {
    width: 102px;
    height: 50px;
    border: 1px solid #00b86a;
}

.titleBox p {
    font-size: 2.4rem;
    font-weight: bold;
    color: #00b86a;
    text-align: center;
}

.indexA {
    border-left: 1px solid #00b86a;
    margin: 8px 0;
    margin-left: 51px;
}

.indexTxt {
    margin: 8px 0;
    padding-left: 25px;
    width: 62%;
    margin-right: 15px;
}

.indexTxt.none {
    width: 100%;
}

.indexImg {
    width: 34.54545454545%;
}

#landscape {
    height: 252px;
    width: 100%;
    background: url("../images/interviewIndex/job_person_bg.png") no-repeat center center;
    background-size: 100%;
    display: block;
}

@media(max-width:768px) {
    #landscape {
        height: 127px;
        background: url("../images/interviewIndex/job_person_bg.png") no-repeat left center;
        background-size: cover;
    }
}

#indexUnder {
    margin: 100px 0;
}

#indexUnder h2 {
    text-align: center;
    padding-bottom: 50px;
}

.width1180 {
    max-width: 1180px;
    width: 100%;
    margin: 0 auto;
    align-items: flex-start;
}

.width1180 a {
    color: #0b2a44;
    font-weight: bold;
}

.width1180 a:hover{
    color: #FB5C32;
}

.width1180 a p {
    padding-left: 16px;
}

@media(max-width:768px) {
    .titleBox {
        width: 51px;
        height: 25px;
    }
    .titleBox p {
        font-size: 1.2rem;
    }
    .indexA {
        margin-left: 25px;
    }
}


/*--workHuman--*/

.unTitle {
    padding: 60px 0;
    font-size: 1.8rem;
}

.interviewWidth {
    width: 1100px;
    margin: 0 auto;
}

.interviewWidth .container {
    margin: 40px 0;
}

.txtRight {
    width: 470px;
}

.txtRight h2 {
    margin-bottom: 40px;
}

.LRcontents {
    margin: 70px 0;
}

.LRcontentsInner {
    width: 980px;
    margin: 0 auto;
}

.LRcontentsInner .container {
    align-items: flex-start;
}

.txtL {
    width: 470px;
    margin-right: 38px;
}

.txtR {
    width: 470px;
}

.interviewContents {
    margin: 0 auto;
}

.in60 {
    padding-left: 60px;
}

.txtLeft {
    width: 620px;
    margin-right: 50px;
}

.interviewWidth2 {
    width: 980px;
    margin-top: 70px;
    margin-bottom: 70px;
}

.interviewWidth .interviewContents .container img {
    margin-right: -22px;
}


/*
.private {
    height: 390px;
    background-color: #244070;
    font-size: 1.4rem;
}

.privateA {
    display: block;
    position: relative;
    height: 100%;
}

.privateL {
    float: left;
    width: 50%;
    height: 100%;
    position: relative;
}

.privateL .text {
    position: absolute;
    width: 450px;
    top: 50px;
    right: 40px;
    color: #fff;
}

.privateR {
    float: right;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.privateR .privateRimg01 {
    width: 100%;
    height: 390px;
    background: url(../images/interview01/interviewPic05.png) no-repeat left top;
    background-size: cover;
}

.privateR .privateRimg02 {
    width: 100%;
    height: 390px;
    background: url(../images/interview02/pic_person_.png) no-repeat left top;
    background-size: cover;
}

.privateR .privateRimg02 {
    width: 100%;
    height: 390px;
    background: url(../images/interview03/interviewPic05.png) no-repeat left top;
    background-size: cover;
}
*/


/*--private--*/

.privateArea {
    background-color: #244070;
    overflow: hidden;
    color: #fff;
    font-size: 1.4rem;
}

.privateI {
    width: 980px;
    margin: auto;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
}

.privateT {
    width: 490px;
}

.privateTxt {
    width: 450px;
    margin-right: 40px;
}

.privateImg {
    width: 720px;
    margin-right: -230px;
}

.privateImg img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
}


/*--private--*/

.interviewPc {
    width: 100%;
    background-color: #244070;
    color: #fff;
}

.interviewP {
    width: 50%;
}

.interviewPt {
    width: 450px;
    float: right;
    margin-right: 40px;
}

.interviewPP {
    width: 50%;
}

.interviewPP_p {
    background: url(../images/interview01/interviewPic05.png) no-repeat left top;
    height: 390px;
}

.interviewPP_p2 {
    background: url(../images/interview02/pic_person_.png) no-repeat left top;
    height: 390px;
}

.interviewPP_p3 {
    background: url(../images/interview03/interviewPic05.png) no-repeat left top;
    height: 390px;
}

.privateBtn {
    padding: 120px 98px;
}

.privateBtn a p {
    padding-left: 16px;
    color: #0b2a44;
    font-weight: 700;
}

.privateBtn .container a:hover > p {
    color: #F35C22;
}

.privateTop {
    width: 340px;
    height: 70px;
    border: 2px solid #0b2a44;
    margin: 0 auto;
    margin-top: 60px;
    -webkit-transition-property: background;
    transition-property: background;
    transition: all .6s;
    color: #0b2a44;
}

.privateTop a p {
    padding-left: 0;
}

.privateTop:hover{
    color: #fff;
    background: #F35C22;
}

.privateTop p {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    padding-top: 12px;
}

.privateTop .line {
    padding: 2px;
}


/*--business--*/

.secondIntro {
    font-size: 1.8rem;
    text-align: center;
    padding-bottom: 40px;
}

.width1100 {
    width: 1100px;
    margin: 0 auto;
}

section.section.width1100{
    margin-bottom: 130px;
}

@media(max-width:768px) {
    .unTitle {
        padding: 20px 15px;
        font-size: 1.3rem;
    }
    .width1100 {
        width: 100%;
    }
    .secondIntro {
        font-size: 1.3rem;
        text-align: justify;
    }
    .industryPsp {
        width: 100%;
        max-width: 100%;
        height: auto;
        margin-top: 30px;
    }
    .industryPsp2 {
        width: 100%;
        max-width: 100%;
        height: auto;
    }
    section.section.width1100{
        margin-bottom: 60px;
    }
}


/*--infographic--*/

.infoIntro {
    margin-bottom: 130px;
}

.infographics {
    padding: 0 60px;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

.box {
    width: 470px;
    padding-bottom: 80px;
}

div.box:nth-of-type(1) {
    margin-right: 40px;
}

div.box:nth-of-type(3) {
    margin-right: 40px;
}

div.box:nth-of-type(5) {
    margin-right: 40px;
}

div.box:nth-of-type(7) {
    margin-right: 40px;
}

.boxImg img {
    margin: 0 auto;
    padding-top: 80px;
}

.box h2 {
    color: #0068b8;
    font-size: 2.4rem;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 30px;
}

span.bold {
    font-weight: 700;
}

@media(max-width:768px) {
    .infographics {
        padding: 0 20px;
    }
    .box {
        width: 100%;
    }
    div.box:nth-of-type(1) {
        margin: 0 auto;
    }
    .box {
        padding-bottom: 40px;
    }
    .box h2 {
        font-size: 1.5rem;
        margin-top: 20px;
        margin-bottom: 15px;
    }
    .boxImg img {
        padding-top: 40px;
    }
}


/*--recruit--*/

.anchor {
    width: 640px;
    margin: 0 auto;
}

.anchorList {
    width: 100%;
}

.anchorList img {
    margin: 0 auto;
    padding-bottom: 10px;
}

.anchorLi {
    width: 200px;
    text-align: center;
    border-bottom: 1px solid #32485a;
    color: #32485a;
}

.anchorLi:hover{
    border-bottom: 1px solid #F35C22;
}

.anchorLi:last-child {
    margin-right: 0;
}

.anchorList a{
    margin-right: 20px;
    margin: 0 auto;
    margin-top: 60px;
}

.mainArea {
    width: 752px;
    margin: 0 auto;
}

.area1 {
    padding-bottom: 70px;
}

.mainArea h2 {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    padding-bottom: 30px;
    padding-top: 70px;
}

.table {
    width: 100%;
}

.table th,
.table td {
    padding: 20px;
}

.table th {
    font-weight: bold;
    color: #00b86a;
    width: 20%;
    border-right: 5px solid #fff;
}

th,
td {
    border-bottom: 1px dotted #0b2a44;
}

.t_top {
    border-top: 1px solid #0b2a44;
}

.t_bottom {
    border-bottom: 1px solid #0b2a44;
}

.introEx {
    margin-bottom: 30px;
}

.t_top2 {
    border-top: 3px solid #32485a;
}

.tt_top2 {
    border-top: 1px solid #32485a;
}

#intro {
    text-align: center;
    font-size: 1.8rem;
    font-weight: bold;
}

.t_bottom2 {
    border-bottom: 3px solid #32485a;
}

.tt_bottom2 {
    border-bottom: 1px solid #32485a;
}

#recruit3 p:last-child {
    padding-top: 20px;
}

.privateR .privateRimg03 {
    width: 100%;
    height: 390px;
    background: url(../images/interview03/interviewPic05.png) no-repeat left top;
    background-size: cover;
}

@media(max-width:768px){
    .area1{
        padding: 0 15px 30px;
    }
    .table,.table tbody,.table tr,.table td,.table th{
        display: block;
    }
    .table th{
        width: 100%;
    }
    .anchorList a{
    margin-right: 0;
        margin: 0 auto;
    margin-top: 30px;
    }
}


/*--infographic--*/

@media (max-width: 768px) {
    div.box:nth-of-type(3) {
        margin: 0 auto;
    }
    div.boxImg img {
        max-width: 100%;
    }
    div.box:nth-of-type(5) {
        margin: 0 auto;
    }
    div.box:nth-of-type(7) {
        margin: 0 auto;
    }
}


/*--interviewIndex--*/

@media (max-width: 768px) {
    .sectionIndex {
        padding-left: 0px;
    }
    .indexTxt {
        width: 100%;
    }
    .indexImg {
        width: 100%;
    }
    .indexImg img {
        max-width: 100%;
        margin: 0 auto;
    }
    .width1180 {
        padding: 0 15px;
        width: 100%;
    }
    .width1180 a {
        width: 100%;
        max-width: 100%;
        height: auto;
    }
    .spImg {
        margin-top: 20px;
    }
    .spImg img {
        width: 100%;
        max-width: 100%;
        height: auto;
    }
    #indexUnder {
        margin-top: 40px;
    }
    #indexUnder h2 {
        font-size: 1.5rem;
        padding-bottom: 0;
    }
}


/*--interview01--*/

@media (max-width: 768px) {
    .interviewWidth {
        width: 100%;
    }
    .interviewWidth img {
        width: 100%;
    }
    .txtRight {
        width: 100%;
        padding: 0 15px;
    }
    .LRcontentsInner {
        width: 100%;
        padding: 0 15px;
    }
    .txtL {
        width: 100%;
        margin-right: 0;
    }
    .txtR {
        width: 100%;
    }
    .interviewWidth2 .txtL{
        padding: 0 15px;
    }
    .interviewWidth2 .txtR{
        padding: 0 15px;
    }
    .in60 {
        padding-left: 0;
    }
    .in60 .container h2{
        padding: 0 15px;
    }
    .in60 .container p{
        padding: 0 15px;
    }
    .txtLeft {
        width: 100%;
        margin: 0;
    }
    .interviewWidth2 {
        width: 100%;
    }
    .privateBtn {
        padding: 50px 0;
    }
    .privateBtn .container a:nth-of-type(2) {
        margin-top: 20px;
    }
    .privateBtn img {
        width: 100%;
    }
    .privateTop {
        width: 200px;
        height: 45px;
        margin-top: 40px;
    }
    .privateTop a p {
        font-size: 1.2rem;
        padding-top: 6px;
    }
    .privateI {
        width: auto;
        display: block;
        padding: 0 15px;
    }
    .privateT {
        width: auto;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        margin-right: 0;
    }
    .privateTxt {
        width: auto;
        margin-right: 0;
        padding-bottom: 20px;
    }
    .privateImg {
        width: auto;
        margin-left: -20px;
        margin-right: -20px;
    }
    /*
    .private{
        width: 100%;
        height: 469px;
    }
    .privateL {
        width: 100%;
        float: none;
        padding: 25px 15px;
    }
    .privateL .text{
        top: 0;
        right: 0;
        width: 100%;
        padding: 25px 15px;
    }
    .privateR{
        float: none;
        width: 100%;
    }
    
    
    .privateL .text {
        width: 100%;
        height: 100%;
        right: 0;
        top: 0;
        padding: 25px 15px;
    }
    
    
    .privateTop {
        width: 200px;
        height: 45px;
    }

    .privateR {
        position: relative;
        float: none;
        width: 100%;
        height: 100%;
    }

    .privateR .privateRimg01 {
        height: 195px;
    }
*/
}


/*--interview03--*/

@media(max-width:768px) {
    .interviewWidth .container {
        flex-direction: row;
        margin: 25px 0;
    }
    .privateArea h2 {
        font-size: 1.4rem;
        padding-top: 25px;
        margin-bottom: 10px;
    }
    .txtRight h2 {
        margin-bottom: 20px;
    }
    .LRcontents {
        margin-top: 35px;
        margin-bottom: 40px;
    }
    .interviewWidth .interviewContents .container img{
        width: 362px;
        max-width: 100%;
        margin: 0 auto;
    }
}


/*--recruit--*/

@media (max-width: 768px) {
    .anchor {
        width: 100%;
    }
    .anchor .container {
        -ms-flex-wrap: nowrap;
        -webkit-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }
    .mainArea {
        width: 100%;
    }
    .mainArea h2 {
        font-size: 1.5rem;
        padding-bottom: 20px;
        padding-top: 40px;
    }
    .infoIntro{
        margin-bottom: 60px;
    }
}
