@charset "UTF-8";
/**
 * ======================================================
 * modified.css
 * 2019-09-06 
 * mobile breakepoint is "@media (max-width: 640px) {}"
 * ======================================================
 */

/**
 * ======================================================
 * ------------------------------------------------------
 * ------------ shared section --------------------------
 * ------------------------------------------------------
 * ====================================================== 
 */
/**
 * ======================================================
 * layout
 * ====================================================== 
 */
.containerStyle1{padding: 0;}
.containerStyle2{padding: 0 20px 0;}
/*
 * =====================================================
 * align
 * =====================================================
 */
.leftAdjust{text-align: left;}
.centerAdjust{text-align: center;}
.centerAdjustPC{text-align: center;}
.rightAdjust{text-align: right;}
.rightAdjustPC{text-align: right;}
/*
 * =====================================================
 * return
 * =====================================================
 */
br.sp{
	display: none;
}
/**
 * ======================================================
 * bgStyle
 * ====================================================== 
 */
.bgStyle1{background-color: #003F98;}
.bgStyle2{background-color: #FFF100;}
.bgStyle3{background-color: #7B869D;}
.bgStyle4{background-color: #B7CBE6;}
.bgGrayStyle1{background-color: #F2F2F2;}
.bgGrayStyle2{background-color: #808080;}
.bgColorClear{background-color: transparent;}
/**
 * ======================================================
 * fontStyle
 * ====================================================== 
 */
.fontStyle1{color: #003F98;}
.fontStyle2{color: #FFF100;}
.fontWhite{color: #ffffff;}
/**
 * ======================================================
 * catchStyle
 * ====================================================== 
 */
.catchStyle1,
.catchStyle2,
.catchStyle3,
.catchStyle4,
.catchStyle5{font-weight: bold;line-height: 1.3;}
.catchStyle1{font-size: 32px;}
.catchStyle2{font-size: 26px;}
.catchStyle3{font-size: 20px;}
.catchStyle4{font-size: 18px;}
.catchStyle5{font-size: 16px;}
/**
 * ======================================================
 * titleStyle
 * ====================================================== 
 */
.titleStyle1 {background:#64758D;font-size:18px;color:#fff;padding:10px 10px 10px 40px; position: relative;line-height: 24px;margin:0 0 30px;font-weight: bold;}
.titleStyle1:before {content:""; width:7px;height: 20px; position: absolute;left:20px;top:50%;margin-top:-10px;display: block;background:#003F8F; }
.titleStyle1 em {display: inline-block;background:#000;padding:0 8px;font-size:11px;line-height: 24px;margin:0 10px 0 0;vertical-align: top;font-weight: bold;}

/**
 * ======================================================
 * textStyle
 * ====================================================== 
 */
.textStyle1{font-size: 110%;}
.textStyle2{font-size: 100%;}
.textStyle3{font-size: 93%;}
/**
 * ======================================================
 * images
 * ====================================================== 
 */
.fullScreen,
.imgOnly{line-height: 0;} 
.fullScreen > img{width: 100%;max-width: auto !important;}
/*
 * =====================================================
 * 下部マージン
 * =====================================================
 */
.mb10{margin-bottom: 10px;}
.mb20{margin-bottom: 20px;}
.mb30{margin-bottom: 30px;}
.mb40{margin-bottom: 40px;}
.mb50{margin-bottom: 50px;}
.mb60{margin-bottom: 60px;}
.mb70{margin-bottom: 70px;}
.mb80{margin-bottom: 80px;}
.mb90{margin-bottom: 90px;}
.mb100{margin-bottom: 100px;}
.mb120{margin-bottom: 120px;}
.mb150{margin-bottom: 150px;}
.mb200{margin-bottom: 200px;}
.mb1em{margin-bottom: 1em;}
.mb1hem{margin-bottom: 1.5em;}
.mb2em{margin-bottom: 2em;}
/*
 * =====================================================
 * flex box
 * =====================================================
 */	
.flexBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.flexBox.spaceBetween{
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.flexBox.spaceAround{
	-ms-flex-pack: distribute;
	justify-content: space-around;
}
  
.flexBox.wrap {
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.flexBox.alignCenter{
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
/**
 * ======================================================
 * pageHeader
 * ====================================================== 
 */
.pageHeader{margin-bottom: 30px;}

/**
 * ======================================================
 * pageNav
 * ====================================================== 
 */
.pageNavStyle1 li{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.pageNavStyle1 li a{
    box-sizing: border-box;
    text-align: center;
    background-color: #7B869D;
    color: #fff;
    padding-top: 1em;
    position: relative;
    padding-bottom: 30px;
    padding-left: 0.5em;
    padding-right: 0.5em;
    width: 100%;
    display: block;
    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;
}
.pageNavStyle1 li a::after{
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    border: 2px solid;
    border-color:  transparent transparent #fff #fff;
    transform: rotate(-45deg);
    position: absolute;
    bottom: 12px;;
    left: 0;
    right: 0;
    margin: 0 auto;
}

/*
 * =====================================================
 * hoverAct
 * =====================================================
 */
.hoverActStyle1{
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
    text-decoration: none;
}
.hoverActStyle1:hover{
    text-decoration: none;
	filter:alpha(opacity=60);
	-moz-opacity: 0.6;
	opacity: 0.6;
}
/**
 * ======================================================
 * box style
 * ====================================================== 
 */
.boxStyle1{
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;   
}
.boxStyle1Upper{
    border-radius: 10px 10px 0 0;
    -webkit-border-radius: 10px 10px 0 0;
    -moz-border-radius: 10px 10px 0 0; 
}
/**
 * ======================================================
 * button style
 * ====================================================== 
 */
.buttonStyle1{
    box-sizing: border-box;
    text-decoration: none;
    background-color: #FFF100;
    color: #1A1A1A;
    font-weight: bold;
    font-size: 18px;
    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;
    height: 100px;
    border-radius: 5px; 
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    box-shadow: 0 3px #1A1A1A;
    width: 90%;
    max-width: 350px;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}
.buttonStyle1 > span{
    box-sizing: border-box;
    display: block;
    padding-bottom: 10px;
    line-height: 1.2;
    padding-top: 0.5em;
    padding-left: 0.5em;
}
.buttonStyle1::before{
    content: "";
    display: block;
    background-image: url("../img/common/ico_btn_arrow1.png");
    background-repeat: no-repeat;
    background-position: 0,0;
    background-size: contain;
    width: 31px;
    height: 31px;
}
.buttonStyle1:hover{
    text-decoration: none;
	filter:alpha(opacity=60);
	-moz-opacity: 0.6;
	opacity: 0.6;
}

/**
 * ======================================================
 * topicPath
 * ====================================================== 
 */
.topicPath ul li::before{
    content: '>';
    display: inline-block;
    padding-right: 0.2em;
    padding-left: 0.1em;
}
.topicPath ul li:first-child::before{
    display: none;
}
/**
 * ======================================================
 * leadText
 * ====================================================== 
 */
.leadText {
    text-align: center;
}
.leadText::before {
    content:"";
    display: inline-block;
    width:2px;
    height: 50px;
    background:#000;
    transform: rotate(-20deg);
}
.leadText::after {
    content:"";
    display: inline-block;
    width:2px;
    height: 50px;
    background:#000;
    transform: rotate(20deg);
}
.leadText span{
    display: inline-block;
    padding-left: 0.8em;
    padding-right: 0.8em;
    transform: translateY(-1em);
}
/**
 * ======================================================
 * regist Internship
 * ====================================================== 
 */
.registInternship{
    margin-bottom: 30px;
}
.registInternship .buttonStyle1{
    margin-left: auto;
    margin-right: auto;
}
.buttonContainer{
    text-align: center;
    margin: 50px 0;
}
.buttonContainer a{
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    text-decoration: none;
}
.buttonContainer a:hover img{
	filter:alpha(opacity=60);
	-moz-opacity: 0.6;
	opacity: 0.6;
}
    
/**
 * ======================================================
 * ------------------------------------------------------
 * ------------ pages --------------------------
 * ------------------------------------------------------
 * ====================================================== 
 */
/**
 * ======================================================
 * internship
 * ====================================================== 
 */
#internship{}
#internship #introduction dl,
#entry #introduction dl{
    width: 48%;
    margin-bottom: 30px;
}
#internship #introduction dl dt,
#entry #introduction dl dt{
    width: 30%;
}
#internship #introduction dl dt span,
#entry #introduction dl dt span{display: block;text-align: center;width: 100%;}
#internship #introduction dl dd,
#entry #introduction dl dd{
    width: 70%;
    padding: 1em;
}
#internship #pageNav ul li{
    width: 32%;
}
#internship .internshipType{
    margin-bottom: 30px;
}
#internship .internshipType h3{
    background-image: url("../img/common/ico_squirrel01.png");
    background-repeat: no-repeat;
    background-position: 8px center;
    min-height: 94px;
    color: #fff;
    padding-left: 100px;
    -ms-flex-line-pack: center;
    align-content: center;
}
#internship .internshipType h3 span{
    font-size: 20px;
    display: inline-block;
    padding-left: 0.5em;
    transform: translateY(15%);
}
#internship .course > li{
    padding: 1em 170px 1em 2em;
    box-sizing: border-box;
    background-image: url("../img/internship/img_internship_fig02.png");
    background-position: 98% center;
    background-repeat: no-repeat;
    background-size: auto 150px;
    min-height: 170px;
}
#internship .course > li:nth-child(2){background-image: url("../img/internship/img_internship_fig03.png"); }
#internship .course > li:nth-child(3){background-image: url("../img/internship/img_internship_fig04.png"); }
#internship .course > li:nth-child(4){background-image: url("../img/internship/img_internship_fig01.png"); }

#internship .course > li h4{
    box-sizing: border-box;
    position: relative;
    padding-left: 1.5em;
    font-size: 30px;
    min-height: 1.5em;
    line-height: 1.2;
    margin-bottom: 10px;
}

#internship .course > li .mark{
    box-sizing: border-box;
    display: block;
    background-color: #003F98;
    color: #fff;
    width: 1.3em;
    height: 1.3em;
    text-align: center;
    font-size: 30px;
    line-height: 1;
    padding-top:0.1em;
    border-radius: 50%; 
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    position: absolute;
    top:0;
    left: 0;
}
#internship .internshipType .addPoint{
    box-sizing: border-box;
    padding: 1.5em;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}
#internship .internshipType .addPoint li{
    margin-bottom: 0.5em;
}
#internship .internshipType .detail{
    font-size: 100%;
}
#internship .internshipType .detail dt,
#internship .internshipType .detail dd{
    margin-bottom: 5px;
    padding-top: 0.5em;
    padding-bottom: 0.3em;
}
#internship .internshipType .detail dt{
    box-sizing: border-box;
    width: 20%;
    background-color: #808080;
    font-weight: bold;
    color: #fff;
    padding-left: 1em;
    padding-right: 1em;
}
#internship .internshipType .detail dd{
    box-sizing: border-box;
    width: 80%;
    background-color: #F2F2F2;
    padding-left: 1em;
    padding-right: 1em;
}
#internship .courseOne > li{
    padding: 1em 2em;
    box-sizing: border-box;
}
#internship .courseOne > li h4{
    box-sizing: border-box;
    position: relative;
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 10px;
    font-weight: bold;
}
/**
 * ======================================================
 * detailedStrengths
 * ====================================================== 
 */
