#breadcrumbs {
  background-color: white;
  padding: 3rem 8rem;
  margin-top: -2.4rem;
  border-radius: 3rem 3rem 0 0;
  z-index: 4;
}

#breadcrumbs .breadcrumbs-box {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #f2f3f3;
  padding-bottom: 2rem;
}

#breadcrumbs ol {
  display: flex;
  align-items: center;

}

#breadcrumbs ol li {
  position: relative;
  margin-right: 1rem;
}

#breadcrumbs ol li:nth-child(n+2) span {
  display: inline-block;
  padding-left: 1rem;
}

#breadcrumbs ol li:nth-child(n+2)::before {
  content: '|';
  color: #d0d1d1;
  font-size: 1.2rem;
}

#breadcrumbs ol li img {
  width: 3rem;
}

#breadcrumbs .sr_only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.breadcrumbs-link {
  font-size: 1.2rem;
  position: relative;
}

.breadcrumbs-link-btn {
  cursor: pointer;
  padding: 0 2rem;
}

.breadcrumbs-menu {
  display: none;
  position: absolute;
  background-color: #fff;
  box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.1);
  padding: 2.4rem;
  border-radius: 1rem;
  z-index: 5;
  top: 0;
  left: 100%;
  width: max-content;
}

.breadcrumbs-menu ul li:nth-child(n+2) {
  margin-top: 1.4rem;
}

.breadcrumbs-menu ul li a {
  color: #333;
  font-size: 1.4rem;
  transition: color .2s;
  /*white-space: nowrap;*/
  display: block;
}

.breadcrumbs-menu ul li a:hover {
  color: var(--blue-color-);
}

#page-guide {
  position: relative;
  background-color: white;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 8rem;
  transform: translateY(0);
  transition: transform 0s;
}

#page-guide.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
  background-color: rgba(255, 255, 255, .3);
  backdrop-filter: blur(1rem);
  -webkit-backdrop-filter: blur(1rem);
  transform: translateY(98%) translateZ(0);
  transition: transform .3s;
}

#page-guide ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

#page-guide li {
  padding: 1rem 2rem 0.75rem 2rem;
  border-radius: 100rem;
  border: 1px solid var(--black-color-);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  transition: background-color .3s;
  font-size: 1.7rem;
}

#page-guide li.active {
  color: white;
  background-color: var(--black-color-);
  font-weight: bold;
}

main {
  position: relative;
  overflow-x: hidden;
}

#sub-top {
  position: relative;
  max-height: 93rem;
}

#sub-title {
  position: absolute;
  width: 100%;
  height: 100%;
  max-width: calc(1400px + 8rem);
  padding: 12rem 8rem 8rem;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  z-index: 2;
}

#sub-title strong {
  position: relative;
  display: flex;
  align-items: center;
  color: white;
}

#sub-title strong::before {
  content: '';
  display: block;
  width: 2rem;
  height: 2rem;
  border-radius: 100rem;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-30%, -50%);
  z-index: 1;
}

#sub-title strong span {}

#sub-title strong i {
  width: 3rem;
  margin-right: 0.8rem;
  position: relative;
  z-index: 2;
}

#sub-title h1 {
  margin-top: auto;
  font-size: 3.6rem;
  color: white;
}

#sub-title p {
  margin-top: 2rem;
  font-size: 2rem;
  color: white;
}

.sub-items {
  position: relative;
  background-color: white;
  z-index: 2;
}

.rotate180 {
  transform: rotate(180deg);
}

.sub-item-title {
  text-align: center;
}

.sub-item-title strong {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 3rem;
}

.sub-item-title strong i {
  width: 2.6rem;
  margin-right: 0.6rem;
}

.sub-item-title strong span::after {
  content: '.';
  color: var(--blue-color-);
}

.sub-item-title h2 {
  font-weight: 300;
  font-size: 4rem;
  line-height: 1.5;
}

.sub-item-title p {
  font-size: 2rem;
  color: var(--grey-color-);
  margin: 2rem 0;
}

#privacy-policy {
  margin-top: 14rem;
  line-height: 1.25;
  font-weight: 400;

}

#privacy-policy .box {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (max-width: 768px) {
  #breadcrumbs {
    padding: 3rem 4rem;
  }
  #breadcrumbs ol {
    flex-wrap: wrap;
    row-gap: 1rem;
  }
  #sub-title {
    padding: 12rem 4rem 10rem;
  }

  #sub-top #sub-title strong {
    margin-left: 0.5rem;
  }

  #page-guide {
    width: 100%;
    padding: 2rem 0;

  }

  #page-guide ul {
    width: 100%;
    padding: 0 4rem;
    overflow-y: scroll;
    justify-content: unset;
    align-items: unset;
    -webkit-overflow-scrolling: touch;
  }

  #page-guide ul::-webkit-scrollbar {
    display: none;
  }

  #page-guide li {
    white-space: nowrap;
  }

  .breadcrumbs-menu {
    word-break: break-word
  }
}