@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');

:root {
  --navy: #152245;
  --red: #B40019;
  --dgrey: #333;
  --font-big: 30px;
  --font-mid: 21px;
}

*{
 box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;     
}

.ta-left{
  text-align: left;
}

.it-wrap img{
  width: 100%;
  height: auto;
  display: block;
}

.bg-pattern-blue,
.bg-pattern{
  position: relative;
  overflow: hidden;
}

.bg-pattern-blue:before,
.bg-pattern:before{
  content: "";
  position: absolute;
  width: 98%;
  opacity: .2;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-image: url(../img/tjk/bg-pattern.png);
  background-size: 100% auto;
  background-position: center;
  aspect-ratio: 20 : 33;
  animation: floatY 4s ease-in-out infinite;
  z-index: 0;
}

.bg-pattern-blue:before{
  background-image: url(../img/tjk/bg-pattern-blue.png);
  opacity: .4;
}

.ttl-1{
  font-family: "Oswald", sans-serif;
  margin: 0 0 40px 0;
  font-size: clamp(25px, 3vw, 30px);
}

.ttl-1 span{
  display: block;
  font-size: 22px;
  font-weight: normal;
}

.ttl-1 span:before,
.ttl-1 span:after{
  content: "";
  display: inline-block;
  background-image: url(../img/tjk/ttl-lines.svg);
  background-size: 100% auto;
  background-position: center;
  width: 14px;
  aspect-ratio: 10 / 11;
  vertical-align: initial;
}

.ttl-1 span:before{
  margin-right: 10px;
}

.ttl-1 span:after{
  margin-left: 10px;
}

.ttl-1{
  overflow: hidden;
}

.ttl-1 p{
  background-color: var(--navy);
  color: #fff;
  display: inline-block;
  margin: 10px 0 0 0;

  max-width: 0;
  padding: 0;              /* initial */
  overflow: hidden;
  white-space: nowrap;

  transition:
    max-width 2s ease .5s,
    padding .3s ease .5s;
}

.ttl-1.anm-show p{
  max-width: 1000px;
  padding: 0 10px;
}

.bg-dark{
  background-color: var(--dgrey);
  color: #fff;
}

.bg-dark .ttl-1 p{
  background-color: #fff;
  color: var(--dgrey);
}

.bg-navy .ttl-1 p{
  background-color: #fff;
  color: var(--navy);
}

.contact-wrap .ttl-1 p{
  background-color: transparent;
}

.top-vid-wrap{
  position: relative;
  text-align: center;
 }

 .top-vid{
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 7;
  overflow: hidden;
  top: -10px;
 }

.top-vid:before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .4);
}

.top-vid video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.top-vid-text{
  z-index: 1;
  color: #fff;
}

.anm-show .top-vid-ttl,
.anm-show .top-vid-dtl{
  opacity: 1;
  transform: translateY(0);
}
.top-vid-dtl{
  opacity: 0;
  transform: translateY(-20px);

  transition:
    opacity .4s ease,
    transform .4s ease;
  transition-delay: 1.8s;
}

.top-vid-ttl{
  font-size: clamp(26px, 2.8vw, 40px);
  font-weight: bold;
  line-height: 1.3;

  opacity: 0;
  transform: translateY(-20px);

  transition:
    opacity .4s ease,
    transform .4s ease;
  transition-delay: 1.3s;
}

.anm-show .top-vid-ttl,
.anm-show .top-vid-dtl{
  opacity: 1;
  transform: translateY(0);
}


.top-vid-ttl:after{
  content: "";
  width: 50px;
  background-color: #fff;
  height: 2px;
  display: block;
  margin: 30px auto;
}

.top-vid-ttl span{
  display: block;
  margin-top: 20px;
  font-weight: normal;
  font-size: 22px;
}

 .card-wrap{
  display: flex;
  gap: 30px;
  margin: 30px 0 0 0;
  flex-wrap: wrap;
}

.card{
  width: calc((100% - 60px)/3);
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}

.card-2 .card{
  width: calc((100% - 30px)/2);
}

.card-img{
  position: relative;
}