#detailedStrengths .strengthsList li{
    box-sizing: border-box;
    padding-top: 1.5em;
    padding-left: 1em;
    padding-right: 1em;
    padding-bottom: 30%;
    width: 32%;
    margin-bottom: 10px;
    background-image: url("../img/strengths/img_strengths_fig01.png");
    background-repeat: no-repeat;
    background-position: center 93%;
    background-size: 80% auto;
}
#detailedStrengths .strengthsList li h3{
    line-height: 0;
    text-align: center;
    width: 62.5%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
    
}
#detailedStrengths .strengthsList li h3 img{
    width: 100%;
    max-width: 185px;
}
#detailedStrengths .strengthsList li:nth-child(2){background-image: url("../img/strengths/img_strengths_fig02.png");}
#detailedStrengths .strengthsList li:nth-child(3){background-image: url("../img/strengths/img_strengths_fig03.png");}
#detailedStrengths .strengthsList li:nth-child(4){background-image: url("../img/strengths/img_strengths_fig04.png");}
#detailedStrengths .strengthsList li:nth-child(5){background-image: url("../img/strengths/img_strengths_fig05.png");}
#detailedStrengths .strengthsList li:nth-child(6){background-image: url("../img/strengths/img_strengths_fig06.png");}
#detailedStrengths .strengthsList li:nth-child(7){background-image: url("../img/strengths/img_strengths_fig07.png");}
#detailedStrengths .strengthsList li:nth-child(8){background-image: url("../img/strengths/img_strengths_fig08.png");}
#detailedStrengths .strengthsList li:nth-child(9){background-image: url("../img/strengths/img_strengths_fig09.png");}

