/*------------------------------------
トップ 縦並びスライダー 用CSS
------------------------------------*/
.information {
  position: relative;
  z-index: 1;
  margin-top: -70px;
}
.information .inner {
  padding: 0;
}
.slide-information {
  width: 80%;
  min-width: 750px;
  margin: auto;
  background-color: var(--color-white);
  padding: 20px 40px;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 30px;
  align-items: center;
}
.slide-information .news-title .main-ttl {
  font-size: 1.6rem;
  color: var(--color-main);
  font-weight: 600;
  line-height: 1;
}
.slide-information .news-title .main-ttl span {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-black);
  position: relative;
}
.slide-information .news-title .main-ttl span::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -30px;
  width: 25px;
  height: 1px;
  background-color: var(--color-main);
}
.slide-information .news-btn {
  margin-top: 1rem;
}
.slide-information .news-btn a {
  display: inline-block;
  font-size: 12px;
  color: var(--color-black);
  border: 1px solid var(--color-black);
  padding: 7px 30px;
  border-radius: 20px;
  background-color: var(--color-white);
  line-height: 1;
  transition: all .3s;
}
.slide-information .news-btn a:hover {
  background-color: var(--color-main);
  color: var(--color-white);
  border: 1px solid var(--color-main);
}
.slide-information .bx-wrapper {
  margin-bottom: 0;
  box-shadow: none;
  border: none;
  background: none;
}

.slide-information .box-slider {
  margin: 5px auto;
  padding: 5px 0;
}
.slide-information .text-content {
  position: relative;
  padding: 15px 10px;
  border-bottom: 1px solid #ddd;
  min-width: 0;
}
.slide-information .text-content .flex-container {
  color: #333333;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  width: 100%;
  max-width: 100%;
}
.slide-information .text-content .flex-container .date {
  font-size: 0.8rem;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  padding: 0 10px;
  white-space: nowrap;
  width: auto;
}
.slide-information .text-content .flex-container .title-text {
  font-size: 0.8rem;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  padding: 0 40px 0 10px;
  line-height: 1.4;
  flex: 1 1 auto;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: auto; 
}
.slide-information .text-content .flex-container .circle {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #333333;
  transition: 0.3s;
  flex: 0 0 20px;
}
.slide-information .text-content .flex-container .circle::before {
  content: "";
  width: 6px;
  height: 6px;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
  position: absolute;
  right: 8px;
  top: 7px;
  transform: rotate(-45deg);
}
.slide-information .text-content .flex-container:hover {
  color: var(--color-main);
}
.slide-information .text-content .flex-container:hover .circle {
  background-color: var(--color-main);
}
.slide-information .box-slider,
.slide-information .slick-list{
  overflow: hidden;
  width: 100%;
}
.slide-information .slick-slide{
  min-width: 0;
}

@media only screen and (max-width: 1080px) {
  .slide-information {
    width: 100%;
    min-width: 600px;
    padding: 20px;
    gap: 10px;
  }
  .slide-information .text-content .flex-container .circle {
    right: 0;
  }
}

@media only screen and (max-width: 767px) {
  .slide-information {
    min-width: unset;
    grid-template-columns: 1fr;
  }
  .slide-information .news-title {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: space-between;
  }
  .slide-information .news-btn {
    margin-top: 0;
  }
  .slide-information .text-content {
    padding: 10px 0;
  }
  .slide-information .text-content .flex-container {
    flex-direction: column;
    gap: 5px;
  }
  .slide-information .text-content .flex-container .date {
    width: 100%;
    padding: 0;
    font-size: 0.8rem;
  }
  .slide-information .text-content .flex-container .title-text {
    width: 100%;
    font-size: 0.8rem;
    padding: 0 20px 0 0;
  }
}