/* ===============================================
# 追従CTAバナー
=============================================== */
.cta-banner {
  position: fixed;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
  width: 100%;
  background-color: #00ADAA;
  border-radius: 0;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  z-index: 998;
  padding: 15px 245px 15px 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  box-sizing: border-box;
}
.cta-banner.show {
  opacity: 1;
  transform: translateY(0);
}

.cta-banner__close {
  display: none;
}

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

.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%;
  max-width: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 0;
  border-radius: 3px;
  background: #FFF;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.25);
  color: #00ADAA;
  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: 15px;
  object-fit: contain;
  position: absolute;
  right: 10px;
}
@media (max-width: 767px) {
  .cta-banner {
    width: calc(100% - 25px);
    padding: 14px 30px 13px 30px;
    bottom: 10px;
    gap: 9px;
    flex-direction: column;
  }

  .cta-banner__button {
    width: 100%;
    border-radius: 5px;
    font-size: 19px;
  }

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

  .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%;
  }
}