@charset "UTF-8";


/*---------------------------------------------------------------*\
$scroll menu
\*---------------------------------------------------------------*/

/* all */
.wrap_index_menu {
  display: flex;
  background-color: rgba(255, 255, 255, .97);
  position: fixed;
  z-index: 5;
  left: 0;
  right: 0;
  cursor: pointer;
  /* 初期は隠れている状態 */
  transition: top 0.3s;
  top: -100px;
  bottom: inherit;
}

/* menu SP */
.index_menu_sp {
  display: none;
}

/* menu PC */
.index_menu_pc {
  width: 100%;
}

/* PC menu nav - hovered */
.index_menu_pc .header .content_menu_services,
.index_menu_pc .header .content_menu_company {
  top: 100px;
}

.index_menu_pc .header {
  color: #333 !important;
  position: relative;
  border-bottom: solid 1px #eee;
}

.index_menu_pc .header * {
  color: #333 !important;
}

.index_menu_pc .header .main_menu_pc li a {
  color: #333;
}

.index_menu_pc .header .cls-1 {
  fill: #333;
}

.index_menu_pc .header .menu_.header_sp .dot {
  background-color: #333;
}

.index_menu_pc .header .divider {
  background-color: #eee;
}

.index_menu_pc .header .triangle {
  border-color: #333 transparent transparent transparent;
}

.index_menu_pc .header .hover_motion_white:after {
  background-color: #333;
}

.index_menu_pc .header .content_menu_services * {
  color: #fff !important;
}

.index_menu_pc .header .each_item:hover .title_menu {
  color: #B4CF13 !important;
}

.index_menu_pc .header .button_.header .icon path {
  fill: #333 !important;
}

/* breadcrumbs */
.header .breadcrumbs {
  display: none;
}


@media screen and (max-width: 600px) {

  /* all */
  .wrap_index_menu {
    /* 初期は隠れている状態 */
    transition: bottom 0.3s;
    /* 下に表示するように変更 */
    top: inherit;
    bottom: -100px;
  }

  /* menu PC */
  .index_menu_pc {
    display: none;
  }

  /* menu SP */
  .index_menu_sp {
    display: flex;
    height: 48px;
    top: auto;
    width: 100%;
  }

  .index_menu_sp .content_menu {
    width: 100%;
    margin-left: 0;
  }

  .index_menu_sp .content_menu ul {
    width: calc((100% - 48px));
    border-top: solid 1px #eee;
  }

  .index_menu_sp .global_menu {
    width: 48px;
    height: 48px;
    gap: 4px;
  }

  .index_menu_sp .border {
    height: 1px;
    width: 16px;
    background-color: #fff;
  }

  .index_menu_sp>ul {
    width: calc((100% - 48px));
    border-top: solid 1px#ddd;
  }

  .index_menu_sp .each_menu {
    gap: 4px;
    width: calc((100%)/4);
    height: auto;
    position: relative;
  }

  .index_menu_sp .each_menu a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .index_menu_sp .icon {
    width: 16px;
    height: 16px;
  }

  .index_menu_sp .subject {
    font-size: 10px;
    scale: .85;
  }
}



/*---------------------------------------------------------------*\
$series
\*---------------------------------------------------------------*/

/* common */
#series {
  max-width: 1440px;
  width: 94%;
  margin: 80px auto 0;
  overflow: hidden;
  gap: 56px;
}

#series .content_series {
  gap: 64px;
}

/* top - headlines */
#series .wrap_headlines {
  gap: 8px;
}

#series .sub_hedline {
  font-size: 13px;
}

#series .headline {
  font-size: 36px;
}

/* tab */
#series .tab-wrap {
  display: flex;
  align-items: start;
  flex-wrap: wrap;
  overflow: hidden;
}

#series .tab-label {
  color: #aaa;
  cursor: pointer;
  flex: 1;
  font-weight: bold;
  order: -1;
  padding: 0 0 24px;
  position: relative;
  text-align: center;
  transition: cubic-bezier(0.4, 0, 0.2, 1) .2s;
  user-select: none;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}

#series .tab-switch:checked+.tab-label {
  color: #B4CF13;
}

#series .tab-label::after {
  background: #B4CF13;
  bottom: 0;
  content: '';
  display: block;
  height: 2px;
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  transform: translateX(100%);
  transition: cubic-bezier(0.4, 0, 0.2, 1) .2s 80ms;
  width: 100%;
  z-index: 1;
}

#series .tab-switch:checked~.tab-label::after {
  transform: translateX(-100%);
}

#series .tab-switch:checked+.tab-label::after {
  opacity: 1;
  transform: translateX(0);
}

#series .tab-content {
  height: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-30%);
  transition: transform .3s 80ms, opacity .3s 80ms;
  width: 100%;
}

#series .tab-switch:checked~.tab-content {
  transform: translateX(30%);
}

#series .tab-switch:checked+.tab-label+.tab-content {
  height: auto;
  opacity: 1;
  order: 1;
  pointer-events: auto;
  transform: translateX(0);
}

#series .tab-wrap::after {
  content: '';
  height: 40px;
  order: -1;
  width: 100%;
}

#series .tab-switch {
  display: none;
}



@media screen and (max-width: 750px) {}


@media screen and (max-width: 600px) {

  #series {
    margin: 48px auto 0;
    height: auto !important;
  }

  /* tab */
  #series .tab-label {
    font-size: 11px;
    padding: 0 0 16px;
  }

  #series .tab-wrap::after {
    height: 24px;
  }
}