/* homeBanner start */
#homeBanner {
    position: relative;
}

#homeBanner img {
    width: 100%;
	height:auto;
}

#homeBanner .banCon {
    width: 33.8vw;
    position: absolute;
    top: 72px;
    right: 12.7vw;
}

#homeBanner .banCon h1 {
    font-size: 2.3958vw;
    color: #1E9CDA;
    margin: 0 0 1.4583vw;
}
#homeBanner .banCon .title_cn h1 {
    font-size: 2.25vw;
    color: #1E9CDA;
    margin: 0 0 1.4583vw;
}

#homeBanner .banCon p {
    font-size: 1.25vw;
    color: #1E9CDA;
    line-height: 1.75;
    margin: 0 0 2.5vw;
}

#homeBanner ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#homeBanner ul li {
    width: calc((100% - 18px) / 2);
}

#homeBanner ul li:first-of-type {
    width: 100%;
    margin: 0 0 28px;
}

#homeBanner ul a {
    width: 100%;
    height: 3.229vw;
    background: #fff;
    border: 1px solid #006EA4;
    line-height: 3.229vw;
    text-align: center;
    font-size: 1.1458vw;
}

#homeBanner ul a:hover {
    background: linear-gradient(90deg, #3BA1E7 0%, #3BA1E7 12%, #ACDEF1 100%);
    color: #fff;
    border: none;
}

@media (max-width: 767px) {
    #homeBanner {
        margin: 0;
    }

    #homeBanner .banCon {
        top: 19px;
        width: calc(100% - 32px);
        left: 16px;
        right: auto;
    }

    #homeBanner .banCon h1 {
        font-size: 18px;
        line-height: 26px;
        margin: 0 0 4px;
        text-align: center;
    }

    #homeBanner .banCon p {
        font-size: 14px;
        line-height: 22px;
        margin: 0 0 48px;
        letter-spacing: 1px;
    }

    #homeBanner ul {
        padding: 18px 16px 4px;
    }

    #homeBanner ul li {
        width: calc((100% - 16px) / 2);
    }

    #homeBanner ul li:first-of-type {
        margin: 0 0 12px;
    }

    #homeBanner ul a {
        height: 36px;
        line-height: 36px;
        font-size: 14px;
    }
}

/* homeBanner end */
/* homeNews start */
.homenewsCon {
    display: flex;
    padding: 50px 0 126px;
}

.homenewsCon dl.left {
    width: 360px;
    flex-shrink: 0;
    margin-right: 3.854vw;
}

.homenewsCon dl.left dd {
    border-top: 1px solid #ECEDF5;
}

.homenewsCon dl.left dd a {
    border-bottom: 1px solid #ECEDF5;
    display: flex;
    padding: 40px 0;
}

.homenewsCon dl.left dd a:hover {
    opacity: .8;
}

.homenewsCon dl.left dd a .img {
    width: 68px;
    height: 68px;
    display: flex;
    flex-shrink: 0;
    margin-right: 16px;
}

