/* ===============================================
# 追従CTAバナー
=============================================== */
.cta-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 240px;
  background-color: #00ADAA;
  border-radius: 0;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 14px 30px 13px 30px;
  z-index: 998;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 11px;
}

.cta-banner.show {
  opacity: 1;
  transform: translateY(0);
}

.cta-banner__close {
  position: absolute;
  top: 3.8px;
  right: 3.8px;
  background: none;
  border: none;
  color: #FFFFFF;
  font-family: 'Material Symbols Outlined', sans-serif;
  font-size: 17px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-banner__header {
  display: flex;
  align-items: center;
  gap: 6px;
}

.cta-banner__icon {
  width: 26px;
  height: 23px;
  flex-shrink: 0;
}

.cta-banner__title {
  color: #FFFFFF;
  font-family: 'YuGothic', '游ゴシック体', sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
}

.cta-banner__button {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  background: transparent;
  border: 2px solid #FFFFFF;
  border-radius: 1px;
  box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
  color: #FFFFFF;
  font-family: 'YuGothic', '游ゴシック体', sans-serif;
  font-weight: 700;
  font-size: 17px;
  line-height: 1.5;
  text-decoration: none;
  cursor: pointer;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  position: relative;
}

.cta-banner__button:hover {
  box-shadow: none;
  transform: translateY(2px);
}

.cta-banner__arrow {
  width: 14px;
  object-fit: contain;
  position: absolute;
  right: 10px;
}

@media (max-width: 767px) {
  .cta-banner {
    width: calc(100% - 90px);
    bottom: 10px;
    left: 50%;
    translate: -50% 0;
    gap: 9px;
  }

  .cta-banner__close {
    top: 8.8px;
    right: 3.8px;
    font-size: 24px;
  }

  .cta-banner__arrow {
    width: 17px;
  }
}

/* ===============================================
# パンくずリスト
=============================================== */
.breadcrumb {
  padding-top: 20px;
  background-color: #fff;
}

.breadcrumb__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 7%;
  padding-right: 7%;
  box-sizing: unset;
}

.breadcrumb__item {
  display: flex;
  align-items: center;
}

.breadcrumb__link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #060e6d;
  text-decoration: none;
  font-size: 14px;
  transition: opacity 0.3s ease;
}

.breadcrumb__link:hover {
  opacity: 1;
  text-decoration: underline;
}

.breadcrumb__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #060e6d;
}

.breadcrumb__separator {
  display: inline-block;
  width: 6px;
  height: 9px;
  margin: 0 8px;
  background-color: #999;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  flex-shrink: 0;
}

.breadcrumb__current {
  color: #060e6d;
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .breadcrumb {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .breadcrumb__list {
    padding-left: 4%;
    padding-right: 4%;
    flex-wrap: nowrap;
    min-width: max-content;
  }

  .breadcrumb__item {
    white-space: nowrap;
  }

  .breadcrumb__link,
  .breadcrumb__current {
    font-size: 13px;
  }

  .breadcrumb__icon {
    width: 14px;
    height: 14px;
  }

  .breadcrumb__separator {
    margin: 0 6px;
    width: 5px;
    height: 6px;
  }
}

@media (max-width: 480px) {
  .breadcrumb {
    padding-top: 0;
  }

  .breadcrumb.breadcrumb--works {
    padding-bottom: 20px;
  }
}

.single_contents_wrap.single_contents_wrap--news {
  padding-top: 50px;
}

.single_inner.single_inner--news {
  padding-top: 0;
}

@media only screen and (max-width: 1024px) {
  .single_inner.single_inner--news {
      padding-right: 0;
      padding-left: 0;
  }
  .single_contents_wrap.single_contents_wrap--news {
    padding-right: 7%;
    padding-left: 7%;
  }
}