/**
 * ======================================================
 * businessDescription
 * ====================================================== 
 */
#businessDescription .jobTypes > li{
    overflow: hidden;
    width: 48%;
    margin-bottom: 20px;
}
#businessDescription .jobTypes > li .titleWrap{
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    box-sizing: border-box;

}
#businessDescription .jobTypes > li h3{
    box-sizing: border-box;
    width: 100%;
    background-color: #668CC1;
    color: #fff;
    background-image: url("../img/description/ico_description_face01.png");
    background-repeat: no-repeat;
    background-position: 3% 10px;
    background-size: 101px auto;
    min-height: 121px;
    padding-left: 130px;
    padding-right: 1em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    /* align-items:center; */
    /* position: relative; */
}
/* #businessDescription .jobTypes > li h3::before{
    content: '';
    display: block;
    width: 100px;
    height: 100px;
    background-image: url("../img/description/ico_description_face01.png");
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: cover;
    position: absolute;
    top:0;
    left: 0;
} */
#businessDescription .jobTypes > li h3 span{display: block;}
#businessDescription .jobTypes > li h3 span.sub{
    padding-top: 5px;
}
#businessDescription .jobTypes .interview{
    padding-top: 20px;
    padding-bottom: 10px;
}
#businessDescription .jobTypes > li .interview dl dt{
    text-align: right;
    background-image: url("../img/description/ico_description_fig01.png");
    background-repeat: no-repeat;
    background-position: 96% top;
    background-size: 51px auto;
    padding-right: calc(10% + 51px);
    margin-bottom: 10px;
}
#businessDescription .jobTypes > li .interview dl dt span{
    display: inline-block;
    background-color: #FFF100;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    font-size: 100%;
    padding: 1em;
    position: relative;
    text-align: center;
    margin-left: 0.5em;
}
#businessDescription .jobTypes > li .interview dl dt span::before{
    display: block;
    content: "";
    border-top: 30px solid #FFF100;
    border-right: 30px solid transparent;
    width: 0;
    position: absolute;
    top:8px; ;
    right: 0;
    margin-right: -15px;
}
#businessDescription .jobTypes > li .interview dl dd{

    margin-bottom: 10px;
    
    position: relative;

}
#businessDescription .jobTypes > li .interview dl dd p{
    box-sizing: border-box;
    background-color: #fff;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    width: 87%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
    padding: 1em;
}
#businessDescription .jobTypes > li .interview dl dd::before{
    display: block;
    content: "";
    border-top: 30px solid #fff;
    border-left: 30px solid transparent;
    width: 0;
    position: absolute;
    top:8px; ;
    left: 2%;
    z-index: 1;
}
#businessDescription .jobTypes > li .interview dl.rewarding dd p{
    background-color: #003F98;
    color: #fff;
}
#businessDescription .jobTypes > li .interview dl.rewarding dd::before{
    border-top-color: #003F98;
}
#businessDescription .jobTypes > li#jobType02 h3{background-image: url("../img/description/ico_description_face02.png");}
#businessDescription .jobTypes > li#jobType03 h3{background-image: url("../img/description/ico_description_face03.png");}
#businessDescription .jobTypes > li#jobType04 h3{background-image: url("../img/description/ico_description_face04.png");}
#businessDescription .jobTypes > li#jobType05 h3{background-image: url("../img/description/ico_description_face05.png");}
#businessDescription .jobTypes > li#jobType06 h3{background-image: url("../img/description/ico_description_face06.png");}
#businessDescription .jobTypes > li#jobType07 h3{background-image: url("../img/description/ico_description_face07.png");}
#businessDescription .jobTypes > li#jobType08 h3{background-image: url("../img/description/ico_description_face08.png");}