.homenewsCon dl.left dd a .img img {
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.homenewsCon dl.left dd a div:not(.img) p {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    margin-top: 12px;
}

.homenewsCon dl.right {
    flex: 1;
}

.homenewsCon dl.right dd {
    background-color: #F8F9FB;
    margin-bottom: 10px;
    margin-left: 12px;
    padding: 22px 16px 12px 16px;
    position: relative;
}

.homenewsCon dl.right dd:hover {
    opacity: .8;
}

.homenewsCon dl.right dd a {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.homenewsCon dl.right dd>p {
    font-weight: 500;
    color: #454545;
    line-height: 1.5;
}

.homenewsCon dl.right dd>div {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.homenewsCon dl.right dd>div .time {
    width: 131px;
    height: 35px;
    border-radius: 4px;
    text-align: center;
    margin-bottom: 20px;
    background: linear-gradient(to top right, #3BA1E7 0%, #40A4E7 10%, #ACDEF1 90%, #ACDEF1 100%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 18px 0 16px;
    font-size: 24px;
    font-weight: 500;
}

.homenewsCon dl.right dd>div .time span {
    font-size: 12px;
}

.homenewsCon dl.right dd>div strong.status {
    min-height: 30px;
}

.homenewsCon dt {
    width: 100%;
    padding-bottom: 17px;
}

.homenewsCon dt h2 {
    font-size: 18px;
    font-weight: 500;
    color: #1B91DB;
}

.homenewsCon dt .more {
    width: 100%;
    text-align: right;
}

.homenewsCon dt .more a {
    line-height: 19px;
    padding-right: 18px;
    position: relative;
}

.homenewsCon dt .more a::after {
    content: "";
    width: 6px;
    height: 6px;
    background: url(../images/icon_more-arrow-right.svg) no-repeat;
    background-size: 6px 6px;
    background-position: center;
    position: absolute;
    top: calc(50% - 2px);
    right: 0;
}

.homenewsCon dd {
    width: 100%;
}

@media (max-width: 767px) {
    .homenewsCon {
        flex-direction: column;
        padding: 16px 0 16px;
    }

    .homenewsCon dl.left {
        width: 100%;
        margin-right: 0;
        padding: 0 6px 32px;
    }

    .homenewsCon dl.left dd a {
        padding: 8px 0;
    }

    .homenewsCon dl.left dd a .img {
        width: 64px;
        margin-right: 15px;
    }

    .homenewsCon dl.left dd a div:not(.img) span {
        font-size: 15px;
        line-height: 20px;
    }

    .homenewsCon dl.right dd {
        margin-bottom: 8px;
        margin-left: 6px;
        padding: 10px 6px 16px 0;
    }

    .homenewsCon dl.right dd>p {
        font-size: 14px;
        line-height: 20px;
        margin: 0 10px 0 6px;
    }

    .homenewsCon dl.right dd>div .time {
        width: 120px;
        height: 27px;
        margin-bottom: 16px;
        padding: 2px 9px 3px 6px;
        font-size: 16px;
        margin-left: -6px;
    }

    .homenewsCon dt {
        padding-bottom: 20px;
    }

    .homenewsCon dt h2 {
        font-size: 17px;
    }

    .homenewsCon dt .more {
        margin-top: -17px;
    }

    .homenewsCon dt .more a {
        font-size: 15px;
    }
}

/* homeNews end */

/* homeAbout start */
.homeAbout .aboutUs {
    margin: 0 auto 54px;
}

.homeAbout .aboutUs h2,
.homeAbout .aboutUs p {
    text-align: center;
    color: #1B91DB;
}

.homeAbout .aboutUs h2 {
    font-size: 2.3958vw;
    line-height: 1.43;
    margin-bottom: 32px;
}

.homeAbout .aboutUs p {
    font-size: 1.4583vw;
    line-height: 36px;
    margin-bottom: 77px;
    font-weight: 500;
}

.homeAbout .aboutUs dl {
    display: flex;
    align-items: start;
}

.homeAbout .aboutUs dl dt {
    width: 445px;
    flex-shrink: 0;
    margin-right: 36px;
}

.homeAbout .aboutUs dl dt img {
    width: 100%;
	height:auto;
}

.homeAbout .aboutUs dl dd {
    flex: 1;
}

.homeAbout .aboutUs dl dd p {
    font-size: 18px;
    line-height: 31px;
    text-align: left;
    color: #082D59;
    margin: 0;
    font-weight: normal;
    font-family: 'Noto Sans JP';
}

.homeAbout .aboutImg {
    width: 47.083vw;
    margin: 54px auto 0;
}

.homeAbout .aboutImg img {
    width: 100%;
	height:auto;
}



.swiperHome {
    margin: 0 auto 102px;
    overflow: hidden;
}

.swiperHome .swiper-wrapper {
    transition-timing-function: linear !important;
}

.swiperHome .swiper-slide {
    width: 528px !important;
}

.swiperHome .swiper-slide img {
    width: 100%;
	height:auto;
}

@media (min-width: 768px) and (max-width: 1279px) {
    .homeAbout .aboutUs h2 {
        font-size: 20px;
        line-height: 1.43;
        margin-bottom: 22px;
    }

    .homeAbout .aboutUs p {
        font-size: 18px;
        line-height: 22px;
        margin-bottom: 32px;
    }

    .homeAbout .aboutUs dl {
        flex-direction: column;
    }

    .homeAbout .aboutUs dl dt {
        margin: 0 auto 32px;
    }

    .homeAbout .aboutImg {
        width: 80vw;
        margin: 34px auto 0;
    }
}

@media (max-width: 767px) {
	.homeAbout .aboutImg img{
		width:100%;
		height:auto;
	}
	
	
    .homeAbout .aboutUs {
        margin: 0 auto 49px;
    }

    .homeAbout .aboutUs h2 {
        font-size: 22px;
        line-height: 21px;
        margin-bottom: 12px;
    }

    .homeAbout .aboutUs p {
        font-size: 18px;
        line-height: 26px;
        margin-bottom: 20px;
        text-align: center;
    }

    .homeAbout .aboutUs dl {
        flex-direction: column;
    }

    .homeAbout .aboutUs dl dt {
        width: 100%;
        margin: 0 0 19px;
    }

    .homeAbout .aboutUs dl dt p {
        font-size: 14px;
        line-height: 29px;
    }

    .homeAbout .aboutUs dl dd {
        width: 100%;
    }

    .swiperHome {
        margin: 0 auto 40px;
        overflow: hidden;
    }

    .swiperHome .swiper-slide {
        width: 280px !important;
    }

    .homeAbout .aboutImg {
        width: calc(100% - 80px);
        margin: 20px 40px 0;
    }
}

/* homeAbout end */

/* homeCourse start */
#homeCourse.first {
    margin: 120px 0 97px;
}

#homeCourse .courseText {
    text-align: center;
}

#homeCourse .courseText b {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 50%;
    background: #1B91DB;
    margin-bottom: 12px;
    color: #fff;
    font-size: 18px;
}

#homeCourse .courseText h2 {
    font-size: 30px;
    line-height: 44px;
    color: #1B91DB;
    margin-bottom: 4px;
    font-weight: 500;
}