#what-we-do .card{
  text-align: center;
}

#what-we-do .card-ttl{
  min-height: 3em;
}

.card-img img{
  width: 100%;
  height: auto;
}

.card-img:after{
  content: "";
  width: 100%;
  position: absolute;
  bottom: -10px;
  height: 40%;
  left: 0;
  background: #E4EBF8;
  background: linear-gradient(0deg, rgba(228, 235, 248, 1) 27%, rgba(18, 55, 126, 0) 78%);
}

.card-lblue .card{
  background-color: #E4EBF8;
  color: #002076;
}

.card-text{
  padding: 30px;
}

.card-ttl{
  font-size: 20px;
  text-align: center;
  font-weight: bold;
  margin: 0 0 20px 0;
}

.card:after{
  content: "";
  width: 80%;
  bottom: -3px;
  height: 6px;
  background-color: var(--red);
  position: absolute;
  left: 10%;
}

.card-nmb{
  text-align: center;
}

.card-nmb .card{
  background-color: #4b4b4b;
  border: solid 1px #fff;
  border-radius: 10px;
  padding: 40px;
}

.nmb-no span{
  font-size: 70px;
  font-weight: bold;
  font-family: "Oswald", sans-serif;
  margin: 20px 0;
  display: inline-block;
  margin-right: 5px;
}

.news-wrap{
  font-size: 18px;
}

.news-wrap>div{
  border-bottom: dashed 1px rgba(23,46, 92, .3);
}

.news-wrap>div a{
  display: block;
  color: var(--navy);
  padding: 25px 0;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  position: relative;
}

.news-wrap>div a:before{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 100%;
  background-color: #eee;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: -1;
}

.news-wrap>div a:hover{
  text-decoration: none;
}

.news-wrap>div a:hover:before{
  width: 100%;
}

.news-head{
  color: #626262;
  font-size: 14px;
  display: flex;
  line-height: 1;
  margin: 0 0 20px 0;
}

ul.news-cat{
  margin: 0 0 0 20px;
  padding: 0 0 0 20px;
  border-left: solid 1px #626262;
  list-style: none;
  display: flex;
}

ul.news-cat li:after{
  content: "/";
  margin: 0 10px;
}

ul.news-cat li:last-child:after{
  display: none;
}

.view-more-btn{
  text-align: right;
  margin-top: 50px;
}

.view-more-btn a{
  background-color: #E0E0E0;
  color: var(--navy);
  padding: 10px 20px;
  width: 240px;
  display: block;
  font-family: "Oswald", sans-serif;
  display: inline-block;
  text-align: center;
}

.link-detail a:after,
.contact-btn a:after,
.view-more-btn a:after{
  content: "";
  background-image: url(../img/tjk/vm-arrow.svg);
  background-position: center;
  background-size: 100% auto;
  width: 40px;
  height: 3px;
  background-repeat: no-repeat;
  display: inline-block;
  vertical-align: super;
  margin-left: 10px;
  font-size: 15px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}


.link-detail a:hover:after,
.contact-btn a:hover:after,
.view-more-btn a:hover:after{
  margin-left: 20px;
}

.link-detail a:hover,
.contact-btn a:hover,
.view-more-btn a:hover{
  text-decoration: none;
}


.link-detail{
  display: block;
  font-family: "Oswald", sans-serif;
  text-align: right;
  font-size: 16px;
  margin: 20px 0 0 0;
}


.link-detail a{
  color: #fff;
}

.link-detail a:hover{
  color: #fff;
  text-decoration: none;
}

.link-detail a:after{
  filter: brightness(0) invert(1);
}

.link-detail a:hover:after{
  width: 50px;
  height: 4px;
}