/**
 * ======================================================
 * field
 * ====================================================== 
 */
#field #pageNavPC > p span{
    display: inline-block;
    padding: 0.5em;
}
#field #pageNavPC > p span img{
    display: inline-block;
    margin-right: 0.3em;
}
#field #pageNavPC ul{
    width: 720px;
    height: 584px;
    margin-left: auto;
    margin-right: auto;
    background-image: url("../img/field/img_field_map.png");
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: cover;
    position: relative;
}
#field #pageNavPC ul li{
    width: 42px;
    height: 50px;
    position: absolute;
    left: 0;
    top: 0;
}
#field #pageNavPC ul li .pointerWrap{
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
}
#field #pageNavPC ul li .off,
#field #pageNavPC ul li .on{
    display: block;
}
#field #pageNavPC ul li .off{
    z-index: 1;
    position: relative;
}
#field #pageNavPC ul li .on{
    display: none;
    z-index: 2;
    position: absolute;
    left: 0;
    bottom: 0; 
    transform: translateX(-18px);
}
#field #pageNavPC ul li#pointer01{left:88px;top:18px;}
#field #pageNavPC ul li#pointer02{left:75px;top:143px;}
#field #pageNavPC ul li#pointer03{left:265px;top:0px;}
#field #pageNavPC ul li#pointer04{left:339px;top:30px;}
#field #pageNavPC ul li#pointer05{left:543px;top:370px;}
#field #pageNavPC ul li#pointer06{left:383px;top:75px;}
#field #pageNavPC ul li#pointer07{left:415px;top:290px;}
#field #pageNavPC ul li#pointer08{left:193px;top:220px;}
#field #pageNavPC ul li#pointer09{left:312px;top:250px;}
#field #pageNavPC ul li#pointer10{left:665px;top:230px;}
#field #pageNavPC ul li#pointer11{left:115px;top:233px;}
#field #pageNavPC ul li#pointer12{left:213px;top:78px;}
#field #pageNavPC ul li#pointer13{left:290px;top:65px;}
#field #pageNavPC ul li#pointer14{left:208px;top:385px;}