#homeCourse .courseText span {
    display: block;
    font-size: 14px;
    line-height: 16px;
    color: #8588A1;
    margin-bottom: 14px;
}

#homeCourse .courseText strong {
    font-size: 20px;
    line-height: 29px;
    display: block;
    margin-bottom: 28px;
    color: #1B91DB;
    font-weight: 500;
}

#homeCourse .courseText p {
    font-size: 18px;
    line-height: 26px;
    color: #082D59;
    margin-bottom: 48px;
    text-align: left;
    font-weight: 500;
}

.courseCase {
    background: #E6F5FA;
    text-align: center;
    padding: 32px 0 60px;
}

.courseCase h3 {
    font-size: 24px;
    line-height: 35px;
    color: #1B91DB;
    margin-bottom: 32px;
    font-weight: 500;
}

.courseCase .courseCaseCon {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 80px;
}

.courseCase .courseCaseCon .lf {
    width: 243px;
    flex-shrink: 0;
}

.courseCase .courseCaseCon .lf img {
    width: 100%;
}

.courseCase .lf img.disPC {
    width: 100%;
    height: auto;
}

.courseCase .courseCaseCon .rg {
    display: flex;
    gap: 0 48px;
}

.courseCase .courseCaseCon .rg .img {
    width: 124px;
    height: 124px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 16px;
}

.courseCase .courseCaseCon .rg .img img {
    width: 100%;
}

.courseCase .courseCaseCon .rg dt {
    font-size: 18px;
    line-height: 26px;
    color: #082D59;
    padding: 0 30px 10px;
    border-bottom: 1px solid #8588A1;
    display: flex;
    align-items: baseline;
    justify-content: center;
    font-weight: 500;
}

.courseCase .courseCaseCon .rg dt span {
    line-height: 1;
}

.courseCase .courseCaseCon .rg strong {
    font-size: 26px;
    line-height: 37px;
    color: #1B91DB;
    font-weight: bold;
}

.courseCase .courseCaseCon .rg dd {
    display: block;
    font-size: 18px;
    line-height: 26px;
    color: #082D59;
    margin-top: 12px;
    font-weight: 500;
}

.courseList {
    margin: 20px 0 97px;
}

.courseList li {
    border-bottom: 1px solid #333;
    padding: 23px 0;
}

.courseList li:last-of-type {
    border-bottom: none;
}

.courseList li h3 {
    margin-bottom: 12px;
    display: flex;
}

.courseList li h3 span {
    display: inline-block;
    width: 28px;
    height: 28px;
    line-height: 24px;
    border-radius: 50%;
    background: #1B91DB;
    color: #fff;
    font-size: 16px;
    margin-right: 12px;
    text-align: center;
    flex-shrink: 0;
    font-weight: 500;
}

.courseList li h3 p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: #1C8FDB;
}

.courseList li div {
    display: flex;
}

.courseList li div span {
    display: inline-block;
    width: 28px;
    height: 28px;
    line-height: 24px;
    border-radius: 50%;
    border: 1px solid #1B90DB;
    color: #1C8FDB;
    font-size: 16px;
    margin-right: 12px;
    text-align: center;
    flex-shrink: 0;
    font-weight: 500;
}

.courseList li div p {
    font-size: 16px;
    line-height: 24px;
    color: #082D59;
}

