@charset "UTF-8";
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}
*{
    -webkit-box-sizing: border-box;
    -o-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
html {
    font-size: 62.5%;
}
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section {
    display:block;
}
nav ul {
    list-style:none;
}
blockquote, q {
    quotes:none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}
a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
    text-decoration: none;
    cursor: pointer;
}
body{
    font-size: 1.6rem;
    line-height: 2.25;
    color: #141414;
    font-family: 'Noto Serif', "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
    word-break: break-word;
    /*font-weight: 400;*/
    padding-top: 88px;
}
.LibreCaslonDisplay {
    font-family: "Libre Caslon Display", serif;
}
.ZenKakuGothicAntique {
    font-family: "Zen Kaku Gothic Antique", sans-serif;
}
.NotoSerif{
  font-family: "Noto Serif", serif;
}
.Ballet {
  font-family: "Ballet", cursive;
}
/*remove highlight color touch on mobile*/
input,textarea,button,select,div,a,span {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}
a, input, div, select, textarea, img, button {
    outline: none;
}
a:focus, a:visited, input:focus, select:focus, textarea:focus, button:focus {
    outline: none !important;
}
li{
    list-style: none;
}
img {
    max-width: 100%;
    width /***/: auto;
    height: auto;
}
.img-full{
    width: 100%;
    display: flex;
}
.container {
    margin: 0 auto;
    max-width: 1040px;
    position: relative;
    /* z-index: 10; */
    padding-left: 20px;
    padding-right: 20px;}