#field .fieldItem{
    margin-bottom: 30px;
}
#field .fieldItem h3{
    padding: 0.5em 1em;
}
#field .fieldItem p.photo{
    width: 41%;
    height: 0;
    padding-top: 25%;
    overflow: hidden;
    position: relative;
}
#field .fieldItem p.photo img{
    position: absolute;
    left: 0;
    top: 0;
}

#field .fieldItem ul{
    width: 57%;
}
#field .fieldItem ul li h4{
    box-sizing: border-box;
    background-color: #333;
    color: #fff;
    padding: 0.5em 1em;
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 14px;
}
#field .fieldItem ul li dl{
    margin-bottom: 7px;
}
#field .fieldItem ul li dl dt,
#field .fieldItem ul li dl dd{
    box-sizing: border-box;
    padding: 0.3em 1em;
    line-height: 1.3;
    border-bottom: 3px #fff solid;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
#field .fieldItem ul li dl dt{
    width: 40%;
    background-color: #808080;
    color: #fff;
}
#field .fieldItem ul li dl dd{
    width: 60%;
    background-color: #f2f2f2;
    border-left:3px #fff solid;
}
/**
 * ======================================================
 * entry
 * ====================================================== 
 */
#entry .tableInternship tr{
    border-bottom: 1px #000 dotted;
}
#entry .tableInternship tr:last-child{
    border-bottom: none;
}
#entry .tableInternship tr td{
    background-color: #fff !important;
}
/**
 * ======================================================
 * ------------------------------------------------------
 * ------------ responsive --------------------------
 * ------------------------------------------------------
 * ====================================================== 
 */
@media (max-width: 640px) {
/**
 * ======================================================
 * for ios bug
 * ====================================================== 
 */
#sp_header {
    -webkit-transition: unset !important;  
    -moz-transition: unset !important;  
    -o-transition: unset !important;  
    transition: unset !important; 
	-webkit-overflow-scrolling: auto !important; 
}
#sp_header.active { 
    -webkit-transition: unset !important;  
    -moz-transition: unset !important;  
    -o-transition: unset !important;  
    transition: unset !important; 
	-webkit-overflow-scrolling: auto !important;  
}
/**
 * ======================================================
 * layout
 * ====================================================== 
 */
    .containerStyle2{padding: 0 3% 0;}

