body {
  background: #000;
  color: #FFF;
}

.en {
  font-family: "Teko", sans-serif;
}

.inner {
  width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.entry a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 120px;
  opacity: 0.8;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  line-height: 0.9;
  font-weight: bold;
  font-size: 16px;
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(200, 159, 35, 0)), color-stop(15%, rgb(200, 159, 35)), color-stop(50%, rgb(200, 159, 35)), color-stop(85%, rgb(200, 159, 35)), to(rgba(200, 159, 35, 0)));
  background-image: linear-gradient(90deg, rgba(200, 159, 35, 0) 0%, rgb(200, 159, 35) 15%, rgb(200, 159, 35) 50%, rgb(200, 159, 35) 85%, rgba(200, 159, 35, 0) 100%);
}
.entry a:hover {
  opacity: 1;
}
.entry a .en {
  display: block;
  font-size: 60px;
}

@media (max-width: 736px) {
  .inner {
    width: 100%;
  }
  .entry a {
    height: 100px;
    font-size: 14px;
  }
  .entry a .en {
    font-size: 50px;
  }
}
/*-------------------------------------

animation

-------------------------------------*/
.animation {
  opacity: 0;
  -webkit-transition: 0.8s cubic-bezier(0.4, 0, 0.1, 1);
  transition: 0.8s cubic-bezier(0.4, 0, 0.1, 1);
}

.animation.show {
  opacity: 1;
}

.animation.fadeIn {
  -webkit-transform: translateY(2%) scale(0.95);
          transform: translateY(2%) scale(0.95);
  -webkit-transition: 1.6s cubic-bezier(0.4, 0, 0.1, 1);
  transition: 1.6s cubic-bezier(0.4, 0, 0.1, 1);
  -webkit-transition-delay: 0.3;
          transition-delay: 0.3;
}

.animation.fadeIn.show {
  -webkit-transform: translateY(0) scale(1);
          transform: translateY(0) scale(1);
}

.animation.fadeLeft {
  -webkit-transform: translateX(-10%);
          transform: translateX(-10%);
}