.contact-wrap{
  background-image: url(../img/tjk/contact-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0 100px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
}

.contact-wrap:before{
  content: "";
  position: absolute;
  left: -40px;
  bottom: -40px;
  width: 35%;
  aspect-ratio: 1 / 1;
  background-image: url(../img/tjk/logo-bg.png);
  background-position: center;
  background-size: 100% auto;
  background-repeat: no-repeat;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.anm-show .contact-wrap:before{
  width: 35%;
}

.contact-btn a{
  background-color: var(--red);
  color: #fff;
  padding: 20px 10px;
  width: 320px;
  display: block;
  text-align: center;
  position: relative;
  z-index: 1;
}

.contact-btn a:after{
  width: 50px;
  height: 4px;
  filter: brightness(0) invert(1);
}


 @keyframes floatY {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-20px); }
  100% { transform: translateY(0); }
}


 .page-wrap{
  overflow: hidden;
  width: 100%;
  line-height: 1.6;
  color: var(--navy);
  border-top: solid 3px var(--red);
  font-size: 15px;
 }

 .row{
  padding: 80px 0;
 }

.wrap{
  max-width: 1150px;
  margin: auto;
  padding: 0 20px;
  position: relative;
}

.bg-navy,
.page-navy{
  width: 100%;
  background-color: var(--navy);
  color: #fff;
}

 .page-head{
  background-image: url(../img/tjk/page-head-bg.jpg);
  background-size: cover;
  background-position: center;
  height: 300px;
  position: relative;
  color: #fff;
  text-align: center;
 }

.top-vid-text,
 .page-head-ttl{
  display:block;
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  -webkit-transform:translate(-50%,-50%);
  -moz-transform:translate(-50%,-50%);
  -ms-transform:translate(-50%,-50%);
  -o-transform:translate(-50%,-50%);
    width: 100%;
    padding: 0 20px;
}

 .page-head h1{
  margin: 0;
  font-size: clamp(28px, 3.5vw, 38px);
  animation-delay: 1.2s!important;
 }

.slt-it-img img{
  display: block;
  width: 100%;
  height: auto;
}

.cont-container{
  border-radius: 5px;
  padding: 40px 30px;
  background-color: rgba(248, 250, 255, .95);
  margin-bottom: 50px;
  color: initial;
}

.slt-ttl{
  border-left: solid 3px var(--navy);
  padding-left: 15px;
  margin: 0 0 30px 0;
  font-size: var(--font-big);
}

.slt-ttl span{
  font-size: initial;
  display: block;
}

.slt-itwrap{
  display: flex;
  gap: 40px;
}

.slt-it-img{
  width: 40%;
  flex-shrink: 0;
}

.slt-text{
  flex: 1;
}

.slt-it-ttl{
  color: var(--navy);
  font-size:  var(--font-mid);
  margin: 0 0 30px 0;
}

.slt-dtl{
  margin: 50px 0 0 0;
}

.slt-dtl-ttl{
  tab-size: content;
  padding: 15px 0;
  margin: 0 0 30px 0;
  font-size: var(--font-mid);
  font-weight: bold;
  color: var(--navy);
  border-top: solid 1px var(--navy);
  border-bottom: solid 1px var(--navy);
  text-align: center;
}

.list-line{
  list-style: none;
  padding: 0;
}

.list-line li:before{
  content: "";
  list-style: none;
  padding: 0;
  margin: 0 .5em 0 -1.5em;
  width: 12px;
  height: 2px;
  background-color: #000;
  display: inline-block;
  vertical-align: middle;
}

.list-line li{
  padding-left: 1.5em;
  margin: 0 0 10px 0;
}