/**
 * ======================================================
 * return
 * ====================================================== 
 */
br.sp{
    display: inline;
}
/**
 * ======================================================
 * catchStyle
 * ====================================================== 
 */
.catchStyle1,
.catchStyle2,
.catchStyle3,
.catchStyle4,
.catchStyle5{font-weight: bold;line-height: 1.3;}
.catchStyle1{font-size: 30px;}
.catchStyle2{font-size: 22px;}
.catchStyle3{font-size: 18px;}
.catchStyle4{font-size: 16px;}
.catchStyle5{font-size: 14px;}
/**
 * ======================================================
 * topmenu
 * ====================================================== 
 */
/* .topmenu li.noMark a p { font-size:120%; padding-top:2%; padding-bottom:2%;}  */

/**
 * ======================================================
 * pageNav
 * ====================================================== 
 */
.pageNavStyle1 li a{
    padding-top: 1.5em;
    padding-bottom: 40px;;
}
.pageNavStyle1 li a::after{
    bottom: 18px;
}
/* .pageNavStyle1 li{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.pageNavStyle1 li a{
    box-sizing: border-box;
    text-align: center;
    background-color: #7B869D;
    color: #fff;
    padding-top: 1em;
    position: relative;
    padding-bottom: 30px;
    padding-left: 0.5em;
    padding-right: 0.5em;
    width: 100%;
    display: block;
    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;
}
.pageNavStyle1 li a::after{
    content: "";
    display: block;
    width: 12px;
    height: 12px;
    border: 2px solid;
    border-color:  transparent transparent #fff #fff;
    transform: rotate(-45deg);
    position: absolute;
    bottom: 12px;;
    left: 0;
    right: 0;
    margin: 0 auto;
} */

/**
 * ======================================================
 * internship
 * ====================================================== 
 */
#internship #introduction,
#entry #introduction{
    margin-bottom: 20px;
}
#internship #introduction dl,
#entry #introduction dl{
    width: 100%;
    margin-bottom: 10px;
}
#internship .internshipType h3{
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
#internship .internshipType h3 em{
    width: 100%;
    margin: 0;
	
}
#internship .internshipType h3 span{
    font-size: 20px;
    display: inline-block;
    padding-left: 0;
    transform: none;
}

#internship .course > li{
    padding: 1em 3% 90% 3%;
    box-sizing: border-box;
    background-image: url("../img/internship/img_internship_fig01.png");
    background-position: center 95%;
    background-repeat: no-repeat;
    background-size: 85% auto;
    min-height: 170px;
}
#internship .internshipType .detail dt,
#internship .internshipType .detail dd{
    margin-bottom: 0;
    padding-top: 0.5em;
    padding-bottom: 0.3em;
    width: 100%;
}