.animation.fadeLeft.show {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.animation.fadeRight {
  -webkit-transform: translateX(10%);
          transform: translateX(10%);
}

.animation.fadeRight.show {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.animation.fadeUp {
  -webkit-transform: translateY(10%);
          transform: translateY(10%);
}

.animation.fadeUp.show {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.animation.fadeDown {
  -webkit-transform: translateY(-3%);
          transform: translateY(-3%);
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.animation.fadeDown.show {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

@media (max-width: 736px) {
  .animation.fadeLeft {
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }
  .animation.fadeRight {
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }
}
/*----------------------------------------

header

----------------------------------------*/
header .logo {
  position: absolute;
  top: 25px;
  left: 25px;
  width: 185px;
}
@media (max-width: 736px) {
  header .logo {
    top: 10px;
    left: 10px;
    width: 110px;
  }
}

/*----------------------------------------

mainVis

----------------------------------------*/
.mainVis .title {
  position: relative;
  width: 100%;
  min-width: 800px;
  height: 100vh;
  min-height: 650px;
  z-index: 2;
}
.mainVis .title h1 {
  width: 100%;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-48%);
          transform: translateY(-48%);
  z-index: -1;
}
@media (min-width: 2200px) {
  .mainVis .title h1 {
    left: calc(50% - 1100px);
    width: 2200px;
  }
}
.mainVis .lead {
  width: 430px;
  margin: 20px auto 100px;
}

@media (max-width: 736px) {
  .mainVis {
    height: 100%;
    overflow: hidden;
  }
  .mainVis .title {
    min-width: 100%;
    max-width: 9999px;
    width: 128%;
    height: 65%;
    min-height: 0;
    margin: 0 -12% 0 -16%;
  }
  .mainVis .lead {
    width: 90%;
    margin: 0 auto;
    -webkit-transition-delay: 0.6s !important;
            transition-delay: 0.6s !important;
  }
}
/*----------------------------------------

mission

----------------------------------------*/
.mission {
  position: relative;
  overflow: hidden;
  background: center/cover url("../images/pho_man.jpg");
  max-width: 1700px;
  min-width: 800px;
  height: 50vw;
  min-height: 700px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto -8.5vw;
}
@media (min-width: 1700px) {
  .mission {
    height: 800px;
    margin-bottom: -140px;
  }
}
.mission::before, .mission::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  position: absolute;
}
.mission::before {
  border-width: 300px 3000px 0 0;
  border-color: #000000 transparent transparent transparent;
  top: -1px;
  right: 0;
}
.mission::after {
  border-width: 0 0 300px 3000px;
  border-color: transparent transparent #000000 transparent;
  bottom: -1px;
  left: 0;
}
.mission p:first-child {
  width: 458px;
}
.mission p:last-child {
  width: 530px;
}

@media (max-width: 736px) {
  .mission {
    min-width: 100%;
    height: auto;
    min-height: 0;
    display: block;
    margin: 0 auto -15vw;
    padding: 110px 0;
  }
  .mission p:first-child,
  .mission p:last-child {
    width: 85%;
    margin: 0 auto;
  }
}
h2.en {
  font-size: 120px;
  line-height: 1;
  color: #bb1d21;
  -webkit-transform: skewY(-5.5deg);
          transform: skewY(-5.5deg);
}
@media (max-width: 736px) {
  h2.en {
    font-size: 80px;
  }
}

/*----------------------------------------

program

----------------------------------------*/
.program {
  margin-bottom: 100px;
  min-width: 800px;
}
.program h3 {
  font-size: 30px;
  font-weight: bold;
  margin: 80px 0 20px;
}
.program h3 span {
  font-size: 12px;
  font-weight: normal;
}
.program h3 em {
  font-family: Arial, Helvetica, "sans-serif";
  font-size: 45px;
  display: inline-block;
  line-height: 1;
  vertical-align: -3px;
}
.program table {
  border-collapse: collapse;
  margin-bottom: 40px;
}
.program th, .program td {
  padding: 20px 0;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
}
.program th {
  text-align: left;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 11em;
}
.program tr:last-child th,
.program tr:last-child td {
  border-bottom: none;
}

@media (max-width: 736px) {
  .program {
    margin-bottom: 100px;
    min-width: 100%;
    padding: 0 20px;
  }
  .program h3 {
    font-size: 26px;
    margin: 40px 0 20px;
    line-height: 1.4;
  }
  .program table {
    margin-bottom: 40px;
  }
  .program th, .program td {
    padding: 15px 0;
  }
  .program th {
    text-align: left;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 6em;
  }
  .program tr:last-child th,
  .program tr:last-child td {
    border-bottom: none;
  }
}
/*----------------------------------------

message

----------------------------------------*/
.message {
  background: #333;
  position: relative;
  min-width: 800px;
}
.message::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  position: absolute;
  border-width: 300px 3000px 0 0;
  border-color: #000000 transparent transparent transparent;
  top: 0;
  right: 0;
}
.message h2 {
  text-align: right;
  padding-top: 1.5vw;
}
.message .lead {
  text-align: right;
  font-weight: bold;
  font-size: 16px;
  line-height: 1.4;
  margin: -30px 0 0;
}
.message .mentor {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 80px;
  padding-bottom: 80px;
}
.message .mentor::after {
  display: block;
  content: "";
  width: 170px;
  height: 0;
}
.message .mentor .btn {
  width: 170px;
  font-size: 11px;
  color: #999;
  line-height: 1.4;
  margin-bottom: 20px;
  cursor: pointer;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.message .mentor .btn:hover {
  opacity: 0.6;
}
.message .mentor .btn .pho {
  display: block;
  margin-bottom: 5px;
  position: relative;
}
.message .mentor .btn .pho::after {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background: no-repeat url("../images/ico_plus.png") #bb1d21;
  background-size: 50%;
  background-position: center;
  position: absolute;
  right: 0;
  bottom: 0;
}
.message .mentor .modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  min-height: 100%;
  background: rgba(0, 0, 0, 0.9);
  /*display: flex;
  justify-content: center;
  align-items: center;*/
  z-index: 100;
  overflow: scroll;
  scrollbar-width: none;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.message .mentor .modal.show {
  visibility: visible;
  opacity: 1;
}
.message .mentor .modal::-webkit-scrollbar {
  display: none;
}
.message .mentor .modal > div {
  width: 800px;
  margin: 50px auto;
  background: #333;
  padding: 50px;
  position: relative;
  text-align: justify;
}
.message .mentor .modal > div h4 {
  font-size: 16px;
  border-bottom: 1px solid #FFF;
  padding-bottom: 5px;
  margin-bottom: 10px;
  margin-top: 30px;
}
.message .mentor .modal > div p + p {
  margin-top: 10px;
}
.message .mentor .modal > div ul {
  list-style: disc;
  margin-left: 1.5em;
}
.message .mentor .modal > div a {
  color: #FFF;
  text-decoration: underline;
}
.message .mentor .modal > div table {
  width: 100%;
  border-collapse: collapse;
}
.message .mentor .modal > div th, .message .mentor .modal > div td {
  padding: 8px 0;
  line-height: 1.4;
  border-bottom: 1px solid #444;
  font-size: 12px;
}
.message .mentor .modal > div th {
  white-space: nowrap;
  padding-right: 1em;
}
.message .mentor .modal > div .closeBtn {
  display: block;
  width: 40px;
  height: 40px;
  background: no-repeat url("../images/ico_plus.png");
  background-size: 50%;
  background-position: center;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  cursor: pointer;
}
.message .mentor .modal > div .profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
.message .mentor .modal > div .profile .pho {
  display: block;
  width: 120px;
  margin-right: 20px;
}
.message .mentor .modal > div .profile .name {
  font-size: 16px;
  font-weight: bold;
}

@media (max-width: 736px) {
  .message {
    min-width: 100%;
  }
  .message h2 {
    padding-top: 0;
    position: absolute;
    right: 20px;
    top: -5vw;
  }
  .message .lead {
    margin: 0;
    padding: 60px 20px 0 0;
  }
  .message .mentor {
    margin-top: 40px;
    padding: 0 20px 40px;
  }
  .message .mentor::after {
    display: none;
  }
  .message .mentor .btn {
    width: calc(50% - 10px);
  }
  .message .mentor .btn:hover {
    opacity: 1;
  }
  .message .mentor .btn .pho::after {
    width: 30px;
    height: 30px;
  }
  .message .mentor .modal {
    height: 100%;
  }
  .message .mentor .modal > div {
    width: calc(100% - 20px);
    margin: 10px auto;
    padding: 20px;
    max-height: calc(100% - 20px);
    overflow-y: scroll;
    overflow-x: hidden;
  }
  .message .mentor .modal > div .profile .pho {
    width: 100px;
  }
  .message .mentor .modal > div .profile .name {
    font-size: 14px;
  }
}
/*----------------------------------------

voice

----------------------------------------*/
.voice {
  margin-bottom: 100px;
  position: relative;
  min-width: 800px;
  overflow: hidden;
}
.voice::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  position: absolute;
  border-width: 300px 3000px 0 0;
  border-color: #333 transparent transparent transparent;
  top: 0;
  right: 0;
}
.voice h2 {
  padding-top: 1vw;
}
.voice .lead {
  font-size: 16px;
  font-weight: bold;
  margin-top: 20px;
}
.voice .voiceWrap {
  background-image: url("../images/pho_voice.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  min-height: 860px;
  margin-top: -40px;
  padding-bottom: 100px;
}
.voice .voiceWrap ul {
  position: relative;
}
.voice .voiceWrap ul li {
  background: rgba(221, 221, 221, 0.9);
  padding: 15px;
  border-radius: 5px;
  color: #000;
  font-weight: bold;
  width: 294px;
  position: absolute;
  line-height: 1.5;
}
.voice .voiceWrap ul li:nth-child(1) {
  top: 133px;
  left: 60px;
  font-size: 18px;
}
.voice .voiceWrap ul li:nth-child(2) {
  top: 228px;
  left: 508px;
  font-size: 14px;
}
.voice .voiceWrap ul li:nth-child(3) {
  width: 349px;
  top: 336px;
  left: 148px;
  font-size: 16px;
}
.voice .voiceWrap ul li:nth-child(4) {
  top: 425px;
  left: 538px;
  font-size: 20px;
}
.voice .voiceWrap ul li:nth-child(5) {
  top: 534px;
  left: 0;
  font-size: 12px;
}
.voice .voiceWrap ul li:nth-child(6) {
  width: 372px;
  top: 635px;
  left: 435px;
  font-size: 16px;
}
.voice .voiceWrap ul li:nth-child(7) {
  width: 268px;
  top: 688px;
  left: 126px;
  font-size: 14px;
}
.voice .voiceWrap ul li::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 11px 11px 0 0;
  border-color: rgba(221, 221, 221, 0.9) transparent transparent transparent;
  position: absolute;
  bottom: -11px;
  left: 30px;
}
.voice .voiceWrap ul li:nth-child(even)::after {
  border-width: 0 11px 11px 0;
  border-color: transparent rgba(221, 221, 221, 0.9) transparent transparent;
  left: auto;
  right: 30px;
}

@media (max-width: 736px) {
  .voice {
    margin-bottom: 40px;
    min-width: 100%;
    padding-top: 30px;
  }
  .voice::before {
    top: 30px;
  }
  .voice::after {
    content: "";
    display: block;
    background: #333;
    width: 100%;
    height: 30px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  .voice h2 {
    padding-top: 0;
    margin: -0.2em 0 0 20px;
  }
  .voice .lead {
    margin: 15px 0 0 20px;
  }
  .voice .voiceWrap {
    background-position: center bottom;
    min-height: 0;
    margin-top: 40px;
    padding-bottom: 75vw;
  }
  .voice .voiceWrap ul {
    position: relative;
  }
  .voice .voiceWrap ul li {
    padding: 15px;
    border-radius: 5px;
    width: 75% !important;
    position: static;
  }
  .voice .voiceWrap ul li:nth-child(odd) {
    margin: 0 0 20px 20px;
  }
  .voice .voiceWrap ul li:nth-child(even) {
    margin: 0 20px 20px auto;
  }
}
/*----------------------------------------

consulting

----------------------------------------*/
.consulting {
  padding: 100px 0;
  background: url("../images/pho_room.jpg");
  background-position: center bottom;
  background-size: cover;
  min-width: 800px;
}
.consulting h2 {
  font-size: 25px;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 25px;
}
.consulting h2 strong {
  font-size: 37px;
  display: block;
}
.consulting h2 + p {
  text-align: center;
}
.consulting h3 {
  font-size: 16px;
  font-weight: bold;
  background: #bb1d21;
  text-align: center;
  width: 240px;
  line-height: 46px;
  border-radius: 23px;
  letter-spacing: 0.2em;
  position: relative;
  margin: 50px auto 40px;
}
.consulting h3::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 5.5px 0 5.5px;
  border-color: #bb1d21 transparent transparent transparent;
  position: absolute;
  left: 50%;
  bottom: -9px;
  margin-left: -5px;
}
.consulting .interview {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
}
.consulting .interview li {
  width: 230px;
}
.consulting .interview li a {
  display: block;
  background: #FFF;
  font-size: 12px;
  font-weight: bold;
}
.consulting .interview li a:hover {
  opacity: 0.6;
}
.consulting .interview li a .pho {
  display: block;
  position: relative;
}
.consulting .interview li a .pho::after {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background: no-repeat url("../images/ico_window.png") #bb1d21;
  background-size: 30%;
  background-position: center;
  position: absolute;
  right: 0;
  bottom: 0;
}
.consulting .interview li a p {
  padding: 10px;
  line-height: 1.4;
}

@media (max-width: 736px) {
  .consulting {
    padding: 60px 0 40px;
    min-width: 100%;
  }
  .consulting h2 {
    font-size: 18px;
  }
  .consulting h2 strong {
    font-size: 26px;
  }
  .consulting h2 + p {
    text-align: justify;
    padding: 0 20px;
    font-size: 13px;
  }
  .consulting h3 {
    line-height: 40px;
    border-radius: 20px;
    margin: 35px auto 30px;
  }
  .consulting .interview {
    display: block;
  }
  .consulting .interview li {
    width: 80%;
    margin: 0 auto 20px;
  }
  .consulting .interview li a {
    font-size: 14px;
  }
  .consulting .interview li a:hover {
    opacity: 1;
  }
  .consulting .interview li a .pho::after {
    width: 30px;
    height: 30px;
    background-size: 40%;
  }
  .consulting .interview li a p {
    padding: 12px;
  }
}
/*----------------------------------------

footer

----------------------------------------*/
footer .copyright {
  display: block;
  text-align: center;
  padding: 0 0 15px;
  letter-spacing: 0.1em;
  margin-top: 100px;
}
@media (max-width: 736px) {
  footer .copyright {
    font-size: 10px;
    margin-top: 50px;
  }
}

/*----------------------------------------

video

----------------------------------------*/
.bgVideo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 115%;
  overflow: hidden;
  z-index: -1;
}
.bgVideo::after {
  position: absolute;
  bottom: -10px;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 20%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(97%, rgba(0, 0, 0, 0.97)), to(rgb(0, 0, 0)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.97) 97%, rgb(0, 0, 0) 100%);
}
.bgVideo video {
  position: absolute;
  min-width: 100%;
  min-height: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media (max-width: 736px) {
  .bgVideo {
    height: 80%;
  }
}