.cl1{
    color: #ff5a6e;
}
.lb-sp{
    display: none;
}
.lb-pc{
    display: block;
}
@media(max-width: 750px){
    .lb-sp{
        display: block;
    }
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    .lb-pc{
        display: none;
    }
}
/*
==============================================================
============================ common ==========================
==============================================================
*/
.img-hover:hover{
    transition: 0.2s;
    opacity: 0.8;
}
.btn {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1;
    min-width: 300px;
    background: url(../img/btn-bg.jpg) no-repeat;
    background-size: cover !important;
    background-position: center;
    color: #fff;
    display: inline-block;
    text-align: center;
    padding: 10px 15px;
    position: relative;
    transition: .2s;
    letter-spacing: 0.05em;
    border: unset;
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    margin-top: 12px;
    cursor: pointer;
}
.btn span {
    padding-right: 20px;
    position: relative;
    display: inline-block;
}
.btn span::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transition: .2s;
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg) !important;
    margin-top: -5px;
}
.btn.light span::after {
    display: none;
}
/*
==============================================================
========================= End common =========================
==============================================================
*/
/*
==============================================================
=========================== pagetop ==========================
==============================================================
*/
#pagetop {
    color: #000000;
    font-size: 1.6rem;
    line-height: 1;
    bottom: 65px;
    right: 40px;
    position: fixed;
    z-index: 900;
    cursor: pointer;
    display: none;
    writing-mode: vertical-lr;
    font-family: "Zen Kaku Gothic Antique", sans-serif;
}
#pagetop:before{
    content: '';
    position: absolute;
    left: 50%;
    top: -50px;
    margin-left: -8px;
    width: 10px;
    height: 40px;
    border-color: #F4797D;
    border-width: 2px 1px 0px 0px;
    border-style: solid;
    display: inline-block;
    transform: skewY(-45deg);
    transition: .3s;
}
@media(min-width: 769px){
    #pagetop:hover:before{
        margin-top: -8px;
    }
}
@media(max-width: 767px){
    #pagetop {
        right: 10px;
        bottom: 55px;
        font-size: 1.25rem;
    }
    #pagetop:before{
        width: 7px;
        height: 30px;
        margin-left: -4px;
        top: -34px;
    }
}
/*
==============================================================
========================= End pagetop ========================
==============================================================
*/
/*
==============================================================
======================= hamburger menu =======================
==============================================================
*/
.hamburger-menu {
    position: absolute;
    right: 22px;
    top: 50%;
    width:20px;
    height: 12px;
    margin-top: -6px;
    cursor: pointer;
    z-index: 1000001;
    display: none;
}
.hamburger-menu .bar,
.hamburger-menu .bar:after,
.hamburger-menu .bar:before {
    width: 100%;
    height: 2px;
    border-radius: 50vh;
}
.hamburger-menu .bar {
    position: relative;
    transform: translateY(5px);
    background:#F4797D;
    transition: all 0ms 300ms;
    display: block;
}
.hamburger-menu .bar.active {
    background: none; 
}
.hamburger-menu .bar:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 6px;
    background: #F4797D;
    transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.hamburger-menu .bar:after {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    background:#F4797D;
    transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.hamburger-menu.active .bar{
    background: none !important;
}
.hamburger-menu.active .bar::before,
.hamburger-menu.active .bar::after{
    top: 0;
    bottom: 0;
}
.hamburger-menu.active .bar:before {
    transform: rotate(-45deg);
    transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);;
}
.hamburger-menu.active .bar:after {
    transform: rotate(45deg);
    transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);;
}
@media(max-width: 750px){
    .hamburger-menu{
        display: block;
    }
}
/*
==============================================================
====================== End hamburger menu ====================
==============================================================
*/
/*
==============================================================
============================ Header ==========================
==============================================================
*/
header{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}
header .container{
    max-width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 100;
    padding: 0 5px 0 5px;
    background: #fff;
    height: 88px;
}
header .logo{
    padding: 0px 20px 0 0;
    display: flex;
    align-items: center;
}
header .btn.light:hover::after {
    left: calc(95% - 2px);
}
header .logo img{
    width: 290px;
    transition: .3s
}
header .header-nav {
    display: flex;
    justify-content: space-between;
    padding-right: 30px;
    max-width: 800px;
    width: 100%;
    align-items: center;
}
header .header-nav .btn.no-border {
    min-width: unset;
    padding: 25px 15px;
}
header .header-nav .btn {
    margin-top: 0;
}
header .sub-menu {
    background: rgba(255, 255, 255, 0.8);
    padding: 26px 20px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    transition: .3s;
    z-index: -1;
    opacity: 0;
}
header .header-nav li:hover .sub-menu {
    /* display: block; */
    opacity: 1;
    top: 100%;
}
header .header-nav li {
    line-height: 1;
}
header .header-nav li .no-border {
    display: block;
}
header .sub-menu ul {
    display: flex;
    justify-content: center;
    width: 700px;
    margin: 0 auto;
}
header .sub-menu li {
    width: 50%;
}
header .sub-menu a {
    color: #F4797D;
    display: block;
    text-align: center;
    border-right: 1px dotted #F4797D;
    line-height: 1.8;
    position: relative;
}
header .sub-menu a span {
    position: relative;
    display: inline-block;
}
header .sub-menu a span::after {
    content: '';
    position: absolute;
    height: 2px;
    background: #F4797D;
    left: 20px;
    right: calc(100% - 20px);
    bottom: -10px;
    transition: .5s;
}
header .sub-menu .active a span::after {
    right: 20px;
}
header .sub-menu a:hover span::after {
    right: 20px;
}
header .sub-menu li:last-child a {
    border-right: unset;
}
.banner {
    position: relative;
}
.banner img{
    width: 100%;
    display: flex;
    object-fit: cover;
}
.banner h2 {
    position: absolute;
    top: 3.7vw;
    right: 14.8vw;
    color: #fff;
    font-size: 2.77vw;
    font-weight: 300;
    line-height: 1.86;
    writing-mode: vertical-rl;
    text-shadow: 1px 1px #141414, -1px 1px #141414, 1px 1px #141414;
}
.banner .txt-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    background: linear-gradient(90deg,rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 50%, rgba(255, 255, 255, 0) 100%);
    font-size: 1.48vw;
    line-height: 2.25;
    font-weight: 300;
    padding: 1.296vw 15px;
}
header .menu-open {
    display: none;
}
@media(max-width:1024px){
    header .header-nav {
        padding-right: 10px;
    }
}
@media(max-width:960px){
    header .header-nav {
        padding-right: 10px;
    }
    header .header-nav .btn.light {
        min-width: 200px;
    }
    header .header-nav .btn.light span {
        font-size: 1.2rem;
    }
}
@media(max-width:900px){
    header .header-nav .btn.light {
        min-width: 180px;
    }
}
@media(max-width:860px){
    header .header-nav .btn.light {
        min-width: 150px;
    }
}
@media(max-width: 750px){
    header .container {
        height: 45px;
    }
    .banner h2 {
        font-size: 4.6vw;
        line-height: 1.8;
        right: 6vw;
        top: 9vw;
        text-shadow: 0px 0 #141414, 0px 0 #141414, 0 0px #141414, 0 0px #141414, 0px 0px #141414, 1px -1px #141414, 1px -1px #141414, 0px 0px #141414;
    }
    header {
        background: #fff;
    }
    header .logo {
        padding: 0;
        line-height: 1;
    }
    header .logo img {
        max-width: 295px;
        width: 100%;
    }
    header.open-menu .logo img {
        margin-left: -32px;
    }
    header .container {
        padding: 12px 12px;
    }
    header picture {
        display: block;
    }
    body {
        padding-top: 52px;
    }
    .banner .txt-bottom {
        position: unset;
        font-size: 1.25rem;
        padding-top: 50px;
    }
    header .sub-menu {
        display: block;
        position: unset;
        opacity: 1;
    }
    header .header-nav {
        position: fixed;
        right: 0;
        left: 100%;
        top: 45px;
        bottom: 0;
        background: rgba(244, 121, 125, 0.95);
        width: 100%;
        transition: 0.5s;
        z-index: 1000;
        padding: 0;
        align-items: unset;
        display: block;
        padding: 0px 15px 50px;
    }
    header.open-menu .header-nav {
        left: 0;
    }
    header .header-nav .btn.light span {
        background: #fff;
        padding: 11px 8px;
    }
    header .header-nav .btn.light {
        min-width: 170px;
    }
    header .sub-menu {
        background: unset;
        padding: 0;
    }
    header .header-nav .btn.no-border span,
    header .sub-menu a {
        background: unset;
        color: #fff;
    }
    header .sub-menu ul {
        width: unset;
    }
    header .sub-menu li {
        width: 100%;
    }
    header .sub-menu a span::after {
        /* display: none; */
        background: unset;
        border: 1px dashed #fff;
        height: 0;
        left: 15px;
        right: 15px;
        bottom: -14px;
    }
    header .sub-menu li:first-child a span::after {
        display: none;
    }
    header .header-nav .sub-menu li:last-child {
        padding-top: 10px;
    }
    header .header-nav .btn.no-border {
        padding: unset;
    }
    header .header-nav li {
        text-align: center;
    }
    header .header-nav li {
        padding-top: 40px;
    }
    header .header-nav .sub-menu li {
        padding-top: 25px;
    }
    header .sub-menu ul {
        flex-direction: column-reverse;
    }
    header .btn.light::after {
        left: calc(100% - 3px);
        opacity: 1;
        border-color: #fff;
    }
    
}
/*
==============================================================
========================= End header =========================
==============================================================
*/
/*
==============================================================
=========================== footer ===========================
==============================================================
*/
footer{
    text-align: center;
    padding-top: 70px;
}
footer h2 {
    font-family: "Libre Caslon Display", serif;
    font-size: 3.5rem;
    line-height: 1;
    font-weight: 400;
    text-align: center;
}
footer .btn-box {
    display: flex;
    justify-content: center;
    padding-top: 25px;
}
footer .btn-box li {
    text-align: center;
    padding: 0 40px;
}
footer .btn-box .btn{
    min-width: 240px;
}
footer .logo {
    padding-top: 70px;
}
footer .logo img {
    max-width: 290px;
}
footer .socials {
    padding-top: 0;
    display: flex;
    justify-content: center;
}
footer .socials li  {
    padding: 10px 20px;
}
footer .socials li a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #141414;
    transition: .3s;
}
footer .socials li a:hover {
    opacity: .7;
}
footer .socials li a .ic {
    display: flex;
    align-items: center;
    height: 36px;
}
footer .socials li a .ic img {
    width: 36px;
    height: auto;
}
footer .socials li:last-child a .ic {
    width: 40px;
}
footer .copy-right{
    font-size: 1.4rem;
    padding: 0 10px 120px;
    font-family: "Zen Kaku Gothic Antique", sans-serif;
}
footer .social-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 30px 0 0;
    gap: 20px;
}
footer .social-box h3 {
    writing-mode: unset;
    font-size: 1.8rem;
    text-align: center;
    font-weight: normal;
}
@media(max-width: 750px){
    footer .btn-box {
        flex-direction: column;
        padding-bottom: 30px;
    }
    footer .btn-box li {
        text-align: center;
        padding: 15px 40px ;
    }
    footer .logo {
        padding-top: 0;
        padding-bottom: 35px;
    }
    footer .logo img {
        max-width: 230px;
        margin: 0 auto;
    }
    footer .socials li a .ic {
        justify-content: center;
    }
    footer .socials li a .ic img {
        width: 25px;
    }
    footer .socials li:last-child a .ic img {
        width: 28px;
    }
    footer .socials li a {
        line-height: 1;
        font-size: 1.25rem;
    }
    footer .socials li {
        padding: 0px 12px 0px;
    }
    footer .copy-right {
        font-size: 1rem;
        padding: 0 10px 40px;
        font-family: "Zen Kaku Gothic Antique", sans-serif;
    }
    footer h2 {
        font-size: 2.4rem;
    }
    footer {
        text-align: center;
        padding-top: 45px;
    }
    footer .socials {
        padding-top: 0;
    }
    footer .social-box h3 {
        font-size: 1.7rem;
    }
    footer .social-box {
        padding-top: 0;
        padding-bottom: 30px;
        gap: 30px;
    }
    footer .social-box .ceo {
        border-top: 1px solid #CCC;
        padding-top: 20px;
    }
}
/*
==============================================================
========================= End footer =========================
==============================================================
*/
/*
==============================================================
=========================== dialog ===========================
==============================================================
*/
.promise {
    padding-top: 75px;
    text-align: center;
}
.promise .btn:hover {
    opacity: .7;
}
.promise h2 {
    font-size: 1.6rem;
    line-height: 2.25;
    color: #F4797D;
}
.promise .dialog {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 1.6rem;
    line-height: 2.25;
    z-index: 10000000;
}
.promise .dialog .intro h3 {
    font-size: 2.4rem;
    line-height: 1.8;
    font-weight: 300;
    padding-bottom: 40px;
}
.promise .dialog .item .no span{
    font-size: 2.4rem;
    line-height: 1;
    font-family: "Libre Caslon Display", serif;
    background: url(../img/promise-no.jpg) no-repeat;
    color: #fff;
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}
.promise .dialog .item {
    padding-top: 70px;
    position: relative;
}
.promise .dialog .item h4 {
    font-size: 2.4rem;
    font-weight: 300;
    line-height: 1.8;
    padding: 35px 0 25px;
}
.line {
    font-size: 2.4rem;
    font-weight: 300;
    padding: 0 !important;
    margin-bottom: 35px;
    line-height: 1;
    position: relative;
    text-align: center;
}
.line::after {
    content: "";
    position: absolute;
    height: 2px;
    background: #F4797D;
    width: 80px;
    left: 50%;
    bottom: -8px;
    margin-left: -40px;
}
.promise .dialog .item.item1::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 146px;
    background: url(../img/promise-fl1.png) no-repeat;
    background-size: 100% !important;
    right: 20px;
    top: -10px;
}
.promise .dialog-content {
    background: white;
    width: calc(100% - 70px);
    height: calc(100% - 70px);
    margin: 35px auto;
    padding: 75px 20px;
    position: relative;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 0px 10px 0px;
    position: fixed;
    left: 0;
    right: 0;
    overflow-y: auto;
}
.promise .close {
    font-size: 1.6rem;
    min-width: 240px;
    background: #F4797D;
    padding: 12px 15px;
    margin-top: 55px;
}
@media(max-width: 750px){
    .promise {
        padding-top: 55px;
        text-align: center;
    }
    .promise .btn {
        font-size: 1.388rem;
        min-width: 208px;
        padding: 7px 15px;
    }
    .promise .btn span::after {
        width: 6px;
        height: 6px;
        border-top: 1px solid #fff;
        border-right: 1px solid #fff;
        margin-top: -3px;
    }
    .promise .btn span {
        padding-right: 15px;
    }
    .promise .dialog-content {
        width: calc(100% - 16px);
        height: calc(100% - 16px);
        margin: 8px auto;
        padding: 55px 10px;
    }
    .promise .dialog {
        font-size: 1.25rem;
    }
    .promise .dialog .intro h3 {
        font-size: 1.7rem;
        padding-bottom: 30px;
    }
    .promise .dialog .item {
        padding-top: 55px;
        position: relative;
    }
    .promise .dialog .item .no span {
        font-size: 1.66rem;
        width: 34px;
        height: 34px;
    }
    .promise .dialog .item h4 {
        font-size: 1.7rem;
        padding: 30px 0 25px;
    }
    .promise .dialog .item.item1::before {
        width: 90px;
        height: 51px;
        right: 0;
        top: 10px;
    }
    .promise .close {
        font-size: 1.25rem;
        min-width: 167px;
    }
    .promise h2 {
        font-size: 1.25rem;
    }
    .promise .btn {
        margin-top: 5px
    }
}
/*
==============================================================
========================= End dialog =========================
==============================================================
*/
/*
==============================================================
============================= why ============================
==============================================================
*/
.why {
    position: relative;
    z-index: 1;
    text-align: center;
}
.why .item {
    padding-top: 95px;
}
.why .item h3 {
    padding-bottom: 10px !important;
}
.why .item.item1 {
    padding-top: 20px;
}
.why .item.item1 h3 {
    margin-bottom: 60px;
}
.why .txt {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.why .container {
    max-width: 760px;
}
.why .txt p {
    margin: 0 10px;
}
@media(max-width:750px){
    .why .item h3 {
        font-size: 1.7rem;
        margin-bottom: 45px;
        padding-bottom: 5px !important;
    }
    .why .item {
        position: relative;
    }
    .why .item.reasons::after {
        content: "";
        position: absolute;
        width: 85px;
        height: 76px;
        background: url(../img/ic-why.png) no-repeat;
        background-size: 100% !important;
        z-index: -1;
        right: -15px;
        top: 0;
    }
    .career-course .txt-bottom::before {
        display: none;
    }
    .line::after {
        width: 56px;
        margin-left: -28px;
        height: 1px;
    }
    .why .txt,
    .why .item {
        font-size: 1.25rem;
    }
    .why .item {
        padding-top: 50px;
        padding-bottom: 15px;
    }
    .why .txt p {
        margin: 0 5px;
    }
}
/*
==============================================================
========================== End why ===========================
==============================================================
*/
/*
==============================================================
======================== ceo-message =========================
==============================================================
*/
.career-course {
    overflow: hidden;
}
.career-course .tab-menu{
    list-style:none;
    padding:0;
    display:flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}
.career-course .tab-menu li{
    width: 33.33%;
    cursor:pointer;
    padding: 0 10px;
    text-align: center;
}
.career-course .tab-menu li h3 {
    font-size: 2rem;
    line-height: 1.5;
    text-align: center;
    color: #F4797D;
}
.career-course .tab-menu li .inner {
    position: relative;
    padding-top: 70px;
    line-height: 1.8;
}
.career-course .tab-menu li .inner .img {
    position: relative;
    padding-top: 62.5%;
    margin-bottom: 10px;
}
.career-course .tab-menu li .inner .img img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    object-position: center;
    height: 100%;
}
.career-course .tab-menu li .no {
    font-size: 10rem;
    line-height: 1;
    font-family: "Ballet", cursive;
    position: absolute;
    right: 10px;
    top: 25px;
    z-index: 1;
}
.career-course .tab-menu li.active .no {
    color: #F4797D;
}
.career-course .tab-menu li a {
    color: #F4797D;
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-weight: 400;
    font-size: 2rem;
    line-height: 1;
    display: block;
    margin-top: 35px;
    padding-bottom: 53px;
    margin-bottom: 15px;
    position: relative;
    z-index: -1;
    animation: anime1 .6s ease 0s infinite alternate;
}
.career-course .tab-menu li a::before,
.career-course .tab-menu li a::after {
    content: "";
    position: absolute;
    transition: .3s;
    background: #F4797D;
    left: 50%;
}
.career-course .tab-menu li a::before{
    top: 25px;
    bottom: 24px;
    width: 1px;
}
.career-course .tab-menu li a::after{
    top: unset;
    bottom: 3px;
    height: 1px;
    right: 50%;
    transform: rotate(-30deg);
}
.career-course .tab-menu li:hover a {
    animation: unset !important
}
.career-course .tab-menu li:hover .no {
    color: #F4797D;
}
.career-course .tab-menu li:hover a::before {
    bottom: 0;
}
.career-course .tab-menu li:hover a::after {
    right: calc(50% - 10px);
    transition-delay: 0;
}
.career-course .tab-menu li.active a::before {
    bottom: 0;
}
.career-course .tab-menu li.active a::after {
    right: calc(50% - 10px);
    transition-delay: 0;
}
.career-course .tab-content{
    display:none;
}
.career-course .tab-content.active{
    display:block;
}
.career-course .tab-content .intro {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    margin: 0 -20px;
    position: relative;
}
.career-course .tab-content .img {
    width: 50%;
    padding: 0 20px;
}
.career-course .tab-content .txt {
    width: 50%;
    padding: 0 20px 0px;
    margin-top: -10px;
}
.career-course .tab-content#tab1 .intro .txt .lg {
    margin-top: -3rem;
}
.career-course .tab-content .intro .txt h3 {
    font-size: 3rem;
    line-height: 1.86;
    padding-bottom: 50px;
    padding-top: 18px;
}
.career-course .tab-content .intro .txt .lg {
    position: absolute;
    font-family: "Ballet", cursive;
    font-size: 12rem;
    color: #FDE4E5;
    right: 0;
    top: 50%;
    margin-top: -9.1rem;
    z-index: -1;
    line-height: 1.22;
    text-align: right;
}
.career-course .tab-content .cont {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -20px;
    position: relative;
    text-align: center;
    padding-top: 75px;
}
.career-course .txt-bottom {
    text-align: center;
    padding-top: 120px;
    position: relative;
}
.career-course .txt-bottom::after {
    content: "";
    position: absolute;
    height: 2px;
    background: #F4797D;
    width: 80px;
    left: 50%;
    top: 65px;
    margin-left: -40px;
}
.career-course .txt-bottom::before {
    content: "";
    position: absolute;
    width: 360px;
    height: 203px;
    background: url(../img/ic-career-course.png) no-repeat;
    background-size: 100% !important;
    z-index: -1;
    right: -250px;
    top: 75px;
}
img {
    max-width: 100%;
    display: block;
    margin: 0 auto;
}
@media(max-width: 860px){
    .career-course .tab-content .intro .txt h3 {
        font-size: 2.5rem;
    }
    .career-course .tab-content .intro .txt .lg {
        font-size: 9rem;
    }
    .career-course .tab-content .txt {
        padding: 0 10px 10px;
        margin-top: 0;
    }
    .career-course .tab-content .img {
        padding: 0 10px;
    }
    .career-course .tab-content .intro {
        margin: 0 -10px;
    }
    .career-course .tab-content .cont,
    .career-course .tab-content .txt,
    .career-course .txt-bottom {
        font-size: 1.4rem;
    }
}
@media(max-width: 750px){
    .career-course .tab-in {
        white-space: nowrap;
        overflow-x: auto;
    }
    .career-course .txt-bottom::after {
        height: 1px;
    }
    .career-course .tab-menu {
        width: 708px;
    }
    .career-course .tab-menu li {
        padding: 0 7px;
        font-size: 1.25rem;
        position: relative;
    }
    .career-course .tab-menu {
        margin: 0 -7px;
        padding-left: 15px;
    }
    .career-course .tab-menu li h3 {
        font-size: 1.25rem;
    }
    .career-course .container {
        padding-right: 0;
        padding-left: 0
    }
    .career-course .tab-menu li .inner {
        padding-top: 50px;
    }
    .career-course .tab-menu li .no {
        top: 5px;
    }
    .career-course .tab-menu li a {
        /* display: none; */
        margin-top: 80px;
    }
    .career-course .tab-menu .lg {
        font-family: "Ballet", cursive;
        font-size: 3rem;
        color: #FDE4E5;
        line-height: 1;
        text-align: center;
        padding: 25px 0;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 70px;
    }
    .career-course .tab-content .intro .txt .lg {
        display: none;
    }
    .career-course .tab-content .intro,
    .career-course .tab-content .cont {
        margin: 0;
    }
    .career-course .tab-content .img,
    .career-course .tab-content .txt {
        width: 100%;
        padding: 0 15px;
    }
    .career-course .tab-content .intro .txt h3 {
        font-size: 1.7rem;
        text-align: center;
        padding-top: 35px;
        padding-bottom: 30px;
    }
    .career-course .tab-content .txt {
        text-align: center;
        font-size: 1.25rem;
    }
    .career-course .tab-content .cont {
        flex-direction: column-reverse;
        padding-top: 50px;
    }
    .career-course .tab-content .cont .img {
        padding-bottom: 40px;
    }
    .career-course .txt-bottom {
        font-size: 1.25rem;
    }
}
.ceo-message {
    padding-top: 85px;
    overflow: hidden;
    position: relative;
}
.ceo-message h2 {
    font-size: 3.5rem;
    font-family: "Libre Caslon Display", serif;
    font-weight: 400;
}
.ceo-message .intro img {
    max-width: 280px;
    margin-top: 5px;
    margin-bottom: 20px;
}
.ceo-message .intro {
    text-align: center;
}
.ceo-message .item {
    text-align: center;
    padding-top: 60px;
}
.ceo-message .item .tl {
    background: url(../img/ceo-tl-bg.jpg) no-repeat;
    background-size: cover !important;
    width: 160px;
    height: 160px;
    margin: 0 auto;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    line-height: 1.25;
}
.ceo-message .item .tl .en {
    font-family: "Libre Caslon Display", serif;
}
.ceo-message .item h3 {
    font-size: 2.4rem;
    /* font-weight: 300; */
    line-height: 1.8;
    padding: 35px 0 20px;
}
.ceo-message .sign {
    text-align: center;
    padding-top: 50px;
    padding-bottom: 40px;
    font-size: 1.4rem;
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    line-height: 1.;
    position: relative;
}
.ceo-message .sign::after {
    content: "";
    position: absolute;
    height: 2px;
    background: #F4797D;
    width: 80px;
    left: 50%;
    bottom: -30px;
    margin-left: -40px;
}
.ceo-message .sign img {
    max-width: 180px;
    margin-top: 12px;
}
.ceo-message .item ul li {
    display: flex;
    flex-wrap: wrap;
    padding-top: 60px;
    margin: 0 -20px;
}
.ceo-message .item ul li .img {
    width: 50%;
    padding: 0 20px;
}
.ceo-message .item ul li .img img {
    width: 100%;
    display: block;
}
.ceo-message .item ul li .txt {
    flex: 1;
    text-align: left;
    max-width: 420px;
    margin: 0 auto;
    padding-left: 80px;
    position: relative;
    padding-right: 20px;
}
.ceo-message .item ul li .txt h4 {
    writing-mode: vertical-rl;
    font-size: 2.4rem;
    /* font-weight: 300; */
    text-align: left;
    position: absolute;
    left: -15px;
    top: 0;
}
.ceo-message .item ul li .txt .in {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.ceo-message .item ul li.odd .txt {
    padding-left: 20px;
    padding-right: 80px;
}
.ceo-message .item ul li.odd .txt h4 {
    left: unset;
    right: -15px;
}
.ceo-message .item.way ul li .txt {
    padding: 0;
}
.ceo-message .item.way ul li .txt h4 {
    writing-mode: unset;
    font-size: 2.4rem;
    position: unset;
    left: 0;
    top: 0;
    text-align: center;
    padding-bottom: 25px;
}
.ceo-message .item.way ul li .txt .in {
    height: auto;
    display: unset;
    flex-direction: unset;
    justify-content: unset;
    text-align: center;
}
.ceo-message .item.way ul li {
    align-items: flex-end;
}
.ceo-message .item.way .btn-box {
    text-align: center;
}
.ceo-message .item.way .btn span {
    padding-right: 0;
}
.ceo-message .item.way .btn span::after {
    display: none;
}
.ceo-message .item.way .img {
    position: relative;
}
.ceo-message .item.way .no {
    font-size: 10rem;
    line-height: 1;
    font-family: "Ballet", cursive;
    position: absolute;
    right: 0px;
    top: -44px;
}
.btn.light {
    background: unset;
    border: 1px solid #F4797D;
    min-width: 240px;
    padding: 0;
}
.career-course .btn.light,
.ceo-message .item.way .btn.light {
    animation: anime1 .6s ease 0s infinite alternate;
    transform-origin:center;
}
@keyframes anime1 {
  from {
    transform: scale(0.93,0.93);
  }
  to {
    transform: scale(1,1);
  }
}
.career-course .btn.light:hover,
.ceo-message .item.way .btn.light:hover {
    animation: unset;
}
.btn.light span {
    color: #F4797D;
    font-size: 1.6rem;
    font-weight: 500;
    padding: 11px 15px;
    font-weight: 500;
    overflow: hidden;
    position: relative;
    display: block;
    z-index: -1;
}
.btn.light span:before {
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    background: #F4797D;
    position: absolute;
    top: 0;
    z-index: 0;
    left: -100%;
    transition: all cubic-bezier(.07, .82, .19, .95) .8s;
}
.btn.btn-line span:before  {
    background: #00BB00;
}
.btn.no-border {
    border: unset;
}
.btn.no-border::after,
.btn.no-border::before {
    display: none;
}
footer .btn span::after {
    display: none;
}
.btn.no-border span::before {
    top: calc(100% - 2px);
}
.btn.light::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 7px;
    border-bottom: 1px solid #F4797D;
    border-right: 2px solid #F4797D;
    left: -40px;
    transform: skewX(45deg);
    top: 50%;
    margin-top: -6px;
    transition: all cubic-bezier(.07, .82, .19, .95) .8s;
    opacity: 0;
} 
.btn.btn-line::after {
    border-color: #00BB00;
}
.btn.btn-line {
    border: 1px solid #00BB00;
}
.btn.btn-line span {
    color: #00BB00;
}
@media(hover:hover) {
    .btn.light:hover::after {
        left: calc(100% - 2px);
        opacity: 1;
        z-index: -1;
    }
    .btn.light:hover span:before {
        left: 0;
        z-index: -3;
    }
    .btn.light:hover span {
        color: #fff;
    }
    .btn.no-border:hover span {
        color: #F4797D;
    }
}
@media(hover:none){
    .btn.light:active::after {
        left: calc(100% - 2px);
        opacity: 1;
        z-index: -1;
    }
    .btn.light:active span:before {
        left: 0;
        z-index: -3;
    }
    .btn.light:active span {
        color: #fff;
    }
    .btn.no-border:active span {
        color: #F4797D;
    }
}
.ceo-message .item.way .odd .no {
    right: unset;
    left: 0;
}
.ceo-message .item.questions ul {
    padding-top: 10px;
}
.ceo-message .item.questions li {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 0 0 20px;
    margin: 0;
}
.ceo-message .item.questions li p {
    display: flex;
    align-items: flex-start;
    width: 100%;
    padding: 1px 12px;
}
.ceo-message .item.questions li .i {
    width: 24px;
    height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    margin-top: 5px;
    margin-right: 15px;
}
.ceo-message .item.questions li .q {
    border-radius: 10px;
    border: 1px dashed #323232;
    margin-bottom: 8px;
    position: relative;
    cursor: pointer;
}
.ceo-message .item.questions li .q::before,
.ceo-message .item.questions li .q::after {
    content: "";
    position: absolute;
    background: #F4797D;
    right: 12px;
    top: 50%;
    transition: .3s;
}
.ceo-message .item.questions li .q::before {
    width: 16px;
    height: 2px;
    margin-top: -1px;
}
.ceo-message .item.questions li .q::after {
    width: 2px;
    height: 16px;
    margin-top: -8px;
    margin-right: 7px;
}
.ceo-message .item.questions li.active .q::after {
    display: none;
}
.ceo-message .item.questions li .q .i {
    background: #323232;
    color: #fff;
}
.ceo-message .item.questions li .a {
    display: none;
}
.ceo-message .item.questions li .a .i {
    color: #F4797D;
}
.ceo-message .item.questions li .tx {
    flex: 1;
}
.ceo-message .item {
    position: relative;
}
.ceo-message .item.philosophy::before {
    content: "";
    position: absolute;
    width: 360px;
    height: 190px;
    background: url(../img/ic-philosophy.png) no-repeat;
    background-size: 100% !important;
    z-index: -1;
    left: -140px;
    top: 25px;
}
.ceo-message .item.vision::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 330px;
    background: url(../img/ic-vision.png) no-repeat;
    background-size: 100% !important;
    z-index: -1;
    right: -262px;
    top: -150px;
}
.ceo-message .item.life::before {
    content: "";
    position: absolute;
    width: 380px;
    height: 200px;
    background: url(../img/ic-life.png) no-repeat;
    background-size: 100% !important;
    z-index: -1;
    left: -275px;
    top: -110px;
}
.ceo-message .item.way::before {
    content: "";
    position: absolute;
    width: 380px;
    height: 214px;
    background: url(../img/ic-way.png) no-repeat;
    background-size: 100% !important;
    z-index: -1;
    right: -305px;
    top: -135px;
}
.ceo-message .item.questions::before {
    content: "";
    position: absolute;
    width: 380px;
    height: 201px;
    background: url(../img/ic-questions.png) no-repeat;
    background-size: 100% !important;
    z-index: -1;
    left: -200px;
    top: -90px;
}
@media(max-width:860px){
    .ceo-message {
        font-size: 1.4rem;
    }
    .ceo-message .item ul li .txt h4{
        font-size: 2rem;
        line-height: 1.8;
        left: 0;
    }
    .ceo-message .item ul li .txt {
        padding-left: 60px;
    }
    .ceo-message .item ul li.odd .txt {
        padding-left: 20px;
    }
    .ceo-message .item ul li.odd .txt h4 {
        right: 0;
    }
}
@media(max-width:750px){
    .ceo-message .item {
        margin: 0 -5px;
        padding-top: 50px;
    }
    .ceo-message .item ul li {
        margin: 0;
    }
    .ceo-message h2 {
        font-size: 2.4rem;
        margin-bottom: 60px;
    }
    .ceo-message {
        padding-top: 50px;
        font-size: 1.25rem;
    }
    .ceo-message .intro .img {
        text-align: center;
    }
    .ceo-message .intro img {
        max-width: 200px;
        margin: 0 auto 45px;
    }
    .ceo-message .item .tl {
        font-size: 1.7rem;
        width: 112px;
        height: 112px;
        line-height: 1.75;
    }
    .ceo-message .item h3 {
        font-size: 1.7rem;
        padding-top: 50px;
    }
    .ceo-message .sign {
        font-size: 1rem;
        padding-bottom: 0;
        margin-bottom: -20px;
    }
    .ceo-message .sign img {
        max-width: 125px;
        margin: 8px auto;
    }
    .ceo-message .item ul li .img {
        width: 100%;
        padding: 0;
    }
    .ceo-message .item ul li .txt {
        padding-left: 68px;
        padding-top: 40px;
        font-size: 1.25rem;
        line-height: 2.55;
    }
    .ceo-message .item ul li {
        padding: 40px 5px 0;
    }
    .ceo-message .item ul li .txt h4 {
        font-size: 1.7rem;
        text-align: left;
        position: absolute;
        left: 0px;
        top: 55px;
        line-height: 1.6;
        bottom: -10px;
    }
    .ceo-message .item ul li.odd {
        flex-direction: column-reverse;
        padding-bottom: 40px;
    }
    .ceo-message .item ul li.odd .txt h4 {
        right: 0;
        height: max-content;
    }
    .ceo-message .item ul li.odd .txt {
        padding-right: 68px;
    }
    .ceo-message .item.way .no {
        font-size: 7rem;
        right: 5px;
        top: -32px;
    }
    .ceo-message .item.way ul li .txt h4 {
        padding-top: 40px;
        font-size: 1.7rem;
    }
    .ceo-message .item.way ul li {
        padding-bottom: 20px;
    }
    .ceo-message::before {
        content: "";
        position: absolute;
        width: 90px;
        height: 66px;
        background: url(../img/ic-message.png) no-repeat;
        background-size: 100% !important;
        z-index: -1;
        left: 0;
        top: 20px;
    }
    .ceo-message .item.way .btn {
        min-width: 166px;
    }
    .ceo-message .item.way .btn span{
        font-size: 1.388rem;
        padding: 7px 15px;
    }
    .ceo-message .item.way ul li.odd .txt {
        padding-right: 0;
    }
    .ceo-message .item.way ul li.odd {
        padding-bottom: 0;
    }
    .ceo-message .item.questions {
        margin: 0;
    }
    .ceo-message .item.questions li .i {
        font-size: 1.1rem;
        width: 17px;
        height: 17px;
        padding-bottom: 2px;
        margin-right: 10px;
        margin-top: 0;
    }
    .ceo-message .item.questions li {
        font-size: 1.25rem;
        line-height: 1.4;
        padding-bottom: 8px;
    }
    .ceo-message .item.questions li .q {
        border-radius: 5px;
        padding: 6px 20px 6px 6px;
    }
    .ceo-message .item.questions li .q::before, 
    .ceo-message .item.questions li .q::after {
        right: 6px;
    }
    .ceo-message .item.questions li .q::before {
        width: 11px;
        height: 1px;
        margin-top: -1px;
    }
    .ceo-message .item.questions li .q::after {
        width: 1px;
        height: 11px;
        margin-top: -6px;
        margin-right: 5px;
    }
    .ceo-message .item.questions li .a .tx {
        line-height: 2.55;
    }
    .ceo-message .item.philosophy::before {
        width: 70px;
        height: 82px;
        background: url(../img/ic-philosophy-sp.png) no-repeat;
        left: unset;
        top: unset;
        bottom: -50px;
        right: -10px;
    }
    .ceo-message .item.vision::before,
    .ceo-message .item.way::before {
        display: none;
    }
    .ceo-message .item.value::before {
        content: "";
        position: absolute;
        width: 100px;
        height: 72px;
        background: url(../img/ic-message.png) no-repeat;
        background-size: 100% !important;
        z-index: -1;
        left: -10px;
        top: 10px;
    }
    .ceo-message .item.life::before {
        width: 80px;
        height: 58px;
        background: url(../img/ic-message.png) no-repeat;
        z-index: -1;
        left: -10px;
        top: 0px;
    }
    .ceo-message .item ul li.odd {
        position: relative;
    }
    .ceo-message .item ul li .txt {
        padding-right: 0
    }
    .ceo-message .item ul li.odd .txt {
        padding-left: 0;
    }
    .ceo-message .item.life ul li.odd::after {
        content: "";
        position: absolute;
        width: 65px;
        height: 73px;
        background: url(../img/ic-life1.png) no-repeat;
        background-size: 100% !important;
        right: -10px;
        top:-5px;
    }
    .ceo-message .item.business::after {
        content: "";
        position: absolute;
        width: 85px;
        height: 65px;
        background: url(../img/ic-message.png) no-repeat;
        background-size: 100% !important;
        right: unset;
        left: -10px;
        top: 15px;
    }
    .ceo-message .item.way li.odd::after {
        content: "";
        position: absolute;
        width: 65px;
        height: 73px;
        background: url(../img/ic-life1.png) no-repeat;
        background-size: 100% !important;
        right: -10px;
        top:-20px;
    }
    .ceo-message .item.questions::before {
        display: none;
    }
}
/*
==============================================================
====================== End ceo-message =======================
==============================================================
*/
/*
==============================================================
============================ job =============================
==============================================================
*/
.job {
    overflow-x: hidden;
}
.job .sub-banner {
    position: relative;
}
.job .sub-banner img {
    width: 100%;
}
.job .sub-banner .txt {
    position: absolute;
    top: 15.5vw;
    right: 4.16vw;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.job.job3 .sub-banner .txt {
    top: 10vw;
    align-items: center;
}
.job.job2 .sub-banner .txt {
    align-items: flex-end;
}
.job .sub-banner h2 {
    font-size: 2.77vw;
    line-height: 1.86;
    font-weight: 300;
}
.job .sub-banner .lg {
    font-family: "Ballet", cursive;
    font-size: 11vw;
    color: #FBC9CB;
    line-height: 1.22;
    text-align: right;
    margin-top: 3vw;
}
.job .line {
    line-height: 1.8;
}
.job .the-social {
    text-align: center;
    padding-top: 80px;
}
.job .roadmap {
    padding-top: 70px;
}
.job .roadmap ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.job .roadmap ul li {
    padding: 22px;
    position: relative;
}
.job .roadmap ul li p {
    width: 144px;
    height: 144px;
    border-radius: 50%;
    border: 1px solid #F4797D;
    color: #F4797D;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.5;
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    text-align: center;
    background: #fff;
    flex-direction: column;
}
.job .roadmap ul li p.sm {
    font-size: 1.4rem;
}
.job .roadmap ul li::before {
    content: "";
    position: absolute;
    height: 1px;
    left: 0;
    right: 0;
    background: #F4797D;
    top: 50%;
    z-index: -2;
}
.job .roadmap ul li:first-child::before {
    left: 50%;
}
.job .roadmap ul li:last-child::before {
    right: 50%;
}
.job .roadmap ul li::after {
    content: "";
    position: absolute;
    height: 1px;
    left: 100%;
    background: #F4797D;
    top: 50%;
    z-index: -1;
    border-radius: 50%;
}
.job .roadmap ul li:first-child::after {
    width: 8px;
    height: 8px;
    margin-left: -4px;
    margin-top: -3px;
}
.job .roadmap ul li:nth-child(2)::after {
    width: 12px;
    height: 12px;
    margin-left: -6px;
    margin-top: -5px;
}
.job .roadmap ul li:nth-child(3)::after {
    width: 16px;
    height: 16px;
    margin-left: -8px;
    margin-top: -7px;
}
.job .roadmap ul li:nth-child(4)::after {
    width: 20px;
    height: 20px;
    margin-left: -10px;
    margin-top: -9px;
}
.job .roadmap ul li:last-child::after{
    display: none;
}
.job .roadmap .profile {
    padding: 60px 20px 0;
}
.job .roadmap .profile .item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 35px;
}
.job .roadmap .profile .item .lb {
    width: 285px;
    font-size: 2.4rem;
    line-height: 1.8;
    font-weight: 300;
    border-right: 1px solid #000;
    margin-right: 15px;
    min-height: 60px;
    /* display: flex;
    align-items: center; */
    text-align: justify;
    text-align-last: justify;
    padding-right: 20px;
    padding-top: 5px;
}
.job .roadmap .profile .item .in {
    flex: 1;
    min-height: 60px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.job .senior-story {
    overflow: hidden;
}
.job .senior-story .box {
    padding-top: 55px;
    position: relative;
}
.job .senior-story .box.box1::before {
    content: "";
    position: absolute;
    width: 360px;
    height: 203px;
    background: url(../img/job1/ic-box1.png) no-repeat;
    background-size: 100% !important;
    z-index: -1;
    right: -320px;
    top: 60px;
}
.job .senior-story .box.box2::before {
    content: "";
    position: absolute;
    width: 360px;
    height: 190px;
    background: url(../img/job1/ic-box2.png) no-repeat;
    background-size: 100% !important;
    z-index: -1;
    left: -300px;
    top: -30px;
}
.job .senior-story .box .intro {
    display: flex;
    flex-wrap: wrap;
    padding-top: 10px;
}
.job .senior-story .box .intro .img {
    width: 50%;
    padding-right: 18px;
}
.job .senior-story .box .intro .txt {
    flex: 1;
    padding-left: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 35px;
}
.job .senior-story .box .intro .txt h3 {
    font-size: 2.4rem;
    line-height: 1.83;
    font-weight: 300;
}
.job .senior-story .box .intro .txt .in {
    text-align: right;
}
.job .senior-story .box .intro .txt .name img {
    height: 50px;
    margin: 0 0 5px auto;
}
.job .senior-story .box .txt-box {
    padding-top: 30px;
    display: flex;
    margin: 0 -12px;
}
.job .senior-story .box .txt-box .inn {
    width: 50%;
    padding: 0 12px;
    font-weight: 300;
}
.job .senior-story .box .profile {
    padding-top: 60px;
}
.job .senior-story .box .profile h3 {
    font-size: 2rem;
    line-height: 2;
    font-family: "Libre Caslon Display", serif;
    font-weight: 400;
}
.job .senior-story .box .profile .items {
    display: flex;
    flex-wrap: wrap;
    background: #FEF8F8;
    padding: 20px 40px;
    align-items: flex-start;
}
.job .senior-story .box .profile .items .item {
    width: 50%;
    display: flex;
    line-height: 1.75;
    font-weight: 300;
}
.job .senior-story .box .profile .items .item h4 {
    width: 140px;
    text-align: justify;
    text-align-last: justify;
    padding-right: 25px;
    position: relative;
    font-weight: 300;
}
.job .senior-story .box .profile .items .item h4::after {
    content: "";
    position: absolute;
    width: 1px;
    /* height: 72px; */
    top: 7px;
    background: #323232;
    right: 0;
    bottom: 7px;
}
.job .senior-story .box .profile .items .item.last h4::after {
    height: 44px;
}
.job .senior-story .box .profile .items .item .tx {
    flex: 1;
    padding-left: 25px;
}
.job .senior-story .box .profile .days {
    padding-top: 40px;
}
.job .senior-story .box .profile .days .tl {
    text-align: center;
}
.job .senior-story .box .profile .days .tl .cmt {
    font-size: 2rem;
    line-height: 2;
    border: 1px solid #323232;
    display: inline-block;
    min-width: 400px;
    padding: 3px 15px;
    background: #fff;
    margin-bottom: 32px;
    position: relative;
}
.job .senior-story .box .profile .days .tl .cmt::before,
.job .senior-story .box .profile .days .tl .cmt::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 12px;
    left: 50%;
    bottom: -12px;
    margin-left: -9px;
    border-right: 9px solid transparent;
    border-left: 9px solid transparent;
}
.job .senior-story .box .profile .days .tl .cmt::before {
    border-top: 12px solid #323232;
}
.job .senior-story .box .profile .days .tl .cmt::after {
    border-top: 12px solid #fff;
    margin-left: -8px;
}
.job .senior-story .box .profile .days .tl h4 {
    font-size: 2.4rem;
    line-height: 1.75;
    font-weight: 300;
}
.job .senior-story .box .profile .days .ct {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    max-width: 710px;
    margin: 0 auto;
}
.job .senior-story .box .profile .days .ct ul {
    width: 50%;
    padding-top: 25px;
}
.job .senior-story .box .profile .days .ct ul:last-child {
    padding-left: 20px;
}
.job .senior-story .box .profile .days .ct ul li {
    display: flex;
    align-items: center;
    line-height: 1.5;
    padding: 10px 0;
    position: relative;
}
.job .senior-story .box .profile .days .ct ul li .time {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    border: 1px solid #323232;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    position: relative;
}
.job .senior-story .box .profile .days .ct ul li .time::before {
    content: '';
    position: absolute;
    width: 1px;
    left: 50%;
    top: 100%;
    height: 100%;
    background: #323232;
    z-index: -1;
}
.job .senior-story .box .profile .days .ct ul li:last-child .time::before {
    display: none;
}
.job .senior-story .box .profile .days .ct ul li .tx {
    padding-left: 20px;
    flex: 1;
}
.job .senior-story .box .profile .days .ct .ic1 {
    position: absolute;
    width: 56px;
    right: 56%;
    top: 20%;
}
.job .senior-story .box .profile .days .ct .ic2 {
    position: absolute;
    width: 64px;
    right: 25px;
    bottom: 10px;
}
.job .senior-story .box .profile .days .ct .ic3 {
    position: absolute;
    width: 56px;
    right: 54%;
    bottom: 10px;
}
.job .senior-story .box .profile .days .ct .ic7 {
    position: absolute;
    width: 64px;
    right: 50%;
    top: 40%;
}
.job.job2 .senior-story .box .profile .days .ct .ic3 {
    right: 60%;
    bottom: 21%;
}
.job.job2 .senior-story .box .profile .days .ct .ic2 {
    bottom: 20%;
    right: 0;
}
.job .senior-story .box .profile .days .ct .ic4 {
    position: absolute;
    width: 64px;
    right: 10px;
    bottom: 60px;
}
.job .senior-story .box .profile .days .ct .ic5 {
    position: absolute;
    width: 81px;
    right: 52%;
    top: 20px;
}
.job .senior-story .box .profile .days .ct .ic6 {
    position: absolute;
    width: 64px;
    right: -80px;
    bottom: 40px;
}
.job.job2 .senior-story .box .profile .days .ct .ic6 {
    right: 10%;
    bottom: 0%;
}
.job .senior-story .box .profile .days .ct .ic8 {
    position: absolute;
    width: 117px;
    right: 53%;
    bottom: 10px;
}
.job .senior-story .box .profile .txt-box {
    font-size: 1.4rem;
    line-height: 2.1;
}
.job .senior-story .box .profile .txt-box .inn {
    padding: 0 20px;
}
.job .senior-story .box.box2 .intro .txt {
    padding-left: 0;
    padding-right: 18px;
}
.job .senior-story .box.box2 .intro .img {
    padding-left: 18px;
    padding-right: 0;
}
.job .senior-story .box.box2 .intro .txt .name img {
    height: 50px;
}
.job .training-program {
    text-align: center;
    padding: 70px 0;
}
.job .guidelines {
    background: #FEF8F8;
    padding: 80px 0;
    margin-bottom: 50px;
    position: relative;
}
.job .guidelines::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 330px;
    background: url(../img/job1/ic-guidelines.png) no-repeat;
    background-size: 100% !important;
    right: 100px;
    top: -140px;
}
.job .guidelines ul li {
    display: flex;
    flex-wrap: wrap;
    line-height: 1.75;
    padding-bottom: 30px;
}
.job .guidelines ul li .lb {
    width: 160px;
    padding-right: 35px;
    text-align: justify;
    text-align-last: justify;
    font-family: "Zen Kaku Gothic Antique", sans-serif;
}
.job .guidelines ul li .txt {
    flex: 1;
    font-family: "Zen Kaku Gothic Antique", sans-serif;
}
.job .guidelines .process {
    padding-top: 40px;
    text-align: center;
    font-size: 1.4rem;
    position: relative;
}
.job .guidelines .process::before {
    content: "";
    position: absolute;
    width: 380px;
    height: 200px;
    background: url(../img/job1/ic-process.png) no-repeat;
    background-size: 100% !important;
    left: -310px;
    top: -110px;
}
.job .guidelines .process ul {
    padding-bottom: 22px;
}
.job .guidelines .process ul li {
    font-size: 2rem;
    text-align: center;
    display: block;
    padding: 10px 0;
    position: relative;
    z-index: 1;
}
.job .guidelines .process ul li::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    height: 100%;
    border-left: 1px dashed #323232;
    z-index: -1;
}
.job .guidelines .process ul li:last-child:before {
    display: none;
}
.job .guidelines .process ul li span {
    background: #fff;
    border: 1px solid #323232;
    display: block;
    border-radius: 10px;
    line-height: 2;
}
@media(max-width:1024px){
    .job .roadmap ul li p {
        width: 115px;
        height: 115px;
        font-size: 1.3rem;
    }
    .job .roadmap ul li {
        padding: 14px;
    }
    .job .roadmap ul li:nth-child(4)::after {
        width: 14px;
        height: 14px;
        margin-left: -7px;
        margin-top: -6px;
    }
    .job .senior-story .box .profile .days .ct .ic6 {
        right: 0;
    }
    .job .roadmap ul li:nth-child(3)::after {
        width: 12px;
        height: 12px;
        margin-left: -6px;
        margin-top: -5px;
    }
    .job .roadmap ul li:nth-child(2)::after {
        width: 10px;
        height: 10px;
        margin-left: -5px;
        margin-top: -4px;
    }
    .job .roadmap ul {
        margin: 0 -10px;
    }
    .job .roadmap ul li p.sm {
        font-size: 1rem;
    }
}
@media(max-width: 750px){
    .job .sub-banner h2 {
        font-size: 5.1vw;
        line-height: 1.7;
    }
    .job .sub-banner .lg {
        font-size: 14.8vw;
        margin-top: 6vw;
        margin-right: -3vw;
    }
    .job.job2 .sub-banner .lg {
        margin-top: 1vw;
    }
    
    .job.job3 .sub-banner .lg {
        margin-top: 2vw;
    }
    .job .sub-banner .txt {
        top: 21vw;
        right: 8vw;
        display: flex;
        align-items: flex-end;
    }
    .job.job2 .sub-banner .txt {
        top: 18vw;
    }
    .job.job3 .sub-banner .txt {
        top: 18vw;
    }
    .job .line {
        font-size: 1.7rem;
    }
    .job .the-social {
        padding-top: 50px;
        font-size: 1.25rem;
    }
    .job .roadmap {
        padding-top: 50px;
    }
    .job .roadmap ul li p {
        width: 100%;
        height: auto;
        border-radius: 5px;
        font-weight: 500;
        padding: 3px 15px;
        font-size: 1.25rem;
    }
    .job .roadmap ul li {
        width: 100%;
    }
    .job .roadmap ul {
        margin: 0;
    }
    .job .roadmap ul li::before {
        width: 1px;
        height: 100%;
        left: 50%;
        right: unset;
        top: 50%;
    }
    .job .roadmap ul li:last-child:before {
        display: none;
    }
    .job .roadmap ul li::after {
        left: 50%;
        top: 100%;
    }
    .job .roadmap ul li:first-child::after {
        width: 5px;
        height: 5px;
        margin-left: -2px;
        margin-top: -3px;
    }
    .job .roadmap ul li:nth-child(2)::after {
        width: 7px;
        height: 7px;
        margin-left: -3px;
        margin-top: -4px;
    }
    .job .roadmap ul li:nth-child(3)::after {
        width: 9px;
        height: 9px;
        margin-left: -4px;
        margin-top: -4px;
    }
    .job .roadmap ul li:nth-child(4)::after {
        width: 11px;
        height: 11px;
        margin-left: -5px;
        margin-top: -5px;
    }
    .job .roadmap .profile .item .lb {
        width: 110px;
        font-size: 1.7rem;
        border-right: unset;
        margin-right: 12px;
        padding-right: 0;
    }
    .job .roadmap .profile .item .in {
        font-size: 1.25rem;
        line-height: 2.5;
        padding-left: 12px;
        position: relative;
    }
    .job .roadmap .profile .item .in::before {
        content: "";
        position: absolute;
        width: 1px;
        background: #323232;
        top: 8px;
        bottom: 8px;
        left: 0;
    }
    .job .roadmap .profile .item {
        align-items: flex-start;
        margin-bottom: 25px;
    }
    .job .roadmap .profile {
        padding: 40px 0px 0;
    } 
    .job .roadmap .profile .item .lb {
        min-height: unset;
    }
    .job .senior-story .box {
        padding-top: 30px;
        position: relative;
    }
    .job .senior-story .box.box1::before {
        content: "";
        position: absolute;
        width: 90px;
        height: 66px;
        background: url(../img/ic-message.png) no-repeat;
        background-size: 100% !important;
        z-index: -1;
        left: -15px;
        top: 0px;
    }
    .job .senior-story .box .intro .img {
        width: 100%;
        padding-right: 0;
    }
    .job .senior-story .box .intro .txt h3 {
        font-size: 1.7rem;
        line-height: 1.83;
    }
    .job .senior-story .box .intro .txt {
        flex: auto;
        padding-left: 0;
        padding-top: 35px;
    }
    .job .senior-story .box .intro .txt .in {
        padding-top: 30px;
        font-size: 1.25rem;
    }
    .job .senior-story .box .intro .txt .name img {
        height: 35px;
    }
    .job .senior-story .box .txt-box .inn {
        width: 100%;
        font-size: 1.25rem;
    }
    .job .senior-story .box .txt-box {
        flex-wrap: wrap;
    }
    .job .senior-story .box .profile h3 {
        font-size: 1.4rem;
    }
    .job .senior-story .box .profile {
        padding-top: 45px;
    }
    .job .senior-story .box .profile .items {
        padding: 14px 12px;
        align-items: flex-start;
    }
    .job .senior-story .box .profile .items .item h4 {
        width: 105px;
        padding-right: 15px;
    }
    .job .senior-story .box .profile .items .item {
        width: 100%;
        font-size: 1.25rem;
        line-height: 2.5;
        align-items: flex-start;
    }
    .job .senior-story .box .profile .items .item h4::after {
        bottom: 0;
        height: unset;
        top: 0;
    }
    .job .senior-story .box .profile .days .tl .cmt {
        font-size: 1.4rem;
        min-width: 2.78px;
        padding: 2px 15px;
        margin-bottom: 15px;
    }
    .job .senior-story .box .profile .days .tl .cmt::before, .job .senior-story .box .profile .days .tl .cmt::after {
        width: 12px;
        height: 6px;
        bottom: -6px;
        margin-left: -5px;
        border-right: 5px solid transparent;
        border-left: 5px solid transparent;
    }
    .job .senior-story .box .profile .days .tl .cmt::after {
        border-top: 6px solid #fff;
        margin-left: -4px;
    }
    .job .senior-story .box .profile .days .tl .cmt::before {
        border-top: 6px solid #323232;
    }
    .job .senior-story .box .profile .days .tl h4 {
        font-size: 1.7rem;
    }
    .job .senior-story .box .profile .days .ct ul:last-child {
        padding-left: 0;
    }
    .job .senior-story .box .profile .days .ct ul {
        width: 100%;
    }
    .job.job2 .senior-story .box .profile .days .ct .ic3 {
        right: 18%;
        bottom: unset;
        top: 9%;
    }
    .job.job2 .senior-story .box .profile .days .ct .ic2 {
        bottom: 0;
        right: 18%;
    }
    .job .senior-story .box .profile .days .ct .ic7 {
        width: 45px;
        right: 10%;
        top: 25%;
}
    .job .senior-story .box .profile .days .ct ul:last-child {
        padding-top: 0;
    }
    .job .senior-story .box .profile .days .ct ul li:last-child .time::before {
        display: block;
    }
    .job .senior-story .box .profile .days .ct ul:last-child li:last-child .time::before {
        display: none;
    }
    .job .senior-story .box .profile .days .ct ul li .time {
        width: 28px;
        height: 28px;
        font-size: 0.85rem;
        padding-top: 2px;
    }
    .job .senior-story .box .profile .days .ct ul li {
        padding: 5px 0;
    }
    .job .senior-story .box .profile .days .ct ul li .tx {
        font-size: 1.25rem;
        padding-top: 5px;
        padding-left: 12px;
    }
    .job .senior-story .box .profile .days .ct .ic1 {
        width: 40px;
        right: 15%;
        top: 9%;
    }
    .job .senior-story .box .profile .days .ct .ic2 {
        width: 45px;
        right: 18%;
        bottom: 5px;
    }
    .job .senior-story .box .profile .days .ct {
        padding: 0 20px;
    }
    .job .senior-story .box .profile .days .ct .ic3 {
        width: 40px;
        right: 18%;
        bottom: unset;
        top: 9%;
    }
    .job .senior-story .box .profile .days .ct .ic4 {
        width: 50px;
        right: 15%;
        bottom: unset;
        bottom: 5px;
    }
    .job .senior-story .box .profile .days .ct .ic5 {
        width: 50px;
        right: 15%;
    }
    .job .senior-story .box .profile .days .ct .ic8 {
        position: absolute;
        width: 80px;
        right: 15%;
        bottom: 42.5%;
    }
    .job .senior-story .box .txt-box {
        margin: 0;
    }
    .job .senior-story .box .profile .txt-box .inn {
        padding: 0;
    }
    .job .senior-story .box.box2 .intro .txt {
        padding-right: 0;
    }
    .job .senior-story .box.box2 .intro .img {
        padding-left: 0;
    }
    .job .senior-story .box .txt-box .inn {
        padding: 0;
    }
    .job .senior-story .box.box2 .intro {
        flex-direction: column-reverse;
    }
    .job .senior-story .box .profile .items .item.last h4::after {
        height: unset;
    }
    .job .senior-story .box .profile .items .item .tx {
        padding-left: 15px;
    }
    .job .training-program {
        text-align: center;
        padding:40px 0;
        font-size: 1.25rem;
    }
    .job .guidelines {
        font-size: 1.25rem;
        padding: 45px 0;
        margin-bottom: 0;
    }
    .job .guidelines ul li .lb {
        width: 75px;
        padding-right: 25px;
    }
    .job .guidelines ul li {
        line-height: 2.55;
    }
    .job .guidelines .process {
        padding-top: 20px;
        font-size: 1rem;
    }
    .job .guidelines .process ul li {
        padding: 5px 5px;
    }
    .job .guidelines .process ul li::before {
        border: 1px dotted #000
    }
    .job .guidelines .process ul li span {
        font-size: 1.25rem;
        border-radius: 5px;
    }
    .job .senior-story .box .profile .days .ct .ic6 {
        width: 45px;
        right: 5%;
        bottom: 0px;
    }
    .job .senior-story .box.box2 .intro .txt .name img {
        height: 35px;
    }
    .job .guidelines::before,
    .job .guidelines .process::before {
        display: none;
    }
}
/*
==============================================================
=========================== End job ==========================
==============================================================
*/
.dialog-content::-webkit-scrollbar {
    width: 25px;
    position: absolute;
}
.dialog-content::-webkit-scrollbar-thumb {
    background-image: url('../img/arr-down.png');
    background-size: 8px 48px;      
    background-repeat: no-repeat;
    background-position: top left;
}
@media(max-width: 750px){
    .dialog-content::-webkit-scrollbar {
        width: 20px;
    }
}