@media (min-width: 768px) and (max-width: 1279px) {
    .courseCase .courseCaseCon {
        gap: 22px;
    }

    .courseCase .courseCaseCon .lf {
        width: 183px;
    }

    .courseCase .courseCaseCon .rg {
        gap: 0 20px;
    }

    .courseCase .courseCaseCon .rg .img {
        width: 84px;
        height: 84px;
    }

    .courseCase .courseCaseCon .rg dt {
        font-size: 16px;
        padding: 0 12px 8px;
    }
}

@media (max-width: 767px) {
    #homeCourse.first {
        margin: 10px 0 52px;
    }

    #homeCourse .courseText {
        text-align: center;
    }

    #homeCourse .courseText b {
        width: 20px;
        height: 20px;
        line-height: 20px;
        margin-bottom: 4px;
        font-size: 12px;
    }

    #homeCourse .courseText h2 {
        font-size: 20px;
        line-height: 29px;
    }

    #homeCourse .courseText span {
        font-size: 12px;
        line-height: 14px;
        margin-bottom: 8px;
    }

    #homeCourse .courseText strong {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 16px;
    }

    #homeCourse .courseText p {
        font-size: 14px;
        line-height: 25px;
        margin-bottom: 28px;
    }

    .courseCase {
        padding: 24px 0 24px;
    }

    .courseCase h3 {
        font-size: 18px;
        line-height: 26px;
        margin-bottom: 20px;
        font-weight: 600;
    }

    .courseCase .courseCaseCon {
        flex-direction: column;
    }

    .courseCase .courseCaseCon .lf {
        margin: 0 auto 32px;
    }

    .courseCase .courseCaseCon .rg {
        gap: 0 16px;
    }

    .courseCase .courseCaseCon .rg .img {
        width: 80px;
        height: 80px;
        margin: 0 auto 8px;
    }

    .courseCase .courseCaseCon .rg dt {
        font-size: 12px;
        line-height: 17px;
        padding-bottom: 8px;
        padding: 0 0 6px;
    }

    .courseCase .courseCaseCon .rg strong {
        font-size: 20px;
        line-height: 29px;
    }

    .courseCase .courseCaseCon .rg dd {
        font-size: 12px;
        line-height: 17px;
        margin-top: 8px;
    }

    .courseList {
        margin: 5px 0 69px;
    }

    #homeCourse.first .courseList {
        margin: 5px 0 52px;
    }

    .courseList li {
        padding: 16px 0;
    }

    .courseList li h3 {
        margin-bottom: 8px;
    }

    .courseList li h3 span {
        width: 20px;
        height: 20px;
        line-height: 16px;
        font-size: 10px;
        margin-right: 8px;
    }

    .courseList li h3 p {
        font-size: 12px;
        line-height: 17px;
    }

    .courseList li div span {
        width: 20px;
        height: 20px;
        line-height: 16px;
        font-size: 10px;
        margin-right: 8px;
    }

    .courseList li div p {
        font-size: 12px;
        line-height: 20px;
    }
}

#homeCourse .homeSource {
    background-color: #E6F5FA;
    padding: 72px 0 44px;
}

#homeCourse .homeSource .courseText p {
    margin-bottom: 26px;
}

#homeCourse .imgList {
    display: flex;
    gap: 0 5.42vw;
}

#homeCourse .imgList li img {
    width: 100%;
	height:auto;
}

.courseHeart {
    position: relative;
    z-index: 0;
    margin: 44px 0 23px;
}

.courseHeart::after {
    content: "";
    width: 100%;
    height: 100%;
    background: #8FCBF0;
    border-radius: 20px;
    position: absolute;
    left: 10px;
    top: 10px;
    z-index: -2;
}

.courseHeart>div {
    border: 1px solid #8588A1;
    border-radius: 28px;
    background-color: #fff;
    padding: 36px 39px 32px;
}