/* #internship{}
#internship #introduction dl{
    width: 48%;
    margin-bottom: 30px;
}
#internship #introduction dl dt{
    width: 30%;
}
#internship #introduction dl dt span{display: block;text-align: center;width: 100%;}
#internship #introduction dl dd{
    width: 70%;
    padding: 1em;
}
#internship #pageNav ul li{
    width: 32%;
}
#internship .internshipType{
    margin-bottom: 30px;
}
#internship .internshipType h3{
    background-image: url("../img/common/ico_squirrel01.png");
    background-repeat: no-repeat;
    background-position: 8px center;
    min-height: 94px;
    color: #fff;
    padding-left: 100px;
}
#internship .internshipType h3 span{
    font-size: 20px;
    display: inline-block;
    padding-left: 0.5em;
    transform: translateY(15%);
}

#internship .course > li:nth-child(2){background-image: url("../img/internship/img_internship_fig02.png"); }
#internship .course > li:nth-child(3){background-image: url("../img/internship/img_internship_fig03.png"); }
#internship .course > li:nth-child(4){background-image: url("../img/internship/img_internship_fig04.png"); }

#internship .course > li h4{
    box-sizing: border-box;
    position: relative;
    padding-left: 1.5em;
    font-size: 30px;
    min-height: 1.5em;
    line-height: 1.2;
    margin-bottom: 10px;
}

#internship .course > li .mark{
    box-sizing: border-box;
    display: block;
    background-color: #003F98;
    color: #fff;
    width: 1.3em;
    height: 1.3em;
    text-align: center;
    font-size: 30px;
    line-height: 1;
    padding-top:0.1em;
    border-radius: 50%; 
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    position: absolute;
    top:0;
    left: 0;
}
#internship .internshipType .addPoint{
    box-sizing: border-box;
    padding: 1.5em;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}
#internship .internshipType .addPoint li{
    margin-bottom: 0.5em;
}
#internship .internshipType .detail{
    font-size: 120%;
}
#internship .internshipType .detail dt,
#internship .internshipType .detail dd{
    margin-bottom: 5px;
    padding-top: 0.5em;
    padding-bottom: 0.3em;
}
#internship .internshipType .detail dt{
    box-sizing: border-box;
    width: 20%;
    background-color: #808080;
    font-weight: bold;
    color: #fff;
    padding-left: 1em;
    padding-right: 1em;
}
#internship .internshipType .detail dd{
    box-sizing: border-box;
    width: 80%;
    background-color: #F2F2F2;
    padding-left: 1em;
    padding-right: 1em;
}
#internship .courseOne > li{
    padding: 1em 2em;
    box-sizing: border-box;
}
#internship .courseOne > li h4{
    box-sizing: border-box;
    position: relative;
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 10px;
} */

/**
 * ======================================================
 * businessDescription
 * ====================================================== 
 */
#businessDescription #pageNav li{
    width: 33%;
    margin-bottom: 3px;
}
#businessDescription .jobTypes > li{
    width: 100%;
}

/* 
#businessDescription .jobTypes > li h3{
    box-sizing: border-box;
    background-color: #668CC1;
    color: #fff;
    background-image: url("../img/description/ico_description_face01.png");
    background-repeat: no-repeat;
    background-position: 3% 10px;
    background-size: 101px auto;
    min-height: 121px;
    padding-left: 130px;
    padding-right: 1em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
#businessDescription .jobTypes > li h3 span.sub{
    padding-top: 5px;
}
#businessDescription .jobTypes .interview{
    padding-top: 20px;
    padding-bottom: 10px;
}
#businessDescription .jobTypes > li .interview dl dt{
    text-align: right;
    background-image: url("../img/description/ico_description_fig01.png");
    background-repeat: no-repeat;
    background-position: 96% top;
    background-size: 51px auto;
    padding-right: calc(10% + 51px);
    margin-bottom: 10px;
}
#businessDescription .jobTypes > li .interview dl dt span{
    display: inline-block;
    background-color: #FFF100;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    font-size: 100%;
    padding: 1em;
    position: relative;
}
#businessDescription .jobTypes > li .interview dl dt span::before{
    display: block;
    content: "";
    border-top: 30px solid #FFF100;
    border-right: 30px solid transparent;
    width: 0;
    position: absolute;
    top:8px; ;
    right: 0;
    margin-right: -15px;
}
#businessDescription .jobTypes > li .interview dl dd{

    margin-bottom: 10px;
    
    position: relative;

}
#businessDescription .jobTypes > li .interview dl dd p{
    box-sizing: border-box;
    background-color: #fff;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    width: 87%;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
    padding: 1em;
}
#businessDescription .jobTypes > li .interview dl dd::before{
    display: block;
    content: "";
    border-top: 30px solid #fff;
    border-left: 30px solid transparent;
    width: 0;
    position: absolute;
    top:8px; ;
    left: 2%;
    z-index: 1;
}
#businessDescription .jobTypes > li .interview dl.rewarding dd p{
    background-color: #003F98;
    color: #fff;
}
#businessDescription .jobTypes > li .interview dl.rewarding dd::before{
    border-top-color: #003F98;
}
#businessDescription .jobTypes > li#jobType02 h3{background-image: url("../img/description/ico_description_face02.png");}
#businessDescription .jobTypes > li#jobType03 h3{background-image: url("../img/description/ico_description_face03.png");}
#businessDescription .jobTypes > li#jobType04 h3{background-image: url("../img/description/ico_description_face04.png");}
#businessDescription .jobTypes > li#jobType05 h3{background-image: url("../img/description/ico_description_face05.png");}
#businessDescription .jobTypes > li#jobType06 h3{background-image: url("../img/description/ico_description_face06.png");}
#businessDescription .jobTypes > li#jobType07 h3{background-image: url("../img/description/ico_description_face07.png");}
#businessDescription .jobTypes > li#jobType08 h3{background-image: url("../img/description/ico_description_face08.png");} */