.slt-ftr-wrap{
  margin: 40px 0 0 0;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.slt-ftr{
  width: calc((100% - 30px)/2);
  background-color: #fff;
  border-radius: 5px;
  padding: 10px;
   color: #434343;
  font-size: 14px;
}

ul.slt-ftr-tags{
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 10px;
  display: flex;
  gap: 10px;
}

ul.slt-ftr-tags li{
  color: #fff;
  padding: 3px 5px;
  background-color: #00ACAC;
  /*border-radius: 3px;*/
}

ul.slt-ftr-tags li.ftr-tag-ylw{
  background-color: #D1A100;
}

ul.slt-ftr-tags li.ftr-tag-bl{
  background-color: #11ADC1;
}

ul.slt-ftr-tags li.ftr-tag-pk{
  background-color: #F25268;
}

ul.slt-ftr-tags li.ftr-tag-grey{
  background-color: #AAAAAA;
}

.slt-ftr-ttl{
  flex-wrap: border-box;
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0;
  color: #000;
}

.slt-ftr-ttl:before{
  content: "";
  width: 20px;
  height: 20px;
  background-image: url(../img/tjk/tick-circle.png);
  background-size: 100% auto;
  background-position: center;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}

.slt-scn-wrap{
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.slt-scn{
  width: calc((100% - 90px)/4);
  background-color: #fff;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  line-height: 1.8;
  position: relative;
  font-weight: bold;
}

.slt-scn::before,
.slt-scn::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: #3254B1;
}

.slt-scn::before {
  clip-path: polygon(0 0, 100% 0, 0 100%);
  border-top-left-radius: 5px;
  top: 5px;
  left: 5px;
}

.slt-scn::after {
  clip-path: polygon(100% 100%, 0 100%, 100% 0);
  border-bottom-right-radius: 2px;
  right: 5px;
  bottom: 5px;
}

.slt-cta-wrap{
  background-image: url(../img/tjk/bg-gradation.png);
  background-size: cover;
  color: #fff;
  font-size: 24px;
  border-radius: 5px;
  margin: 40px 0 0 0;
  text-align: center;
  padding: 40px 30px;
  position: relative;
}

.slt-cta-wrap:after{
  content: "";
  width: 20vw;
  aspect-ratio: 1 /1;
  background-image: url(../img/tjk/logo-bg.png);
  background-size: 100% auto;
  background-position: center;
  position: absolute;
  right: 1vw;
  bottom: -3vw;
}

.slt-cta-wrap a[href^="mailto:"] {
  color: #fff;
  text-decoration: underline;
}

.slt-cta-btn a{
  background-color: #fff;
  color: #002076;
  font-weight: bold;
  padding: 10px;
  width: 300px;
  text-decoration: none;
  font-size: 16px;
  display: block;
  margin: 40px auto 0 auto;
  border-radius: 5px;
}

.slt-cta-btn a{
  position: relative;
}

.slt-cta-btn a::after {
    width: 5px;
    height: 5px;
    border-width: 2px;
    right: 10px;
    content: "";
    display: block;
    width: 0.5em;
    height: 0.5em;
    border-top: solid 2px var(--navy);
    border-right: solid 2px var(--navy);
    position: absolute;
    top: 50%;
    right: 6%;
    -webkit-transform: translateY(-50%) rotate(45deg);
    transform: translateY(-50%) rotate(45deg);
    z-index: 3;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.slt-cta-btn a:hover::after{
  right: 5%;
}

.slt-tab-wrap{
  margin-bottom: 50px;
}

.slt-tab-wrap ul{
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.slt-tab-wrap ul li{
  border-radius: 25px;
}

.slt-tab-wrap ul li a{
  padding: 10px 20px;
  display: block;
  border-radius: 25px;
  width: 230px;
  color: #fff;
  background: #2A578F;
  background: linear-gradient(180deg, rgba(42, 87, 143, 1) 27%, rgba(18, 55, 126, 1) 100%);
  position: relative;
  -webkit-box-shadow: 0 2px 6px 2px rgba(0,0,0,.2);
  -moz-box-shadow: 0 2px 6px 2px rgba(0,0,0,.2);
  box-shadow: 0 2px 6px 2px rgba(0,0,0,.2);
  text-decoration: none;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.slt-tab-wrap ul li a:hover{
  background: #2A578F;
  background: linear-gradient(180deg, rgba(42, 87, 143, 1) 27%, rgba(18, 55, 126, 1) 78%);
}

.slt-tab-wrap ul li a:after{
  content: "";
  width: 16px;
  height: 16px;
  background-image: url(../img/tjk/btn-arrow.png);
  background-size: cover;
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.slt-tab-wrap ul li a:hover:after{
  transform:translateY(3px);
  -webkit-transform:translateY(3px);
  -moz-transform:translateY(3px);
  -ms-transform:translateY(3px);
  -o-transform:translateY(3px);
}


.tjk-anmFadeIn{
  opacity: 0;
}

.tjk-anmFadeIn.anm-show{
  animation: fadeIn 0.6s ease-in-out forwards;
}

.it-wrap>div{
  display: flex;
  align-items: center;
  margin: 60px 0 0 0;
  gap: 50px;
  flex-wrap: wrap;
}

.it-wrap>div:nth-child(even){
  flex-direction: row-reverse;
}

.it-img{
  width: 50%;
  border-radius: 8px;
  border: solid 20px rgba(255,255,255,.3)
}

.it-text{
  flex: 1;
}

.it-ttl-wrap{
  display: flex;
   margin: 0 0 20px 0;
  padding: 0 0 20px 0;
  border-bottom: solid 1px #fff;
  align-items: end;
  justify-content: space-between;
}

.it-wrap ul.slt-ftr-tags{
  gap: 5px;
  padding-bottom: 5px;
}

.it-ttl{
  font-weight: bold;
  font-size: 22px;
  max-width: 300px;
}

.it-ttl span{
  font-weight: normal;
  font-size: 15px;
  display: block;
}

.it-subttl{
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 17px;
}

.line-br-mb br{
  display: none;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.tjk-anmFadeInUp{
  opacity: 0;
  transform: translateY(20px);
}

.tjk-anmFadeInUp.anm-show{
  animation: fadeInUp 0.6s ease-in-out forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tjk-anmFadeInSlide{
  opacity: 0;
  transform: translateX(-20px);
}

.tjk-anmFadeInSlideOp{
  opacity: 0;
  transform: translateX(20px);
}

.tjk-anmFadeInSlideOp.anm-show{
  animation: fadeInSlideOp 0.6s ease-in-out forwards;
}

.tjk-anmFadeInSlide.anm-show{
  animation: fadeInSlide 0.6s ease-in-out forwards;
}

@keyframes fadeInSlide {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}


@keyframes fadeInSlideOp {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}


@media all and (max-width: 1000px) {
.slt-scn {
    width: calc((100% - 30px) / 2);
}

.slt-ftr{
  width: 100%;
}

.top-vid{
  aspect-ratio: 5 / 3;
}

.contact-wrap{
  display: block;
  padding: 80px 20px 100px 20px;
}

.contact-btn a{
  margin: 40px auto 0 auto;
  width: 300px;
  font-size: 15px;
}

.it-wrap>div{
  gap: 20px;
}

.it-img{
  width: 100%;
}

.it-wrap>div{
  margin-top: 100px;
}

}


@media all and (max-width: 767px) {
:root {
  --navy: #152245;
  --font-big: 27px;
  --font-mid: 19px;
}

.card-text{
  text-align: center;
}

.top-vid{
  aspect-ratio: 5 / 6;
}

.cont-container {
    padding: 40px 20px;
}

.slt-it-ttl br{
  display: none;
}

.slt-scn {
 width: 100%;
}

.slt-itwrap{
  display: block;
}

.slt-it-img{
  width: 100%;
  margin-bottom: 20px;
}

.slt-tab-wrap ul{
  display: block;
  margin: auto;
  text-align: center;
}

.slt-tab-wrap ul li{
  margin: 0 0 20px 0;
  display: inline-block;
  width: 100%;
  max-width: 450px;
}

.slt-tab-wrap ul li a{
  text-align: left;
  width: 100%;
}

.slt-cta-wrap:after {
    width: 44vw;
    right: 0;
}

.slt-cta-btn a{
  width: 100%;
}

.slt-cta-wrap {
    font-size: 19px;
    padding: 40px 20px;
}

.slt-cta-wrap br{
  display: none;
}

.slt-ftr-ttl{
  font-size: 18px;
}

.top-vid{
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
}

.card-wrap{
  gap: 50px;
}

.card-2 .card,
.card{
  width: 100%;
}

.line-p br{
  display: none;
}

.line-br-mb br{
  display: block;
}

#what-we-do .card-ttl{
  min-height: 0;
}
}


@media all and (max-width: 480px) {
.top-vid{
  aspect-ratio: 4 / 5;
}

}