.courseHeart>div h3 {
    font-size: 20px;
    line-height: 29px;
    text-align: center;
    color: #1B91DB;
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.courseHeart>div h3 strong {
    font-weight: 500;
}

.courseHeart>div h3 img {
    margin: 4px 10px 0 0;
    flex-shrink: 0;
    width: 30px;
	height:30px;
}

.courseHeart>div p {
    font-size: 18px;
    line-height: 26px;
    color: #082D59;
    font-family: 'Noto Sans JP';
}

.courseClass {
    display: flex;
    gap: 0 24px;
    margin: 55px auto 0;
}

.courseClass .lf {
    width: 456px;
    flex-shrink: 0;
}

.courseClass .rg li {
    margin-bottom: 36px;
    display: flex;
    gap: 0 20px;
}

.courseClass .rg li img {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 50%;
}

.courseClass .rg li dl dt {
    display: block;
    font-size: 20px;
    line-height: 29px;
    color: #1B91DB;
    font-weight: 500;
    text-align: left;
}

.courseClass .rg li dl dd {
    display: block;
    font-size: 18px;
    line-height: 26px;
    color: #082D59;
    margin-top: 4px;
    text-align: left;
}

.lastCourse {
    margin: 40px auto 0;
}

.lastCourse h3 {
    font-size: 20px;
    line-height: 29px;
    color: #1B91DB;
    font-weight: 500;
    text-align: center;
}

.lastCourse>div {
    margin: 44px auto 0;
}

.lastCourse>div img {
    width: 100%;
	height:auto;
}

@media (min-width: 768px) and (max-width: 1279px) {
    .courseClass {
        flex-direction: column;
    }

    .courseClass .lf {
        margin: 0 auto 40px;
    }
}

@media (max-width: 767px) {
    #homeCourse .homeSource {
        padding: 27px 0 32px;
    }

    #homeCourse .imgList {
        flex-wrap: wrap;
        gap: 9px;
    }

    #homeCourse .imgList li {
        width: calc((100% - 9px) / 2);
    }

    #homeCourse .imgList li:first-of-type {
        width: 100%;
    }

    .courseHeart {
        margin: 24px 6px 23px 0;
    }

    .courseHeart::after {
        left: 6px;
        top: 6px;
    }

    .courseHeart>div {
        padding: 20px 15px 24px;
    }

    .courseHeart>div h3 {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 20px;
    }

    .courseHeart>div h3 img {
        margin-right: 8px;
        width: 21px;
    }

    .courseHeart>div p {
        font-size: 12px;
        line-height: 20px;
    }

    .courseClass {
        flex-direction: column;
        gap: 0;
        margin: 0 auto;
    }

    .courseClass .lf {
        width: calc(100% - 44px);
        margin: 0 22px 28px;
    }

    .courseClass .lf img {
        width: 100%;
    }
	

    .courseClass .rg li {
        margin-bottom: 24px;
        gap: 0 12px;
    }

    .courseClass .rg li img {
        width: 60px;
        height: 60px;
    }

    .courseClass .rg li dl dt {
        font-size: 16px;
        line-height: 24px;
    }

    .courseClass .rg li dl dd {
        font-size: 12px;
        line-height: 17px;
    }

    .third .courseCase {
        padding: 20px 0 8px;
    }

    .third .courseCase h3 {
        font-size: 15px;
        line-height: 21px;
    }

    .third .courseList {
        margin: 5px 0 48px;
    }

    .lastCourse {
        margin: 20px auto 0;
    }

    .lastCourse h3 {
        font-size: 16px;
        line-height: 24px;
    }

    .lastCourse>div {
        margin: 16px auto 0;
    }
}

/* homeCourse end */

/* sunseerBoss start */
#sunseerBoss {
    background: linear-gradient(to top right, #59ABD9 50%, #59ABD9 51%, #6DD1E8 80%, #84F5F1 100%);
    padding: 78px 0 0;
}

#sunseerBoss .careerText p {
    color: #fff;
    font-size: 18px;
    line-height: 30px;
    width: 39.375vw;
    margin: 0 auto 42px;
}

#sunseerBoss .careerText .img {
    text-align: center;
    margin: 0 auto;
    
}

#sunseerBoss .careerText img {
    display: block;
    margin: 0 auto;
	width:100%;
	height:auto;
}

@media (min-width: 768px) and (max-width: 1279px) {
    #sunseerBoss {
        padding: 68px 0 0;
    }

    #sunseerBoss .careerText p {
        width: 90vw;
        margin: 0 auto 32px;
    }

    #sunseerBoss .careerText .img {
        width: 80vw;
    }
}

@media (max-width: 767px) {
    #sunseerBoss {
        background: linear-gradient(to top right, #59ABD9, #84F5F1);
        padding: 31px 18px 0;
    }

    #sunseerBoss .careerText p {
        font-size: 14px;
        width: 100%;
        margin: 0 auto 12px;
    }

    #sunseerBoss .careerText .img {
        width: 100%;
    }
}

/* sunseerBoss end */

