@charset "utf-8";
/* CSS Document */

/*===============================

    common

================================*/
.main {
  /* display: flex; */
  display: grid;
  grid-template-areas: "side main";
  grid-template-columns: 200px 1fr;
  gap: 20px;
  justify-content: space-between;
  overflow: initial;/* hiddenだと追従ナビが動かない */
  padding-top: 30px;
  width: 1240px;

  &:has(.main__sideNavi) {
    flex-direction: row-reverse;
  }
  @media screen and (max-width: 768px) {
    display: block;
    width: 100%;
  }
}

.main__left {
  grid-area: main;
  padding: 0;
  width: 1020px;
  @media screen and (max-width: 768px) {
    width: 100%;
  }
}
/* .ml:first-child { padding-top: 0; } */

.main__sideNavi {
  grid-area: side;
  @media screen and (max-width: 768px) {
    display: none;
  }
}



/*
    追従ナビ
================================*/
body:not(.newType) { /* 公開トップのCSSを上書きしないように */
  .nav--container {
    .subnav{
      background-color: #e5f3fa;
      /* display: flex;
      align-items: flex-start;
      @media screen and (max-width:768px) {
        flex-direction: column;
      } */
    }
    .subnav__inner {
      display: flex;
      margin-inline: auto;
      max-width: 1240px;
      @media screen and (max-width:768px) {
        flex-direction: column;
      }
    }
    /* 検索 */
    .searchField {
      @media screen and (max-width:768px) {
        margin: 0 auto;
      }
    }
    .searchField__inner {
      background-color: transparent;
      margin: auto;
      width: 630px;
      @media screen and (max-width:768px) {
        width: 100%;
      }
    }
    .searchField__heading {
      background-color: #164a84;
      flex: 0 0 180px;
      position: relative;
    }
    .searchField__heading::before {
      border-top: 15px solid transparent;
      border-bottom: 15px solid transparent;
      border-left: 15px solid #164a84;
      content: "";
      display: block;
      height: 0;
      position: absolute;
      top: 0;
      right: 0;
      transform: translateX(100%);
      width: 0;
    }
    .searchField__heading::after {
      background-color: #f8f3ed;
      -webkit-clip-path: polygon(172px -1px, 167px -1px, 183px 50%, 168px 100%, 173px 100%, 188px 50%);
              clip-path: polygon(172px -1px, 167px -1px, 183px 50%, 168px 100%, 173px 100%, 188px 50%);
      content: "";
      display: block;
      height: 100%;
      position: absolute;
      top: 0;
      right: -15px;
      width: calc(100% + 15px);
    }
    .searchField__title {
      color: #fff;
      font-size: 15px;
      font-weight: bold;
      line-height: 30px;
      padding: 0 10px;
      position: relative;
    }
    .searchWordBox__ttl { margin-right: 10px; }

    /* お問合せ＆商談 */
    .subnav_btnList {
      display: flex;
      justify-content: space-between;
      gap: 10px;
      padding: 10px 10px 10px 0;
      width: 100%;
      @media screen and (max-width: 768px) {
        padding: 10px;
      }
    }
    .subnav_btnItem {
      width: 50%;

      .subnav_btnItem_target {
        --subnavTarget_theme: #333;
        align-items: center;
        background-color: #fff;
        border: 1px solid var(--subnavTarget_theme);
        border-radius: 4px;
        color: var(--subnavTarget_theme);
        display: flex;
        font-weight: bold;
        height: 100%;
        justify-content: center;
        &:hover {
          opacity: .7;
          text-decoration: none;
        }
        &.subnav_btnItem_target--ask {
          --subnavTarget_theme: #ec4062;
        }
        &.subnav_btnItem_target--shodan {
          --subnavTarget_theme: #2a6cae;
        }
        @media screen and (max-width: 768px) {
          min-height: 40px;
        }
      }
    }
  }

  .nav--container.is_fixed {
    position: sticky;
    top: 0;
    z-index: 99999;
    &:has(.subnav) .nav-top2 {
      padding-bottom: 0;
    }
  }


  @media screen and (min-width: 769px) and (max-width: 1220px) {
    width: 1240px;
  }
  @media screen and (max-width: 768px) {
    margin-bottom: 20px;
  }
  .nav-top2 {
    padding: 10px 10px 0 10px;
    display: flex;
    align-items: center;
    @media screen and (max-width: 768px){
      flex-direction: column;
    }
  }
  .nav-top2--win{
    background:#E5F3FA;
  }
  .nav-top2__inner {
    align-items: center;
    display: flex;
    gap: 10px 25px;
    margin-inline: auto;
    max-width: 1240px;
    width: 100%;
    @media screen and (max-width: 768px){
      flex-direction: column;
      /* width: 100%; */
    }
  }
  .nav-top2__logo {
    > a {
      transition: .3s opacity;
      &:hover { opacity: .7; }
    }
  }
  .nav-top2__title{
    width: auto;
    word-break: keep-all;
    margin: 0;
    font-size: 14px;
    @media screen and (max-width: 768px){
      margin-bottom: 10px;
    }
  }
  .nt2{
  }
  .nt2__list{
    /* width: 120px; */
    padding:0;
    @media screen and (max-width: 768px){
      /* width:calc(33.333% - 3px); */
    }
  }
  /* お問合せ＆商談予約 */
  .nt2__list--grid {
    --theme_contact: #ec4062;
    --theme_bizMtRsv: #2a6cae; 
    display: grid;
    gap: 3px;
    @media screen and (max-width: 768px) {
      grid-template-columns: 1fr 1fr; 
      /* grid-area: 3 / 1 / 4 / 5; */
      grid-column: 1 / -1;
    }
    .nt2__span {
      .nt2__link {
        --theme_nt2Link: #333;
        border: 1px solid var(--theme_nt2Link);
        font-size: 11px;
        height: auto;
        padding: 3px;
        &:is(.nt2__link--contact,.nt2__link--bizMeetingReserve) {
          &:hover {
            background-color: var(--theme_nt2Link);
            color: #fff;
            &::before { background-color: #fff; }
          }
          &::before {
            aspect-ratio: 24 / 19;
            content: "";
            display: block;
            height: 1.3em;
            mask-position: center;
            mask-repeat: no-repeat;
            mask-size: contain;
            width: auto;
          }
          @media screen and (max-width: 768px) {
            font-size: inherit;
            min-height: 50px;
            padding: 10px;
          }
        }
        &.nt2__link--contact {
          --theme_nt2Link: var(--theme_contact);
          &::before {
            /* aspect-ratio: 22 / 16; */
            background-color: var(--theme_nt2Link);
            mask-image: url("/resource/img/gnav/icon_navi-b02_inquiry.svg");
          }
        }
        &.nt2__link--bizMeetingReserve {
          --theme_nt2Link: var(--theme_bizMtRsv);
          &::before {
            aspect-ratio: 24 / 19;
            background-color: var(--theme_nt2Link);
            mask-image: url("/resource/img/gnav/icon_navi-b03_business-discussion.svg");
          }
        }
      }
    }
  }
  /* お問合せ＆商談予約 */

  .nt2{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 10px;
    flex-wrap: wrap;
    @media screen and (max-width: 768px){
      grid-template-columns: repeat(auto-fit, minmax(30%, 1fr));
      justify-content: space-between;
      gap: 6px;
    }
  }


  .nt2__link{
    display: flex;
    height: 50px;
    justify-content: center;
    align-items: center;
    text-align: left;
    font-size: 14px;
    padding: 4px ;
    border: 2px solid #ccc;
    border-radius: 4px;
    box-shadow: none;
    line-height: 1.3;
  }
  .nt2__link--skill{border-color:#7A4881}
  .nt2__link--hierarchy{border-color:#394C99}
  .nt2__link--map{border-color:#BF362A}
  .nt2__link--schedule{border-color:#BA8E1E}
  .nt2__link--online{border-color:#70711F}
  .nt2__link--area{border-color:#01663A}
  .nt2__link--situation{border-color:#4C312C}
  .nt2__link::before{
    width:30px;
    height: 100%;
    background-size: contain;
    margin: 0px 5px 0px 0;
    @media screen and (max-width: 768px){
      content:none;
    }
  }
  .nt2__link::after{
    display: none;
  }

  /* 受講者ページ */
  .nt2 {
    &.__students {
      .nt2__link {
        height: auto;
        text-align: center;
      }
      .nt2__link::before {
        height: 30px;
        margin: 0 auto 10px;
        width: 80%;
      }
    }
  }
  /* スマートパックリンク追加 */
  .nt2__link--smartpack {
    --theme_smp: #4D3E8C;
    --nt2link_bgColor: var(--theme_smp);
    background-color: var(--nt2link_bgColor);
    border-color: var(--theme_smp);
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    &::before {
      content: none;
    }
    &:hover {
      --nt2link_bgColor: #fff;
      color: currentColor;
    }
    > span {
      align-items: center;
      display: flex;
      flex-direction: column;
      gap: 3px;
    }
    @media screen and (max-width: 768px) {
      height: auto;
    }
  }
/* 業界・職種別追加 */
.nt2__link--tradeDivision {
  border-color: #70711F !important;
}
.nav-top2--win .nt2__link--tradeDivision:is(:hover, .is-current) {
  background: #70711F;
}
.nav-top2--win .nt2__link--tradeDivision::before {
  content: "\f1ad";
  height: 1em !important;
  color: #70711F;
  line-height: 1;
  text-align: center;
  font-weight: normal;
  font-size: 24px;
  font-family: "Font Awesome 5 Free";
  background: none;
}
.nt2__link.nt2__link--tradeDivision:is(:hover, .is-current)::before {
  color: #fff;
}
@media screen and (max-width: 768px){
  .nav-top2--win .nt2__link--tradeDivision::before {
    content: none;
  }
}
/* 検索ボックス */
.searchField{
  margin-bottom: 0;
  padding: 0;
}
.searchField__inner{
  padding: 10px;
  background: #E8EAEF;
}
.searchField__body{
  display: flex;
  align-items: center;
}
.searchField__heading{
  flex: 0 0 200px;
  position: relative;
  margin-right: 30px;
  background: #164A84;
}
.searchField__heading::before{
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
  border-top: 15px solid rgba(255, 255, 255, 0);
  border-bottom: 15px solid rgba(255, 255, 255, 0);
  border-left: 15px solid #164A84;
  transform: translateX(100%);
}
.searchField__ttl{
  position: relative;
  padding: 0 16px;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  line-height: 30px;
}
.searchField__ttl::after{
  content: "";
  position: absolute;
  right: 8px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  border-top: 15px solid rgba(255, 255, 255, 0);
  border-bottom: 15px solid rgba(255, 255, 255, 0);
  border-left: 15px solid #E8EAEF;
  transform: translateX(100%);
}
.searchField__ttl::before{
  content: "";
  position: absolute;
  right: 12px;
  top: 0;
  bottom: 0;
  z-index: 1;
  margin: auto 0;
  border-top: 15px solid rgba(255, 255, 255, 0);
  border-bottom: 15px solid rgba(255, 255, 255, 0);
  border-left: 15px solid #164A84;
  transform: translateX(100%);
}
.searchField__fieldWrap{
  flex: 1 1 auto;
  display: flex;
  align-items: stretch;
}

.searchField__field{
  width: calc(100% - 30px);
}
.searchField__field input{
  width: 100%;
  padding: 0;
  border: 1px solid #707070;
  border-right: none;
  border-radius: 0;
  outline: none;
  line-height: 28px;
  text-indent: .5em;
}
.searchField__btn{
  background: #2793D2;
  width: 30px;
  height: 30px;
  padding: 6px;
  border: none;
  line-height: 0;
  cursor: pointer;
  transition: .3s opacity;
}
.searchField__btn img{
  max-width: 100%;
  height: auto;
}
.searchField__btn:hover{
  opacity: .7;
}
.searchField__footer{
  margin-top: 16px;
}
@media screen and (max-width: 768px){
  .searchField{
    width: 95%;
    margin: 40px auto 0;
  }
  .searchField__body{
    flex-wrap: wrap;
  }
  .searchField__heading{
    margin: 0 0 8px 0;
  }
  .searchField__fieldWrap{
    width: 100%;
  }
}

}
/* F式リスト型ラインナップ */
.m_fLineupList{}
.m_fLineupList__heading{
  margin-bottom: 10px;
}
.m_fLineupList__ttl{
  line-height: 1.4;
  font-weight: bold;
  font-size: 16px;
  padding-right: 5px;
  color: #75192b
}
.m_fLineupList__body{}
.m_fLineupList__item + .m_fLineupList__item{
  margin-top: 8px;
}
.m_fLineupList__link{
  position: relative;
  display: block;
  padding-left: 12px;
  color: #333;
  font-weight: bold;
  font-size: 12px;
  transition: opacity .3s;
}
/* .m_fLineupList__link::after{
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  display: block;
  width: 4px;
  height: 4px;
  border-right: 1px solid;
  border-bottom: 1px solid;
  transform: rotate(-45deg);
}*/
.m_fLineupList__link:hover{
  opacity: .7;
}
.m_fLineupList__link--comingsoon{
  color: #7a7a7a;
}
.m_fLineupList__link--comingsoon::before{
  opacity: .7;
}
.m_fLineupList__link--comingsoon::after{
  content: "coming soon";
  color: #d66c00;
  font-weight: bold;
  margin-left: 10px;
}
[service_type].m_fLineupList__link{
  position: relative;
  padding-left: 52px;
}
/*[service_type].m_fLineupList__link::after{
  content: none;
}*/
[service_type].m_fLineupList__link::before{
  position: absolute;
  top: 2px;
  left: 0;
  display: block;
  padding: 2px 3px;
  border: 1px solid;
  border-radius: 2px;
  line-height: 1;
  letter-spacing: 0;
  font-size: 10px;
  min-width: 40px;
  text-align: center;
}

/* F式カード（大） */
.m_fCardLg{
  display: block;
  width: 100%;
  color: inherit;
  transition: opacity .3s;
}
.m_fCardLg:hover{
  opacity: .7;
}
.m_fCardLg__ttl{
  position: relative;
  margin-bottom: 4px;
  line-height: 1.4;
  font-weight: bold;
  font-size: 18px;
  height: calc(18px * 2 * 1.4);
  overflow: hidden;
}
.m_fCardLg__ttl::after{
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  width: 3em;
  height: calc(18px * 1.4);
  background: linear-gradient(to left,#fff,rgba(255,255,255,0.96) 25%,rgba(255,255,255,0) 100%)
}
.m_fCardLg__body{}
.m_fCardLg__infos{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 -5px;
}
.m_fCardLg__infosWrap{}
.m_fCardLg__info{
  font-size: 12px;
  padding: 0 5px;
}
.m_fCardLg__info--type{
  color: #666;
}
.m_fCardLg__info--type::before{
  display: block;
  color: #666;
  padding: 2px 3px;
  border: 1px solid;
  border-radius: 2px;
  line-height: 1;
  font-size: 11px;
  min-width: 40px;
  text-align: center;
}
.m_fCardLg__info--date{
  color: #d66c00;
}
.m_fCardLg__infosWrap + .m_fCardLg__img{
  margin-top: 5px;
}
.m_fCardLg__img{
  line-height: 0;
  text-align: center;
}
.m_fCardLg__img img{
  max-width: 100%;
  height: auto;
}
.m_fCardLg__img--certification{}
.m_fCardLg__img--certification img{
  max-height: 100px;
}

.m_fCardLg__img + .m_fCardLg__cont{
  margin-top: 10px;
}
.m_fCardLg__infosWrap + .m_fCardLg__cont{
  margin-top: 10px;
}
.m_fCardLg__cont{
  position: relative;
  max-height: calc(13px * 4 * 1.6);
  line-height: 1.6;
  font-size: 13px;
  overflow: hidden;
}
.m_fCardLg__cont::after{
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  width: 3em;
  height: calc(13px * 1.6);
  background: linear-gradient(to left,#fff,rgba(255,255,255,0.96) 25%,rgba(255,255,255,0) 100%)
}
@media screen and (max-width: 768px){
  .m_fCardLg__ttl{
    height: auto;
    max-height: calc(18px * 2 * 1.4);
  }
}
/* F式カード（小） */
.m_fCardMd{
  display: flex;
  align-items: center;
  width: 100%;
  color: inherit;
  transition: opacity .3s;
}
.m_fCardMd:hover{
  opacity: .7;
}
.m_fCardMd__body{
  flex: 1 1 auto;
}
.m_fCardMd__ttl{
  position: relative;
  height: calc(14px * 2 * 1.5);
  margin-bottom: 4px;
  font-weight: bold;
  font-size: 14px;
  line-height: 1.5;
  overflow: hidden;
}
.m_fCardMd__ttl::after{
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  width: 3em;
  height: calc(14px * 1.5);
  background: linear-gradient(to left,#fff,rgba(255,255,255,0.96) 25%,rgba(255,255,255,0) 100%)
}
.m_fCardMd__infosWrap{}
.m_fCardMd__infos{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 -5px;
}
.m_fCardMd__info{
  font-size: 12px;
  padding: 0 5px;
}
.m_fCardMd__info--type{
  color: #666;
}
.m_fCardMd__info--type::before{
  display: block;
  padding: 2px 3px;
  border: 1px solid;
  border-radius: 2px;
  line-height: 1;
  font-size: 11px;
  min-width: 40px;
  text-align: center;
}
.m_fCardMd__info--date{
  color: #d66c00;
}
.m_fCardMd__body + .m_fCardMd__img{
  margin-left: 4px;
}
.m_fCardMd__img{
  flex: 0 0 86px;
  line-height: 0;
  text-align: center;
}
.m_fCardMd__img img{
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 768px){
  .m_fCardMd__ttl{
    height: auto;
    max-height: calc(14px * 2 * 1.5);
  }
}

/* ラベル */
[service_type=douga]::before {
  content: "\52d5\753b\95a2\9023"!important;
  color: #cc2d5e!important;
  background: none!important;
}
[service_type=middle]::before {
  content: "\307e\3068\3081"!important;
  color: #842e30!important;
  background: none!important;
}
[service_type=haken]::before {
  content: "\6D3E\9063"!important;
  color: #842e30!important;
  background: none!important;
}
[service_type=bup]::before {
  content: "\516C\958B"!important;
  color: #0c3f71!important;
  background: none!important;
}
[service_type=other]::before {
  content: "\4ed6\ff7b\ff70\ff8b\ff9e\ff7d"!important;
  color: #e6002d!important;
  background: none!important;
}
[service_type=it]::before {
  content: "IT\FF7B\FF70\FF8B\FF9E\FF7D"!important;
  color: #008d79!important;
  background: none!important;
}
[service_type=free]::before {
  content: "\7121\6599\FF7E\FF90\FF85\FF70"!important;
  color: #333!important;
  background: none!important;
}
[service_type=cont]::before {
  content: "\8AAD\307F\7269"!important;
  color: #0c3f71!important;
  background: none!important;
}
[service_type=consul]::before {
  content: "\30B3\30F3\30B5\30EB"!important;
  color: #7a614f!important;
  background: none!important;
}
[service_type=taiken]::before {
  content: "\4f53\9a13\578b"!important;
  color: #e6002d!important;
  background: none!important;
}

/* Leaf Lightning STUDIO対応 */
[href="/it-tool/studio-pbl.html"] .m_fCardLg__ttl{
  font-size: 0;
}
[href="/it-tool/studio-pbl.html"] .m_fCardLg__ttl::before{
  content: "Leaf lightning STUDIO～定額制eラーニング視聴サービス";
  font-size: 18px;
}


