.l-content {
  overflow: hidden;
}

.hero {
  position: relative;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8vw;
}

.hero-img {
  position: relative;
  width: 96vw;
  -webkit-mask-image: linear-gradient(90deg, black 20%, rgba(0, 0, 0, 0.4) 35%, rgba(0, 0, 0, 0) 50%);
  mask-image: linear-gradient(90deg, black 20%, rgba(0, 0, 0, 0.4) 35%, rgba(0, 0, 0, 0) 50%);
  -webkit-mask-size: 450% 100%;
  mask-size: 450% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: 100% 0;
  mask-position: 100% 0;
  animation: 1000ms ease-out 1000ms forwards mask-animation;
}

.hero-img::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 96vw;
  padding-top: 96vw;
  background: transparent 0 0 / 100% 100% no-repeat;
}

.hero-img img {
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: 0 0;
  mask-position: 0 0;
  -webkit-mask-size: 100%;
  mask-size: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.hero-contents {
  width: 84vw;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.about {
  position: relative;
}

.about::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -48vw;
  width: 128vw;
  margin-top: -21.33333vw;
  padding-top: 128vw;
  background: #F0F0F0;
  border-radius: 100%;
}

.about-inner {
  position: relative;
  width: 84vw;
  margin-left: auto;
  margin-right: auto;
}

.message {
  position: relative;
  opacity: 0;
  transform: translate3d(0, 20%, 0);
}

.message.show {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 600ms cubic-bezier(0.55, 0.085, 0.68, 0.53), transform 600ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.message-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.message-img {
  width: 84vw;
  height: 84vw;
  aspect-ratio: 1;
}

.message-img img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.message-contents {
  width: 84vw;
  margin-top: -50px;
  margin-left: auto;
  margin-right: auto;
  padding: 30px 0 0;
  background: #FFF;
}

.business {
  position: relative;
}

.business::before,
.business::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
}

.business::before {
  top: 60px;
  left: 0;
  height: 575px;
  background: #F0F0F0;
}

.business::after {
  top: 635px;
  left: 0;
  height: calc(100% - 60px - 575px);
  background: #4b76d2;
  background: linear-gradient(160deg, #4B76D2 0%, #08287F 50%);
}

.business-inner {
  position: relative;
  z-index: 1;
  padding-bottom: 80px;
}

.business-hd {
  position: relative;
  padding: 0 8%;
}

.business-hd::after {
  content: "";
  display: block;
  position: absolute;
  top: 60px;
  right: 0;
  width: calc((375 - 30) / 375 * 100vw - 210px);
  height: 4px;
  background: #4b76d2;
  background: linear-gradient(95deg, #4B76D2 0%, #08287F 100%);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform 600ms cubic-bezier(0.77, 0, 0.175, 1);
}

.show .business-hd::after {
  transform: scaleX(1);
}

.business-text {
  width: 84vw;
  margin-left: auto;
  margin-right: auto;
}

.business-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 92vw;
  margin-left: auto;
  margin-right: auto;
}

.business-list-item {
  overflow: hidden;
  background: #FFF;
  border-radius: 8px;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  opacity: 0;
  transform: translate3d(0, 20%, 0);
}

.business-list-item-img {
  overflow: hidden;
}

.business-list-item-img img {
  transition: transform 500ms cubic-bezier(0.215, 0.61, 0.355, 1);
}

.business-list-item[data-visible="true"] {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 600ms cubic-bezier(0.55, 0.085, 0.68, 0.53), transform 600ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.business-list-item:nth-child(1)[data-visible="true"] {
  transition-delay: 0ms, 0ms;
}

.business-list-item:nth-child(2)[data-visible="true"] {
  transition-delay: 400ms, 400ms;
}

.business-list-item:nth-child(3)[data-visible="true"] {
  transition-delay: 800ms, 800ms;
}

.business-list-item:nth-child(4)[data-visible="true"] {
  transition-delay: 1200ms, 1200ms;
}

.business-list-item:nth-child(5)[data-visible="true"] {
  transition-delay: 1600ms, 1600ms;
}

.business-list-item-img {
  aspect-ratio: 2.61364;
}

.business-list-item-img picture {
  height: 100%;
}

.business-list-item-img img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.business-list-item-contents {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 76vw;
  padding: 20px 0;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.business-list-item-contents *[class*="title-"] {
  width: 64vw;
}

.business-list-item-contents *[class*="text-"] {
  width: calc(100% - 336px - (64 + 56) / 1008 * 100% - 48px);
}

.business-list-item-icon {
  position: relative;
  width: 36px;
  height: 36px;
  overflow: hidden;
  margin-left: 2.4vw;
  background: #08287F;
  background: linear-gradient(120deg, #4B76D2 0%, #08287F 100%);
  border: 1px solid #4B76D2;
  border-radius: 100%;
  font-size: 28px;
  color: #FFF;
  transition: border 500ms cubic-bezier(0.165, 0.84, 0.44, 1), color 500ms cubic-bezier(0.165, 0.84, 0.44, 1), background 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.business-list-item-icon *[class^="icon-"] {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.modaal-noscroll {
  overflow: visible;
}

.modal-noscroll .modaal-noscroll {
  left: 0;
  width: 100%;
}

.modal-noscroll {
  overflow-y: hidden;
}

.modal-noscroll .l-header-inner {
  position: fixed;
  top: 0;
  left: 0;
}

.modal-noscroll .l-header-nav {
  position: fixed;
  right: 0;
  width: 100%;
}

.modal-open-end .bf-detail-inner {
  overflow: visible;
}

.modaal-container {
  background: none;
}

.bf-detail {
  background: rgba(8, 40, 127, 0);
  transition: background-color 600ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.modal-open .bf-detail {
  background: rgba(8, 40, 127, 0.9);
}

.bf-detail-secondary {
  opacity: 0;
  position: relative;
  transform: translateX(10vh);
  transition: opacity 600ms cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.modal-open .bf-detail-secondary {
  opacity: 1;
  transform: translateX(0);
  transition: transform 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.bf-detail-primary {
  opacity: 0;
  transition: opacity 600ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.modal-open .bf-detail-primary {
  opacity: 1;
  transition: opacity 600ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.modaal-overlay {
  display: none;
  z-index: 100000;
}

.modaal-wrapper {
  z-index: 100001;
}

.modaal-inner-wrapper {
  vertical-align: top;
  padding: 0;
}

.modaal-container {
  max-width: 100%;
  min-height: 100%;
}

.modaal-content-container {
  padding: 0;
}

.bf-detail {
  position: relative;
}

.bf-detail-inner {
  overflow: hidden;
}

.bf-detail-primary {
  position: relative;
}

.bf-detail-secondary {
  position: relative;
  padding-top: 30px;
  background: #F0F0F0;
}

.bf-detail-nav {
  position: sticky;
  top: -179px;
  z-index: 1;
  padding: 54px 0 0;
  border-bottom: 1px solid #08287F;
  background: #FFF;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.16);
  transition: top 700ms cubic-bezier(0.455, 0.03, 0.515, 0.955), opacity 600ms cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
}

.scroll-up .bf-detail-nav {
  top: 0;
}

.bf-detail-nav-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 2.66667vw;
  margin-left: 4vw;
  margin-right: 4vw;
  padding: 20px 0;
  border-bottom: 1px solid #CCCCCC;
}

.bf-detail-nav-inner a {
  outline: none;
}

.bf-detail-nav-inner a:focus span {
  color: #fff;
}

.bf-detail-nav-inner a:focus::before {
  transform: translate(0, -50%);
}

.bf-detail-nav-inner a:focus::after {
  border-color: transparent;
}

.bf-detail-nav-close.btn.close {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 20px;
  right: 2.38095vw;
  width: 27px;
  height: 27px;
  padding: 0;
}

.bf-detail-nav-close.btn.close::before {
  content: none;
}

.bf-detail-nav-close.btn.close .btn-text-ENG {
  display: none;
  top: 0;
}

.bf-detail-nav-close.btn.close *[class^="icon-"] {
  right: 2.5px;
  font-size: 20px;
  color: #666666;
}

.bf-detail-lnav {
  width: 100vw;
  padding: 0 0 0 4vw;
  overflow: auto;
}

.bf-detail-lnav-close {
  position: absolute;
  top: 26px;
  right: 4vw;
}

.bf-detail-lnav-box {
  display: flex;
  gap: 9.33333vw;
}

.bf-detail-lnav-block-hd {
  position: relative;
  padding: 20px 0;
  white-space: nowrap;
  transition: color 500ms ease;
}

.bf-detail-lnav-block-hd:last-child {
  padding-right: 4vw;
}

.bf-detail-lnav-block-hd::before {
  content: "";
  display: inline-block;
  left: 0;
  transition: transform 500ms ease;
}

.bf-detail-lnav-block-hd.cu {
  color: #08287F;
}

.bf-detail-lnav-block-list {
  padding-left: 18px;
}

.bf-detail-lnav-block-item a {
  display: block;
  padding-left: 10px;
  text-indent: -10px;
  transition: transform 500ms ease;
}

.bf-detail-lnav-block-item a::before {
  content: "";
  display: inline-block;
  position: relative;
  top: -1px;
  width: 6px;
  height: 1px;
  margin-right: 4px;
  background: #4D4D4D;
  border-radius: 100%;
  vertical-align: middle;
  transition: transform 500ms ease;
}

.bf-detail-hero {
  padding-left: 4vw;
}

.bf-detail-hero *[class*="title-JP-"] {
  margin-top: -20px;
  color: #FFF;
}

.bf-detail-hero *[class*="title-JP-"] span {
  padding: 4px 10px 8px;
  background: #08287F;
}

.bf-detail-hero *[class*="text-JP-"] {
  width: 84vw;
  margin-left: 4vw;
}

.bf-detail-contents {
  padding-left: 4vw;
  padding-bottom: 80px;
}

.bf-detail-contents-block {
  padding: 50px 8vw;
  background: #FFF;
  border-radius: 8px 0 0 8px;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
}

.bf-detail-contents-main {
  padding-bottom: 30px;
  border-bottom: 1px solid #08287F;
}

.bf-detail-contents-main:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.bf-detail-contents-main *[class*="title-JP-"] {
  position: relative;
}

.bf-detail-contents-main *[class*="title-JP-"]::before {
  content: "";
  display: block;
  position: absolute;
  top: calc(0.25em - 2.5px);
  left: -8vw;
  width: 16px;
  height: 40px;
  background: #08287F;
}

.bf-detail-contents-main *[class*="text-JP-"] {
  max-width: 950px;
}

.bf-detail-contents-box {
  margin-top: -70px;
  padding-top: 70px;
}

.bf-detail-contents-box:not(:last-child) {
  padding-bottom: 30px;
  border-bottom: 1px solid #CCCCCC;
}

.bf-detail-contents-box-hd *[class*="title-ENG-"] {
  position: relative;
}

.bf-detail-contents-box-hd *[class*="title-ENG-"] span {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 40px;
  height: 40px;
  background: #4b76d2;
  background: linear-gradient(160deg, #4B76D2 0%, #08287F 100%);
  color: #FFF;
}

.bf-detail-contents-box-hd *[class*="title-ENG-"]::before {
  content: "";
  display: block;
  position: absolute;
  top: 10px;
  left: 10px;
  width: 50px;
  height: 50px;
  background: #F0F0F0;
}

.bf-detail-contents-box-hd *[class*="title-JP-"] {
  position: relative;
  padding-top: 10px;
}

.bf-detail-contents-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
  padding: 30px 4vw;
  background: #F0F0F0;
}

.bf-detail-contents-list-item {
  display: flex;
  gap: 4vw;
}

.bf-detail-contents-list-img {
  width: 16vw;
  overflow: hidden;
}

.bf-detail-contents-list-img img {
  transform: scale(1);
  transition: transform 500ms ease;
}

.bf-detail-contents-list *[class*="title-JP-"] {
  width: 52vw;
}

.bf-detail-contents-list *[class*="title-JP-"] span {
  padding-bottom: 2px;
  background: linear-gradient(#08287F, #08287F) 0 100%/0 2px no-repeat;
  transition: background 500ms ease;
}

@media screen and (min-width: 768px) {
  .hero .breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 0;
    padding-top: 20px;
  }

  .hero-inner {
    flex-direction: row-reverse;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2.14286%;
  }

  .hero-img {
    aspect-ratio: 840 / 675;
    max-width: 60%;
  }

  .hero-img::after {
    bottom: 0;
    left: 0;
    width: 100%;
    padding-top: 80.35714%;
    background-image: url(/corporate/mhri/consulting/assets/img/business-field/img-bf_hdr-blue_link-d.png);
  }

  .hero-img img {
    -webkit-mask-image: url(/corporate/mhri/consulting/assets/img/business-field/hero-mask.svg);
    mask-image: url(/corporate/mhri/consulting/assets/img/business-field/hero-mask.svg);
    aspect-ratio: 840 / 675;
    position: absolute;
    bottom: 5%;
    left: 5%;
  }

  .hero-contents {
    width: auto;
    margin-left: 8%;
    margin-right: 0;
  }

  .about {
    padding: 0 8%;
  }

  .about::before {
    left: -24.85714%;
    width: 64.85714%;
    margin-top: -5.71429%;
    padding-top: 64.85714%;
  }

  .about-inner {
    max-width: 728px;
    width: 61.90476%;
    margin-left: 0;
    margin-right: 0;
  }

  .message-inner {
    flex-direction: row;
    align-items: stretch;
  }

  .message-img {
    width: 60%;
    height: auto;
    aspect-ratio: 1.61538;
  }

  .message-contents {
    max-width: 616px;
    width: 44%;
    margin-top: 78px;
    margin-left: -12%;
    margin-right: 0;
    padding: 50px 0 0 4%;
  }

  .business::before {
    height: 460px;
  }

  .business::after {
    top: 520px;
    height: calc(100% - 60px - 460px);
  }

  .business-inner {
    padding-bottom: 130px;
  }

  .business-hd::after {
    width: calc((1400 - 112) / 1400 * 100% - 224px);
  }

  .business-text {
    width: 68%;
  }

  .business-list {
    gap: 10px;
    width: 92%;
  }

  .business-list-item {
    display: flex;
    gap: 4.34783%;
    align-items: center;
  }

  .business-list-item-img {
    width: 17.3913%;
    aspect-ratio: 1.09804;
  }

  .business-list-item-contents {
    width: 78.26087%;
    margin-left: 0;
    margin-right: 0;
  }

  .business-list-item-icon {
    width: 48px;
    height: 48px;
    margin-left: 6.34921%;
    font-size: 32px;
  }

  .bf-detail {
    transition-duration: 800ms;
  }

  .bf-detail-secondary {
    transition-duration: 800ms;
  }

  .modal-open .bf-detail-secondary {
    transition-duration: 800ms;
  }

  .modal-open .bf-detail-primary {
    transition-duration: 800ms;
  }

  .modaal-inner-wrapper {
    padding: 0;
  }

  .bf-detail-inner {
    display: flex;
  }

  .bf-detail-primary {
    width: 280px;
    padding-top: 80px;
  }

  .bf-detail-secondary {
    width: calc(100% - 280px);
    padding-top: 0;
  }

  .bf-detail-nav {
    top: 0;
    padding: 0;
    border: none;
    background: transparent;
    box-shadow: none;
    transition: top 700ms cubic-bezier(0.455, 0.03, 0.515, 0.955), opacity 800ms cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 800ms cubic-bezier(0.165, 0.84, 0.44, 1);
  }

  .bf-detail-nav-inner {
    gap: 10px 0.71429vw;
    width: 100%;
    margin: 0;
    padding: 20px 3.57143vw 20px 3.57143vw;
    background: #FFF;
    border: none;
    border-radius: 0 0 8px 0;
    box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
  }

  .bf-detail-nav-close.btn.close::before {
    content: "";
  }

  .bf-detail-nav-close.btn.close .btn-text-ENG {
    font-size: 14px;
  }

  .bf-detail-lnav {
    position: sticky;
    top: 28px;
    width: 224px;
    overflow: visible;
    margin-left: auto;
    margin-right: auto;
    padding: 30px 20px 50px;
    background: #FFF;
    border-radius: 8px;
    max-height: calc(100vh - 28px - 28px - 80px - 60px);
    overflow: hidden auto;
  }

  .bf-detail-lnav::-webkit-scrollbar {
    width: 9px;
  }

  .bf-detail-lnav::-webkit-scrollbar-track {
    background-color: #fff;
  }

  .bf-detail-lnav::-webkit-scrollbar-thumb {
    background-color: #666666;
    border: 3px solid #fff;
  }

  .bf-detail-lnav-close {
    display: flex;
    justify-content: flex-end;
    position: static;
    padding-bottom: 20px;
    border-bottom: 1px solid #CCCCCC;
  }

  .bf-detail-lnav-box {
    display: block;
  }

  .bf-detail-lnav-block-hd {
    display: block;
    padding: 0;
    padding-left: 18px;
    text-indent: -18px;
    white-space: normal;
  }

  .bf-detail-lnav-block-hd:last-child {
    padding-right: 0;
  }

  .bf-detail-lnav-block-hd::before {
    position: relative;
    bottom: auto;
    top: -1px;
    width: 8px;
    height: 8px;
    margin-right: 10px;
    background: #4D4D4D;
    border-radius: 100%;
    transform: scale(0.5);
  }

  .bf-detail-lnav-block-hd.cu::before {
    background: #08287F;
    transform: scale(1);
  }

  .bf-detail-hero {
    padding-left: 5%;
  }

  .bf-detail-hero *[class*="title-JP-"] {
    margin-top: -5.46875vw;
  }

  .bf-detail-hero *[class*="title-JP-"] span {
    padding-top: 2px;
  }

  .bf-detail-hero *[class*="text-JP-"] {
    max-width: 1008px;
    width: 94.73684%;
    margin-left: 0;
  }

  .bf-detail-contents {
    padding-left: 5%;
    padding-bottom: 80px;
  }

  .bf-detail-contents-block {
    padding: 80px 5.26316%;
  }

  .bf-detail-contents-block.has-margin {
    margin-bottom: 70vh;
  }

  .bf-detail-contents-main {
    padding-bottom: 80px;
  }

  .bf-detail-contents-main *[class*="title-JP-"]::before {
    top: 0.25em;
    left: -5.88235%;
    width: 20px;
    height: 35px;
  }

  .bf-detail-contents-box:not(:last-child) {
    padding-bottom: 50px;
  }

  .bf-detail-contents-box-hd {
    display: flex;
    gap: 16px;
  }

  .bf-detail-contents-box-hd *[class*="title-ENG-"]::before {
    left: 20px;
    width: 60px;
    height: 60px;
  }

  .bf-detail-contents-box-hd *[class*="title-JP-"] {
    width: calc(100% - 40px - 16px);
    padding-top: 27px;
    padding-bottom: 14px;
  }

  .bf-detail-contents-box-lead {
    max-width: 950px;
  }

  .bf-detail-contents-list {
    gap: 30px 6.66667%;
    margin-top: 60px;
    padding: 42px 5.88235% 50px;
  }

  .bf-detail-contents-list-item {
    width: 46.66667%;
    align-items: center;
    gap: 7.14286%;
  }

  .bf-detail-contents-list-img {
    width: 28.57143%;
  }

  .bf-detail-contents-list *[class*="title-JP-"] {
    width: 64.28571%;
  }
}

@media (min-width: 768px) {
  .bf-detail-nav-close.btn.close *[class^="icon-"] {
    display: block;
    color: #FFF;
  }
}

@media (min-width: 840px) {
  .bf-detail-nav-inner {
    padding-right: calc(120px + (120 / 1412 * 100%));
  }

  .bf-detail-nav-close.btn.close {
    top: auto;
    right: 3.96601vw;
    width: 120px;
    height: auto;
    padding: 5px 10px;
  }

  .bf-detail-nav-close.btn.close .btn-text-ENG {
    display: block;
  }
}

@media screen and (min-width: 1025px) {
  .bf-detail-nav-inner {
    position: absolute;
    top: 0;
    left: 0;
  }

  .bf-detail-hero *[class*="title-JP-"] {
    margin-top: -56px;
  }
}

@media (min-width: 1200px) {
  .business-list-item-contents *[class*="title-"] {
    max-width: 336px;
  }
}

@media (min-width: 1412px) {
  .bf-detail-nav-inner {
    width: auto;
  }

  .bf-detail-nav-close.btn.close {
    right: 56px;
  }
}

@media (max-width: 1199px) {
  .business-list-item-contents *[class*="text-"] {
    width: calc(100% - (64 + 56) / 1008 * 100% - 48px);
  }
}

@media screen and (max-width: 768px) {
  .bf-detail-contents-list-item *[class*="title-JP-"] span {
    border-bottom: 2px solid #08287F;
  }

  .bf-detail-contents-list-item:hover *[class*="title-JP-"] span {
    background-size: 0 0;
  }
}

@media screen and (max-width: 767.8px) {
  .hero-img::after {
    background-image: url(/corporate/mhri/consulting/assets/img/business-field/img-bf_hdr-blue_link-m.png);
  }

  .hero-img img {
    -webkit-mask-image: url(/corporate/mhri/consulting/assets/img/business-field/hero-mask-sp.svg);
    mask-image: url(/corporate/mhri/consulting/assets/img/business-field/hero-mask-sp.svg);
    aspect-ratio: 1 / 1;
  }

  .bf-detail-nav {
    opacity: 0;
    transform: translateX(10vh);
  }

  .modal-open .bf-detail-nav {
    opacity: 1;
    transform: translateX(0);
    transition: top 700ms cubic-bezier(0.455, 0.03, 0.515, 0.955), transform 600ms cubic-bezier(0.165, 0.84, 0.44, 1);
  }

  .bf-detail-lnav-block-hd.cu {
    font-weight: 700;
  }
}

@media (min-width: 768px) and (max-width: 840px) {
  .hero .breadcrumb {
    padding-right: 100px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .hero-inner {
    align-items: flex-start;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .business-list-item-contents *[class*="title-"] {
    margin-bottom: 15px;
    width: 100%;
  }
}

@media (hover: hover) {
  .business-list-item:hover .business-list-item-img img {
    transform: scale(1.1);
  }

  .business-list-item:hover .business-list-item-icon {
    border-color: #08287F;
    color: #08287F;
  }

  .business-list-item:hover .business-list-item-icon::before {
    transform: translate(0, -50%);
  }

  .business-list-item-icon {
    background: transparent;
  }

  .business-list-item-icon::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 300%;
    height: 100%;
    background: #08287F;
    background: linear-gradient(110deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 50%, #4B76D2 55%, #08287F 75%);
    transform: translate(-58%, -50%);
    transition: transform 500ms cubic-bezier(0.165, 0.84, 0.44, 1);
  }

  .bf-detail-nav-close.btn.close:hover *[class^="icon-"] {
    color: #666666;
  }

  .bf-detail-lnav-block-hd:not(.cu):hover {
    color: #1A1A1A;
  }

  .bf-detail-lnav-block-hd:not(.cu):hover::before {
    transform: scale(1);
  }

  .bf-detail-lnav-block-item a:hover {
    transform: translateX(8px);
  }

  .bf-detail-lnav-block-item a:hover::before {
    transform: translateX(-8px);
  }

  .bf-detail-contents-list-item:hover .bf-detail-contents-list-img img {
    transform: scale(1.1);
  }

  .bf-detail-contents-list-item:hover *[class*="title-JP-"] span {
    background-size: 100% 2px;
  }
}

@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  .business-list-item:hover .business-list-item-img img {
    transform: scale(1.1);
  }

  .business-list-item:hover .business-list-item-icon {
    border-color: #08287F;
    color: #08287F;
  }

  .business-list-item:hover .business-list-item-icon::before {
    transform: translate(0, -50%);
  }

  .bf-detail-nav-close.btn.close:hover *[class^="icon-"] {
    color: #666666;
  }

  .bf-detail-lnav-block-hd:not(.cu):hover {
    color: #1A1A1A;
  }

  .bf-detail-lnav-block-hd:not(.cu):hover::before {
    transform: scale(1);
  }

  .bf-detail-lnav-block-item a:hover {
    transform: translateX(8px);
  }

  .bf-detail-lnav-block-item a:hover::before {
    transform: translateX(-8px);
  }

  .bf-detail-contents-list-item:hover .bf-detail-contents-list-img img {
    transform: scale(1.1);
  }

  .bf-detail-contents-list-item:hover *[class*="title-JP-"] span {
    background-size: 100% 2px;
  }
}