@charset "utf-8";
@import "nibCommon.css";

/*
===============================
ビズトレ　TOPページ
===============================
*/

/*==================================================
  01. First View
==================================================*/
.firstView{
  width: 100%;
  position: relative;
  overflow: hidden;
}

/*----------　MainVisual　----------*/
.mainVisual {
  position: relative;
  flex:1;
}
.mainVisual .main_left h1 {
  display: inline-block;
  font-family: hiragino-mincho-pron, serif;
  color: #016263;
  font-size: clamp(50px, 5.6vw, 80px);
  font-style: italic;
  line-height: 1.3;
}
.mainVisual .main_left h1 > span {
  display: inline-block;
  padding-right: 14px;
  opacity: 0;
  clip-path: inset(0 100% 0 0);
}
.mainVisual .main_left h1 .cs {
  padding-left: 60px;
  font-size: clamp(34px, 5.6vw, 45px);
}
.mainVisual .main_left h1 span:not(.under) {
  letter-spacing: -2px;
}
.mainVisual .main_left h1 .fz-min {
  font-size: clamp(50px, 5.6vw, 60px);
}
.mainVisual .main_left h1 span.under {
  display: block;
  padding-left: 17rem; 
}
.mainVisual .mainCopy {
  position: absolute;
  bottom: 10vh;
  padding: 10px 54px 10px 104px;
  background: linear-gradient(90deg, #198B7C 30%, #006062 100%);
  clip-path: polygon(100% 0%, 95% 100%, 0% 100%, 0% 0%, 5% 0%);
  color: var(--nib-white);
  font-size: 2.6rem;
  font-weight: bold;
  opacity: 0;
}
.mainVisual .mainCopy .c-yellow {
  color: #FFFC9B;
}
.mainVisual .main_right {
  z-index: 1;
  opacity: 0;
}
.mainVisual .main_right img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: right center;
}
/*---------- First View / PC ----------*/
@media screen and (min-width: 1025px) {
  .firstView {
    display: flex;
    flex-direction: column;
    max-width: 2560px;
    padding-top: 90px;
    margin-inline: auto;
  }
  .mainVisual .main_left {
    position: absolute;
    inset: 0 auto 8% 8%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding:
        clamp(40px, 6vh, 90px)
        0
        clamp(30px, 5vh, 70px);
  }
  .mainVisual .main_left h1 {
    margin-bottom: 92px;
    transform: translateX(-4rem);
  }
  .mainVisual .main_right {
    inset: 0;
  }
}
/*---------- First View / Tablet & SP ----------*/
@media screen and (max-width: 1024px) {
  .firstView {
    padding-top: 60px;
  }
  .mainVisual {
    display: flex;
    flex-direction: column-reverse;
  }
  .mainVisual .main_left {
    width: 100%;
    margin-bottom: 100px;
  }
  .mainVisual .main_left h1 span {
    margin-left: -0.6rem;
  }
  .mainVisual .main_left h1 span.under {
    padding-left: 6rem;
  }
  .mainVisual .main_left h1 .cs {
    padding-left: 38px;
  }
  .mainVisual .mainCopy {
    width: 97%;
    bottom: 30px;
    padding: 10px 10px 10px 25px;
    font-size: 1.6rem;
  }
  .mainVisual .main_left h1 .fz-min {
    font-size: clamp(38px, 5.6vw, 42px);
  }
  .mainVisual .main_right {
    margin-bottom: 15px;
  }
}
/*---------- First View / Small SP ----------*/
@media screen and (max-width: 360px) {
  .mainVisual .mainCopy {
    padding: 10px 10px 10px 15px;
    font-size: 1.5rem;
  }
}