/* homeCareer start */
#homeCareer {
    background: linear-gradient(to top right, #59ABD9 50%, #59ABD9 51%, #6DD1E8 80%, #84F5F1 100%);
    padding: 90px 0 84px;
}

#homeCareer .carLists {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 68px auto 0;
}

#homeCareer .carLists .carChild {
    background-color: #fff;
    width: calc((100% - 94px) / 3);
    margin-right: 47px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .16);
}

#homeCareer .carLists .carChild:last-of-type {
    margin-right: 0;
}

#homeCareer .carLists .carChild:nth-of-type(1) .carText strong {
    background: url(../images/home/icon_career-icon_01.svg) no-repeat center, #fff;
    background-size: 80px 80px;
}

#homeCareer .carLists .carChild:nth-of-type(1) .mainHover::after {
    background-color: #84C345;
}

#homeCareer .carLists .carChild:nth-of-type(1):hover .carText {
    background-color: #84C345;
}

#homeCareer .carLists .carChild:nth-of-type(1):hover .carText strong {
    background: url(../images/home/icon_career-icon_01-white.svg) no-repeat center, #84C345;
    background-size: 80px 80px;
}

#homeCareer .carLists .carChild:nth-of-type(2) .carText strong {
    background: url(../images/home/icon_career-icon_03.svg) no-repeat center, #fff;
    background-size: 80px 80px;
}

#homeCareer .carLists .carChild:nth-of-type(2) .mainHover::after {
    background-color: #FB8C96;
}

#homeCareer .carLists .carChild:nth-of-type(2):hover .carText {
    background-color: #FB8C96;
}

#homeCareer .carLists .carChild:nth-of-type(2):hover .carText strong {
    background: url(../images/home/icon_career-icon_03-white.svg) no-repeat center, #FB8C96;
    background-size: 80px 80px;
}

#homeCareer .carLists .carChild:nth-of-type(3) .carText strong {
    background: url(../images/home/icon_career-icon_02.svg) no-repeat center, #fff;
    background-size: 80px 80px;
}

#homeCareer .carLists .carChild:nth-of-type(3) .mainHover::after {
    background-color: #FDD3A5;
}

#homeCareer .carLists .carChild:nth-of-type(3):hover .carText {
    background-color: #FDD3A5;
}

#homeCareer .carLists .carChild:nth-of-type(3):hover .carText strong {
    background: url(../images/home/icon_career-icon_02-white.svg) no-repeat center, #FDD3A5;
    background-size: 80px 80px;
}

#homeCareer .carLists .carChild:hover .mainHover::after {
    width: calc(var(--scale) * 1px);
    height: calc(var(--scale) * 1px);
    transition-duration: 0.4s;
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
    translate: 0 0;
    opacity: 0.5;
}

#homeCareer .carLists .carChild:hover .carText::after {
    background: url(../images/icon_border-arrowRight-white.svg) no-repeat;
    background-size: contain;
}

#homeCareer .carLists .carChild:hover .carText h3,
#homeCareer .carLists .carChild:hover .carText span,
#homeCareer .carLists .carChild:hover .carText p {
    color: #fff;
}

#homeCareer .carChild .img {
    display: flex;
    height: 220px;
}

#homeCareer .carChild .img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: top;
    object-position: top;
}

#homeCareer .carChild .carText {
    width: 100%;
    height: calc(100% - 220px);
    background-color: #fff;
    text-align: center;
    padding: 60px 32px 44px;
    position: relative;
    z-index: 4;
}

#homeCareer .carChild .carText::after {
    content: "";
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: url(../images/icon_border-arrowRight.svg) no-repeat;
    background-size: contain;
    position: absolute;
    left: calc(50% - 12px);
    bottom: 44px;
}

#homeCareer .carChild .carText h3 {
    font-size: 24px;
    font-weight: 500;
    line-height: 26px;
    margin-bottom: 10px;
}

#homeCareer .carChild .carText span {
    font-size: 14px;
    line-height: 19px;
    margin-bottom: 23px;
    color: #8588A1;
}

#homeCareer .carChild:hover .carText span {
    color: #fff;
}

#homeCareer .carChild .carText p {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 56px;
}

#homeCareer .carChild .carText strong {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    position: absolute;
    left: calc(50% - 60px);
    top: -60px;
    background: url(../images/home/icon_career-icon_01.svg) no-repeat center, #fff;
    background-size: 80px 80px;
}

#homeCareer .carChild .mainHover {
    position: absolute;
    inset: 0 -100%;
    display: block;
    width: calc(var(--scale) * 1px);
    height: calc(var(--scale) * 1px);
    margin: auto;
    z-index: 1;
    mix-blend-mode: multiply;
}

