.news-ticker {
  position: fixed;
  left: 520px;
  bottom: 30px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  justify-items: start;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  width: calc(100% - 520px - 200px);
  max-width: 940px;
  min-height: 80px;
  margin: 0 auto;
  padding: 0 3%;
  overflow: hidden;
  border-radius: 999px;
  background: #fff4e3;
  color: #111;
}
@media screen and (max-width: 1280px) {
  .news-ticker {
    width: calc(100% - 60px);
    left: 30px;
    bottom: 15px;
    max-width: initial;
  }
}
@media screen and (max-width: 999px) {
  .news-ticker {
    grid-template-columns: minmax(0, 1fr) auto auto;
    grid-template-areas: "label count count" "items items items";
    -webkit-box-align: start;
    -webkit-align-items: start;
        -ms-flex-align: start;
            align-items: start;
    max-width: intail;
    width: calc(100% - 30px);
    min-height: auto;
    padding: 15px 3%;
    border-radius: 10px;
    gap: 10px;
    bottom: 5px;
    left: 15px;
  }
}
.news-ticker.active {
  top: -110px;
  bottom: auto;
  position: absolute;
}
@media screen and (max-width: 1280px) {
  .news-ticker.active {
    top: -100px;
    left: 30px;
  }
}
@media screen and (max-width: 999px) {
  .news-ticker.active {
    top: -120px;
    left: 15px;
  }
}
.news-ticker__label {
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
@media screen and (max-width: 999px) {
  .news-ticker__label {
    grid-area: label;
    font-size: 16px;
    line-height: 1.2;
  }
}
.news-ticker__items {
  width: 100%;
  min-width: 0;
}
@media screen and (max-width: 999px) {
  .news-ticker__items {
    width: 100%;
    grid-area: items;
  }
}
.news-ticker__item {
  display: none;
  grid-template-columns: auto minmax(0, 1fr);
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: 0;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}
.news-ticker__item.is-active {
  display: grid;
}
@media screen and (max-width: 999px) {
  .news-ticker__item {
    width: 100%;
    grid-template-columns: minmax(0, 1fr);
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }
}
.news-ticker__date {
  display: grid;
  place-items: center;
  min-height: 48px;
  padding-left: 20px;
  border-left: 1px solid #111;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}
@media screen and (max-width: 999px) {
  .news-ticker__date {
    width: 100%;
    place-items: start;
    display: block;
    text-align: left;
    min-height: auto;
    padding: 5px 0 0;
    border-top: 1px solid #111;
    border-left: 0;
    font-size: 14px;
    line-height: 1.4;
  }
}
.news-ticker__viewport {
  min-width: 0;
  overflow: hidden;
}
@media screen and (max-width: 999px) {
  .news-ticker__viewport {
    width: 90%;
    margin: 5px auto 0 0;
  }
}
.news-ticker__link, .news-ticker__nolink {
  display: block;
  white-space: nowrap;
}
@media screen and (max-width: 999px) {
  .news-ticker__link, .news-ticker__nolink {
    white-space: normal;
  }
}
.news-ticker__link {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.news-ticker__link:hover {
  opacity: 0.6;
}
.news-ticker__track {
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  white-space: nowrap;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  will-change: transform;
}
.news-ticker__title {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: #111;
}
@media screen and (max-width: 999px) {
  .news-ticker__title {
    text-align: left;
    display: block;
    width: 100%;
    font-size: 14px;
    line-height: 1.15;
    overflow-wrap: anywhere;
  }
}
.news-ticker__next {
  position: relative;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
@media screen and (max-width: 999px) {
  .news-ticker__next {
    position: absolute;
    bottom: 25px;
    right: 4%;
    width: 15px;
    height: 15px;
  }
}
.news-ticker__next::before {
  content: "";
  position: absolute;
  top: 55%;
  left: 50%;
  width: 50%;
  aspect-ratio: 1;
  border-top: 2px solid #2e2e2e;
  border-right: 2px solid #2e2e2e;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
@media screen and (max-width: 999px) {
  .news-ticker__next::before {
    top: 55%;
    border-top: 2px solid #2e2e2e;
    border-right: 2px solid #2e2e2e;
  }
}
.news-ticker__count {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-align: right;
  white-space: nowrap;
}
@media screen and (max-width: 999px) {
  .news-ticker__count {
    grid-area: count;
    font-size: 16px;
    line-height: 1.2;
  }
}

.news-list {
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  .news-list {
    padding: 60px 0;
  }
}
.news-list__inner {
  width: 90%;
  max-width: 860px;
  margin: 0 auto;
}
.news-list__items {
  margin: 0;
  padding: 0;
  border-top: 1px solid #d1001f;
  list-style: none;
}
.news-list__item {
  border-bottom: 1px solid #d1001f;
}
.news-list__item.is-hidden {
  display: none;
}
.news-list__link {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 15px;
  padding: 30px 3%;
  color: inherit;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 768px) {
  .news-list__link {
    padding: 20px 3%;
    row-gap: 5px;
  }
}
.news-list__link:hover {
  opacity: 0.6;
}
.news-list__nolink {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 15px;
  padding: 30px 3%;
  color: inherit;
}
@media screen and (max-width: 768px) {
  .news-list__nolink {
    padding: 20px 3%;
    row-gap: 5px;
  }
}
.news-list__date {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .news-list__date {
    font-size: 16px;
  }
}
.news-list__text {
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .news-list__text {
    font-size: 16px;
    line-height: 1.55;
  }
}
.news-list .news-all button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 90%;
  max-width: 400px;
  height: auto;
  margin: 0 auto;
  padding: 15px 0;
  border: 1px solid #000;
  border-radius: 9999px;
  background: #fff;
  color: #000;
  font-size: 20px;
  font-weight: normal;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (max-width: 599px) {
  .news-list .news-all button {
    width: 280px;
    font-size: 14px;
  }
}
.news-list .news-all button:hover {
  opacity: 0.6;
}
@media screen and (max-width: 999px) {
  .news-list .news-all button:hover {
    opacity: 1;
  }
}

@media screen and (max-width: 1280px) {
  .btn-fix-tel {
    bottom: 110px;
  }
  .btn-fix-tel.active {
    bottom: auto;
    top: -200px;
  }
}
@media screen and (max-width: 999px) {
  .btn-fix-tel {
    bottom: 120px;
  }
  .btn-fix-tel.active {
    bottom: auto;
    top: -190px;
  }
}

@media screen and (max-width: 1280px) {
  .btn-fix-reserve {
    bottom: 110px;
  }
  .btn-fix-reserve.active {
    bottom: auto;
    top: -280px;
  }
}
@media screen and (max-width: 999px) {
  .btn-fix-reserve {
    bottom: 120px;
  }
  .btn-fix-reserve.active {
    bottom: auto;
    top: -220px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .news-ticker__track {
    -webkit-transform: none !important;
            transform: none !important;
  }
}/*# sourceMappingURL=news.css.map */