/*---------- Scroll Down ----------*/
@media screen and (min-width: 1025px) {
  .scroll {
      position: absolute;
      left: 50%;
      bottom: 34px;
      color: #016263;
      font-size: 18px;
      font-weight: bold;
      line-height: 1;
      transform: translateX(-50%);
      z-index: 1;
      opacity: 0;
  }
  .scroll span {
      display: block;
      margin: 0 0 5px 0;
  }
  .scroll::after {
      content: '';
      position: absolute;
      display: block;
      margin: 0 auto;
      width: 20px;
      height: 20px;
      left: 50%;
      transform: translateX(-50%);
      background-repeat: no-repeat;
      background-position: 50% 50%;
      background-image: url(../../../../images/freepages/info/nib/icon/icon_arrow-scroll.svg);
      background-size: contain;
      animation: scroll_arrow 1.5s ease-in-out infinite;
  }
  @keyframes scroll_arrow {
      0%,
      100% {
          transform: translate(-50%, 0);
      }

      50% {
          transform: translate(-50%, 10px);
      }
  }
  @keyframes scroll_fadeIn {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  .is-loading .scroll {
      animation: scroll_fadeIn cubic-bezier(1, 0, 0, 1) 1.2s forwards;
      animation-delay: 4s;
  }
}
@media screen and (max-width: 1024px) {
  .scroll {
    display: none;
  }
}

/*==================================================
  02. Decoration Line
==================================================*/
.deco-line {
  position: absolute;
  z-index: 1;
  display: block;
  width: 320px;
  height: 296px;
  clip-path: polygon(92% 0, 100% 0%, 8% 100%, 0% 100%);
  opacity: 0.6;
}
.deco-line.thin {
  clip-path: polygon(98% 0, 100% 0%, 2% 100%, 0% 100%);
  opacity: 1;
}
.deco-line.reverse {
  transform: scale(-1, 1);
}
.deco-line::before {
  content: "";
  position: absolute;
  inset: 0;
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #198B7C 30%, #DDFF6E 100%);
  transform: translateY(100%);
}
.deco-line.thin::before {
  background: #daecea;
}

/*---------- Decoration Line / PC ----------*/
@media screen and (min-width: 1025px) {
  .deco-line.line01 {
    top: -3%;
    left: 18%;
    width: 156px;
    height: 126px;
    clip-path: polygon(82% 0, 100% 0%, 18% 100%, 0% 100%);
  }
  .deco-line.line01::before {
    background: linear-gradient(90deg, #DDFF6E 50%, #198B7C 100%);
  }
  .deco-line.line02{
    top: 3%;
    right: 71%;
    width: 182px;
    height: 176px;
  }
  .deco-line.line03 {
    top: -11%;
    left: -8%;
    width: 279px;
    height: 251px;
    opacity: 0.78;
  }
  .deco-line.line03::before {
    background: linear-gradient(90deg, #96E669 40%, #FFF598 100%);
  }
  .deco-line.line04 {
    top: 0%;
    left: 59%;
    z-index: -1;
    opacity: 0.8;
  }
  .deco-line.line04::before {
    background: linear-gradient(90deg, #96E669 10%, #FFF598 100%);
  }
  .deco-line.line05 {
    top: 310px;
    left: 85%;
    z-index: -1;
    opacity: 0.8;
    clip-path: polygon(88% 0, 100% 0%, 12% 100%, 0% 100%);
  }
  .deco-line.line05::before {
    background: linear-gradient(90deg, #96E669 10%, #198B7C 100%);
  }
  .deco-line.line06 {
    top: 37%;
    left: -8%;
    opacity: 0.08;
  }
  .deco-line.line07 {
    right: 42%;
    bottom: 4%;
    z-index: -1;
    width: 252px;
    height: 252px;
  }
  .deco-line.line08 {
    top: 71%;
    left: 48%;
    z-index: -1;
    width: 173px;
    height: 158px;
  }
  .deco-line.line09 {
    top: 30%;
    left: -8%;
    width: 265px;
    height: 265px;
    opacity: 0.7;
  }
  .deco-line.line10 {
    top: 4%;
    right: 20%;
    z-index: -1;
    width: 200px;
    height: 200px;
    opacity: 0.7;
  }
}
/*---------- Decoration Line / Tablet & SP ----------*/
@media screen and (max-width: 1024px) {
  .deco-line {
    width: 168px;
    height: 156px;
    clip-path: polygon(90% 0, 100% 0%, 10% 100%, 0% 100%);
    opacity: 0.8;
  }
  .deco-line.line01 {
    top: 20px;
    right: -15%;
  }
  .deco-line.line01::before {
    background: linear-gradient(90deg, #96E669 10%, #FFF598 100%);
  }
  .deco-line.line02 {
    top: 0;
    right: -1%;
    width: 95px;
    height: 95px;
  }
  .deco-line.line03 {
    top: 10%;
    left: -26%;
    opacity: 0.85;
  }
  .deco-line.line03::before {
    background: linear-gradient(90deg, #96E669 10%, #FFF598 100%);
  }
  .deco-line.line04 {
    top: 36%;
    right: -5%;
  }
  .deco-line.line05 {
    top: 0;
    left: 30%;
    width: 96px;
    height: 81px;
    opacity: 0.5;
  }
  .deco-line.line05::before {
    background: linear-gradient(90deg, #DDFF6E 25%, #198B7C 100%);
  }
  .deco-line.line06 {
    top: 25%;
    left: -12%;
    opacity: 0.15;
  }
  .deco-line.line07 {
    top: 46%;
    right: 0;
    width: 110px;
    height: 114px;
  }
  .deco-line.line08,
  .deco-line.line09,
  .deco-line.line10 {
    display: none;
  }
}
/*==================================================
  03. Animation
==================================================*/

/*---------- Decoration Line ----------*/
@keyframes deco_line_stop {
  0% {
    transform: translateY(-100%);
  }
  50%,
  75% {
    transform: translateY(100%);
  }
  75.1% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
.is-loading .mainVisual .deco-line.stop::before {
  animation: deco_line_stop cubic-bezier(0.86, 0, 0.07, 1) 1.5s forwards;
  animation-delay: 1s;
}
/*---------- Main Visual Image ----------*/
@keyframes hero_slide_rgt {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.is-loading .main_right {
    animation: hero_slide_rgt cubic-bezier(1, 0, 0, 1) 1.2s forwards;
    animation-delay: 2.25s;
}
/*---------- Main Visual Text ----------*/
@keyframes hero_text_reveal {
  0% {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
  }
  1% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}
.is-loading .mainVisual .main_left h1 > .cs {
  animation: hero_text_reveal 0.8s ease forwards;
  animation-delay: 2.5s;
}
.is-loading .mainVisual .main_left h1 > span:not(.cs):not(.under) {
  animation: hero_text_reveal 0.8s ease forwards;
  animation-delay: 2.8s;
}
.is-loading .mainVisual .main_left h1 > .under {
  animation: hero_text_reveal 0.8s ease forwards;
  animation-delay: 3.1s;
}
/*---------- Main Copy ----------*/
@keyframes hero_copy_slide {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.is-loading .mainVisual .mainCopy {
  animation: hero_copy_slide 0.5s cubic-bezier(0.77, 0, 0.18, 1) forwards;
  animation-delay: 3.8s;
}


/*==================================================
  04. Services
==================================================*/
.services {
  padding: 60px 0;
}
.services h2 {
  color: var(--nib-green);
  font-size: 4.2rem;
  font-weight: 900;
  font-style: italic;
  text-align: center;
}
.services h2 .txt-gradient {
  padding-right: 5px;
}
.services-slider {
  padding: 30px 0 48px;
  margin-bottom: 20px;
}
.services .content {
  width: 960px;
  max-width: 100%;
  height: 360px;
  margin: 0 auto;
  padding: 35px 40px 36px 36px;
  background-color: var(--nib-white);
  border-radius: 10px;
  box-shadow: 1px 1px 10px 2px rgba(200, 229, 226, 1);
}
.services .content .flex {
  display: flex;
  justify-content: space-between;
  height: 100%;
}
.services .content .detail {
  display: flex;
  flex-direction: column;
  width: calc(960px - 240px - 50px);
}
.services .content .detail h3 {
  position: relative;
  margin-bottom: 40px;
  padding-left: 66px;
  color: var(--nib-black);
  font-size: 4rem;
  font-weight: 900;
}
.services .content .detail h3:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 45px;
  height: 60px;
}
.services .content .detail h3.num1::before {
  background: url(../../../../images/freepages/info/nib/top/slider_num1.svg)no-repeat center center / contain;
}
.services .content .detail h3.num2::before {
  background: url(../../../../images/freepages/info/nib/top/slider_num2.svg)no-repeat center center / contain;
}
.services .content .detail h3.num3::before {
  background: url(../../../../images/freepages/info/nib/top/slider_num3.svg)no-repeat center center / contain;
}
.services .content .detail ul li {
  position: relative;
  padding-left: 25px;
  font-size: 2.2rem;
}
.services .content .detail ul li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 18px;
  height: 18px;
  background: url(../../../../images/freepages/info/nib/icon/icon_bullet.svg)no-repeat center center / contain;
}
.services .content .img {
  width: 100%;
  max-width: 288px;
  margin: auto;
}
.services .lead {
  font-size: 2rem;
  line-height: 1.6;
  text-align: center;
}
.services .moreBtn {
  margin: 30px 0 0;
}
.services .moreBtn a {
  width: 300px;
  background-color: #fff;
}

/*---------- Services / Slider ----------*/
.services .splide__pagination__page {
  width: 20px;
  height: 20px;
  margin: 0 9px;
	background-color: #707070;
  opacity: 1;
}
.services .splide__pagination__page.is-active {
  background-color: var(--nib-green);
  transform: scale(1);
}
.services .splide__arrow--prev,
.services .splide__arrow--next {
  position: absolute;
  top: 50%;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  transform: translateY(-50%);
  overflow: visible;
  opacity: 1;
}
.services .splide__arrow--prev {
  left: calc(50% - 480px - 80px - 20px);
}
.services .splide__arrow--next {
  right: calc(50% - 480px - 80px - 20px);
}
.services .splide__arrow--prev:after,
.services .splide__arrow--next:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
}
.services .splide__arrow--prev:after {
  background-image: url(../../../../images/freepages/info/nib/icon/icon_slider_left.svg);
}
.services .splide__arrow--next:after {
  background-image: url(../../../../images/freepages/info/nib/icon/icon_slider_right.svg);
}
.splide__arrow svg {
  display: none;
}
/*---------- Services / PC ----------*/
@media screen and (min-width: 1025px) {
  .services h2 .big {
    font-size: 5.2rem;
  }
  .services .content .detail ul li:not(:last-child) {
    margin-bottom: 16px;
  }
}
/*---------- Services / Tablet & SP ----------*/
@media screen and (max-width: 1024px) {
  .services {
    margin: 0;
    padding: 0;
    overflow: hidden;
  }
  .services-slider {
    padding: 20px 0 38px;
  }
  .services h2 {
    font-size: 3.2rem;
  }
  .services h2 .big,
	.services h2 .txt-gradient {
		font-size: 4rem;
	}
  .services .inner {
    padding: 10px 25px 35px;
  }
  .services .lead {
    font-size: 1.8rem;
    line-height: 1.8;
    text-align: left;
  }
  .services .splide__slide {
    width: 80%;
    padding: 10px 0;
  }
  .services .content {
    width: min(80vw, 360px);
    max-width: none;
    height: 100%;
    padding: 24px;
    box-sizing: border-box;
  }
  .services .content .flex {
    flex-direction: column;
  }
  .services .content .detail {
    width: 100%;
    height: 100%;
  }
  .services .content .detail h3 {
    margin-bottom: 18px;
    padding-left: 46px;
    font-size: 2.2rem;
  }
  .services .content .detail h3::before {
    width: 23px;
    height: 42px;
  }
  .services .content .detail ul li {
    margin-bottom: 12px;
    font-size: 1.8rem;
  }
  .services .content .img {
    max-width: 180px;
    margin: auto auto 0;
  }
  .services .splide__arrow--prev,
	.services .splide__arrow--next {
		width: 50px;
		height: 50px;
	}

  .services .splide__arrow--prev {
    left: 0;
  }
  .services .splide__arrow--next {
    right: 0;
  }
  .services .lead_end {
    padding-bottom: 25px;
    font-size: 2rem;
  }
  .services .moreBtn {
    margin: 0 0 60px;
  }
}

/*==================================================
  05. News
==================================================*/
.news .sectionTitle {
  margin-bottom: 12px;
  color: var(--nib-white);
}
.news .newsList {
  width: 100%;
  padding: 40px 2px 40px 40px;
  background-color: var(--nib-white);
  border-radius: 10px;
}
.news .newsList ul {
  height: auto;
  max-height: 440px;
  padding-right: 38px;
  overflow-y: scroll;
}
.news .newsList ul li {
  border-bottom: 1px solid #cecece;
}
.news .newsList ul li:first-child {
  padding: 0 0 20px;
}
.news .newsList ul li:not(:first-child) {
  padding: 20px 0;
}
.news .newsList ul li a {
  position: relative;
}
.news .newsList ul li a::after {
  position: absolute;
  content: '';
  background-image: url(../../../../images/freepages/info/nib/icon/icon_blank_green.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 18px;
  height: 18px;
  top: 60%;
  transform: translateY(-50%);
  right: 4px;
}
.news .newsList ul li .date {
  padding-bottom: 4px;
  font-size: 1.6rem;
  letter-spacing: 0.8px;
}
.news .newsList ul li .cate_individ {
  margin-left: 10px;
  padding: 1px 10px;
  background-color: #E1F6A1;
  border-radius: 6px;
  font-size: 1.5rem;
}
.news .newsList ul li .title {
  font-size: 1.8rem;
}
/*---------- News / PC ----------*/
@media screen and (min-width: 1025px){
  .news .inner {
    padding: 70px 0 80px;
  }
}
/*---------- News / Tablet & SP ----------*/
@media screen and (max-width: 1024px){
  .news .newsList {
    padding: 20px;
  }
  .news .newsList ul {
    max-height: 384px;
    padding-right: 0;
  }
  .news .newsList ul li:first-child {
    padding: 0 0 14px;
  }
  .news .newsList ul li:not(:first-child) {
    padding: 14px 0;
  }
  .news .newsList ul li .title {
    padding-right: 24px;
  }
}


/*==================================================
  06. Strengths
==================================================*/
.strengths h2 {
  margin-bottom: 18px;
  color: var(--nib-green);
  font-size: 2.4rem;
  font-weight: bold;
}
.strengths .panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.strengths .panel > div > span {
  display: block;
  height: 20px;
  font-size: 1.4rem;
  text-align: right;
}
.strengths .s_caption {
  font-size: 1.4rem;
  text-align: center;
}
.strengths .s_caption:first-of-type {
  margin-top: 30px;
}
/*---------- Strengths / PC ----------*/
@media screen and (min-width: 1025px){
  .strengths .inner {
    padding: 60px 0 96px;
  }
  .strengths .panel {
    align-items: stretch;
  }
  .strengths .panel > div {
    flex: 1;
    display: flex;
    flex-direction: column;
  }
  .strengths .panel .img {
    flex: 1;
    font-size: 1.4rem;
    text-align: right;
  }
}
/*---------- Strengths / SP ----------*/
@media screen and (max-width: 767px){
  .strengths .panel {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  .strengths .panel > div {
    width: calc(50% - 20px);
  }
  .strengths .s_caption:first-of-type {
    margin-top: 18px;
  }
}

/*==================================================
  07. Clients
==================================================*/
.clients .inner {
  text-align: center;
}
.clients .sup {
  position: relative;
  display: inline-block;
  margin-bottom: 6px;
  font-size: 2.6rem;
  font-weight: bold;
}
.clients .sup::before,
.clients .sup::after {
  content: "";
  position: absolute;
  display: block;
  width: 32px;
  height: 39px;
}
.clients .sup::before {
  top: -2px;
  left: -30px;
  border-left: 2px solid var(--nib-green);
  transform: rotate(340deg);
}
.clients .sup::after {
  top: -2px;
  right: -30px;
  border-right: 2px solid var(--nib-green);
  transform: rotate(22deg);
}
.clients h2 {
  margin-bottom: 20px;
  color: var(--nib-green);
  font-size: 3.6rem;
  font-weight: 900;
}
.clients .utilize {
  margin-bottom: 36px;
}
.clients .clientsListMain {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  row-gap: 25px;
  margin: 0 auto 12px;
}
.clients .clientsListMain .clientsLogo {
  width: 204px;
}
.clients .order {
  width: 100%;
  margin: 0 auto;
  font-size: 1.4rem;
  font-weight: 400;
  text-align: right;
}
/*---------- Clients List ----------*/
.clientsListGroupWrap {
  display: none;
}
.clientsListGroupWrap.open {
  display: block;
}
.clientsListGroup {
  padding: 50px 0 0;
}
.clientsListGroup .row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 25px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--nib-green);
  color: var(--nib-green);
  font-size: 2rem;
}
.clientsListGroup .row span {
  font-size: 1.4rem;
  font-weight: 500;
}
.clientsListGroup .clientsName {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  column-gap: 80px;
  text-align: left;
}
.clientsListGroup .clientsName ul {
  width: 50%;
}
.clientsListGroup .clientsName ul li {
  padding-bottom: 1.2rem;
}
.clients .accordBtn {
  display: inline-block;
  margin-top: 38px;
  color: var(--nib-green);
  font-size: 2.3rem;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
}
/*---------- Clients / PC ----------*/
@media screen and (min-width: 1025px) {
  .clients .inner {
    padding: 0 0 100px;
  }
}
/*---------- Clients / Tablet & SP ----------*/
@media screen and (max-width: 1024px) {
  .clients .inner {
    padding: 0 25px 30px;
  }
  .clients .sup {
    font-size: 1.8rem;
  }
  .clients .sup::before,
  .clients .sup::after {
    width: 12px;
    height: 28px;
  }
  .clients .sup::before {
    left: -20px;
  }
  .clients .sup::after {
    right: -20px;
  }
  .clients h2 {
    margin-bottom: 12px;
    font-size: 2.4rem;
  }
  .clients .utilize {
    font-size: 1.6rem;
  }
  .clients .order{
    font-size: 1.2rem;
  }
  .clients .accordBtn {
    margin-top: 40px;
    font-size: 2rem;
  }
  .clientsListGroup {
    padding: 40px 0 0;
  }
  .clientsListGroup:first-child {
    padding: 24px 0 0;
  }
  .clientsListGroup .row {
    margin-bottom: 15px;
  }
}
/*---------- Clients / SP ----------*/
@media screen and (max-width: 767px) {
  .clients .clientsListMain {
    max-width: 100%;
    gap: 12px 20px;
  }
  .clients .clientsListMain .clientsLogo {
    width: calc(50% - 20px);
  }
  .clientsListGroup .clientsName {
    flex-direction: column;
  }
  .clientsListGroup .clientsName ul {
    width: 100%;
  }
}

/* スマホ用ナビ外 個人向け講座リンク */
@media (max-width:1024px){
  .toppage .individLink {
    display: block;
    position: fixed;
    top: 60px;
    right: 0;
    width: 160px;
    height: 56px;
    background-color: #006062;
    border-bottom-left-radius: 10px;
    z-index: 49;
  }
  .toppage .individLink a {
    position: relative;
    display: block;
    width: 100%;
    height: 56px;
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    padding: 7px 40px 7px 14px;
  }
  .toppage .individLink a::after {
    content: "";
    display: block;
    position: absolute;
    background : url(../../../../images/freepages/info/nib/icon/icon_arrow_individ.svg) no-repeat center center / contain;
    width: 20px;
    height: 20px;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
  }
  .toppage header.is-fixed .individLink{
    display: none;
  }
}