#homeCareer .carChild .mainHover::after {
    position: absolute;
    inset: 0;
    margin: auto;
    display: block;
    background-color: #84C345;
    width: 0;
    height: 0;
    border-radius: 100%;
    transition: 0.4s cubic-bezier(0.77, 0, 0.18, 1);
    transition-property: opacity, translate, width, height;
    z-index: 2;
    opacity: 0;
    content: "";
}

@media (min-width: 768px) and (max-width: 1279px) {
    #homeCareer {
        padding: 60px 0 0;
    }

    #homeCareer .carLists {
        margin: 28px auto 60px;
    }

    #homeCareer .carLists .carChild {
        background-color: #fff;
        width: calc((100% - 30px) / 2);
        margin: 0 30px 30px 0 !important;
    }

    #homeCareer .carLists .carChild:nth-of-type(2n) {
        margin: 0 0 30px 0 !important;
    }

    .careerText p {
        width: 84vw;
    }

    .careerText .img {
        width: 76vw;
    }
}

@media (max-width: 767px) {
    #homeCareer {
        background: #fff;
        padding: 16px 0 100px;
        position: relative;
        z-index: 222;
    }

    #homeCareer::after {
        content: "";
        width: calc(100% - 75px);
        height: calc(100% - 152px);
        background: linear-gradient(45deg, #30A4CD 0%, #7EDCF2 50%, #7EDCF2 100%);
        position: absolute;
        left: 75px;
        top: 83px;
        border-radius: 8px 0 0 8px;
        z-index: -1;
    }

    #homeCareer .carLists {
        flex-direction: column;
        margin: 56px 6px 0;
    }

    #homeCareer .carLists .carChild {
        width: 100%;
        margin: 0 0 32px !important;
        display: flex;
        border-radius: 4px;
        overflow: hidden;
        height: 132px;
    }

    #homeCareer .carLists .carChild:last-child {
        margin: 0 !important;
    }

    #homeCareer .carChild .img {
        height: 152px;
        height: 132px;
        flex-shrink: 0;
    }

    #homeCareer .carChild .carText {
        height: auto;
        text-align: left;
        padding: 16px 10px;
    }

    #homeCareer .carChild .carText::after {
        width: 18px;
        height: 18px;
        left: auto;
        right: 16px;
        bottom: 16px;
    }

    #homeCareer .carChild .carText h3 {
        font-size: 16px;
        line-height: 16px;
        margin-bottom: 5px;
    }

    #homeCareer .carChild .carText span {
        font-size: 12px;
        line-height: 16px;
        margin-bottom: 0;
    }
}

/* homeCareer end */

/* articleContent start */
#pageArticle .articleTitle {
    font-size: 24px;
    line-height: 1.5;
    margin: 10px 0 20px;
    text-align: center;
}

#pageArticle p {
    font-size: 16px;
    line-height: 1.3;
}

#pageArticle h2.wp-block-heading {
    font-size: 22px;
    line-height: 1.5;
    margin: 10px 0;
}

#pageArticle h3.wp-block-heading {
    font-size: 20px;
    line-height: 1.5;
    margin: 10px 0;
}

#pageArticle h4.wp-block-heading {
    font-size: 18px;
    line-height: 1.5;
    margin: 10px 0;
}

#pageArticle h5.wp-block-heading {
    font-size: 16px;
    line-height: 1.5;
    margin: 10px 0;
}

#pageArticle img {
    width: 100%;
    margin: 20px auto;
}

@media screen and (max-width: 767px) {
    #pageArticle .articleTitle {
        font-size: 20px;
        margin: 8px 0 16px;
    }

    #pageArticle p {
        font-size: 14px;
    }

    #pageArticle h2.wp-block-heading {
        font-size: 18px;
    }

    #pageArticle h3.wp-block-heading {
        font-size: 16px;
    }

    #pageArticle h4.wp-block-heading {
        font-size: 14px;
    }

    #pageArticle h5.wp-block-heading {
        font-size: 12px;
    }

    #pageArticle img {
        margin: 10px auto;
    }
}

/* articleContent end */
/* footer start */
#footer {
    background: linear-gradient(125deg, #7EDCF2 0%, #7EDCF2 15%, #30A4CD 50%, #30A4CD 100%);
    color: #fff;
}

.footCon {
    display: flex;
    justify-content: flex-start;
    padding: 49px 20px 30px;
    margin: 0 auto;
}