/**
 * ======================================================
 * detailedStrengths
 * ====================================================== 
 */
#detailedStrengths .strengthsList li{
    width: 100%;
    padding-bottom: 75vw;
    background-size: 70% auto;
}
#detailedStrengths .strengthsList li h3{
    width: 70%;
    margin-bottom: 20px;
}
#detailedStrengths .strengthsList li h3 img{
    max-width: 100%;
}
/* #detailedStrengths .strengthsList li{
    box-sizing: border-box;
    padding-top: 1.5em;
    padding-left: 1em;
    padding-right: 1em;
    padding-bottom: 30%;
    width: 32%;
    margin-bottom: 10px;
    background-image: url("../img/strengths/img_strengths_fig01.png");
    background-repeat: no-repeat;
    background-position: center 93%;
    background-size: 80% auto;
}
#detailedStrengths .strengthsList li h3{
    line-height: 0;
    text-align: center;
    margin-bottom: 10px;
}
#detailedStrengths .strengthsList li:nth-child(2){background-image: url("../img/strengths/img_strengths_fig02.png");}
#detailedStrengths .strengthsList li:nth-child(3){background-image: url("../img/strengths/img_strengths_fig03.png");}
#detailedStrengths .strengthsList li:nth-child(4){background-image: url("../img/strengths/img_strengths_fig04.png");}
#detailedStrengths .strengthsList li:nth-child(5){background-image: url("../img/strengths/img_strengths_fig05.png");}
#detailedStrengths .strengthsList li:nth-child(6){background-image: url("../img/strengths/img_strengths_fig06.png");}
#detailedStrengths .strengthsList li:nth-child(7){background-image: url("../img/strengths/img_strengths_fig07.png");}
#detailedStrengths .strengthsList li:nth-child(8){background-image: url("../img/strengths/img_strengths_fig08.png");}
#detailedStrengths .strengthsList li:nth-child(9){background-image: url("../img/strengths/img_strengths_fig09.png");} */


/**
 * ======================================================
 * field
 * ====================================================== 
 */
#field #pageNavSP{
    margin-bottom: 30px;
}
#field #pageNavSP li{
    width: 33%;
    margin-bottom: 3px;
}
#field .fieldItem p.photo{
    width: 100%;
    padding-top: 61%;
    margin-bottom: 10px;
}
#field .fieldItem ul{
    width: 100%;
}
#field .fieldItem ul li dl dt,
#field .fieldItem ul li dl dd{
    border-bottom: none;
    /* box-sizing: border-box;
    padding: 0.3em 1em;
    line-height: 1.3;
    border-bottom: 3px #fff solid;
    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;
}
#field .fieldItem ul li dl dt{
    width: 100%;
    /* background-color: #808080;
    color: #fff; */
    text-align: center;
}
#field .fieldItem ul li dl dd{
    width: 100%;
    /* background-color: #f2f2f2;
    border-left:3px #fff solid; */
    border-left:none;
} 
/*

#field .fieldItem{
    margin-bottom: 30px;
}
#field .fieldItem h3{
    padding: 0.5em 1em;
}

#field .fieldItem ul li h4{
    box-sizing: border-box;
    background-color: #333;
    color: #fff;
    padding: 0.5em 1em;
    margin-bottom: 5px;
}
#field .fieldItem ul li dl{
    margin-bottom: 7px;
}
#field .fieldItem ul li dl dt,
#field .fieldItem ul li dl dd{
    box-sizing: border-box;
    padding: 0.3em 1em;
    line-height: 1.3;
    border-bottom: 3px #fff solid;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
#field .fieldItem ul li dl dt{
    width: 40%;
    background-color: #808080;
    color: #fff;
}
#field .fieldItem ul li dl dd{
    width: 60%;
    background-color: #f2f2f2;
    border-left:3px #fff solid;
} */

}