.footCon .footLf {
    flex-shrink: 0;
}

.footCon .footLf>div {
    width: 20.729vw;
}

.footCon .footLf>div img {
    width: 100%;
	height:auto;
}

.footCon .footLf p {
    font-size: 12px;
    line-height: 17px;
    padding-left: 4.89583vw;
}

.footCon .footLf p:first-of-type {
    margin: 15px 0 18px;
}

.footCon .footMd {
    margin-left: 2.625vw;
    max-width: 750px;
    flex: 1;
}

.footCon .footMd>ul {
    display: flex;
    justify-content: start;
    flex-wrap: wrap;
}

.footCon .footMd ul li {
    width: calc((100% - (1.25vw * 3)) / 4);
    margin-right: 1.25vw;
    margin-bottom: 60px;
    min-width: 156px;
}



.footCon .footMd .subMenu {
    display: block;
    margin-top: 16px;
}

.footCon .footMd .subMenu li {
    width: 100%;
    margin: 0 0 6px;
    min-width: auto;
    margin: 0 0 16px;
}

.footCon .footMd .subMenu li:last-of-type {
    margin: 0;
}

.footCon .footMd .subMenu a {
    font-size: 12px;
    color: #ffffff;
    display: inline-block;
	margin-left:16px;
}

.footCon .footMd ul li:nth-of-type(4n) {
    margin-right: 0;
	min-width 100px
}

.footCon .footMd a {
    font-size: 16px;
    font-weight: bold;
    line-height: 24px;
    color: #fff;
    position: relative;
}

.footCon .footMd a.noLine {
    cursor: default;
}

.footCon .footMd a.shareLink::after {
    content: "";
    width: 10px;
    height: 10px;
    background: url(../images/icon_share-link.svg) no-repeat;
    background-size: contain;
    position: absolute;
    left: auto;
    bottom: 6px;
}

.footCon .footMd a::before {
    content: "";
    width: 0;
    height: 1px;
    background: #fff;
    position: absolute;
    left: 0;
    bottom: 0;
    transition: width 0.3s ease-in-out;
}

.footCon .footMd a:hover::before {
    width: 100%;
}

.footCon .footMd a.noLine::before {
    display: none;
}

.footCon .footRg {
    border-left: 1px solid #fff;
	padding-left: 1.82vw;
}

.footCon .footRg strong {
    line-height: 24px;
}

.footCon .footRg div {
    background-color: #E6F5FA;
    border-radius: 11px;
    padding: 12px;
    margin: 8px 0 12px;
    width: -moz-fit-content;
    width: fit-content;
}

.footCon .footRg div img:first-of-type {
    margin-right: 12px;
}

.footCon .footRg p {
	width:auto;
    line-height: 20px;
}

.footCon .footRg p span {
    width: 72px;
}

.footCon .footRg p.last span {
    width: fit-content;
}

.footCon .footRg p a {
    color: #fff;
}

.footCon .footRg p:last-of-type {
    margin-top: 4px;
}

.copyright {
    font-size: 12px;
    line-height: 15px;
    padding: 14px 0;
    text-align: center;
}

@media (max-width: 1023px) {
    #footer {
        background: linear-gradient(to right bottom, #7DDCF2 0%, #7EDCF2 15%, #30A4CD 90%, #30A4CD 90%);
        color: #fff;
    }

    .footCon {
        flex-direction: column;
        padding: 32px 18px 54px;
    }

    .footCon .footLf>div {
        width: auto;
        max-width: 333px;
    }

    .footCon .footLf p {
        padding-left: 82px;
    }

    .footCon .footLf p:first-of-type {
        margin: 0 0 9px;
    }

    .footCon .footMd {
        padding: 32px 0 0 82px;
        width: 100%;
        margin: 32px 0 0;
        border-top: 1px solid #fff;
    }

    .footCon .footMd ul li {
        margin-right: 0;
        margin-bottom: 24px;
        width: 100%;
        min-width: 180px;
    }

    .footCon .footMd .subMenu {
        margin: 16px 0 0 16px;
    }

    .footCon .footRg {
        border-left: none;
        padding-left: 82px;
        padding-top: 38px;
    }

    .footCon .footRg p {
        line-height: 20px;
        font-size: 14px;
    }

    .footCon .footRg p span {
        width: 66px;
    }

    .footCon .footRg p:last-of-type {
        margin-top: 4px;
    }

    .copyright {
        font-size: 10px;
        padding: 8px 0;
    }
}

/* footer end */