/* Font Size ----- */
/* :root {
    //color settings
    //original
    --color-txt: #222b37;
    --color-white: #fff;
    --color-yellow: #ffe200;
    --color-blue: #00a2d2;
    --color-gray: #e7ecf0;

    //color role
    --color-main: var(--color-txt) !important;
    --color-accent: var(--color-yellow) !important;
    --color-sub: var(--color-blue) !important;
    --color-base : var(--color-gray) !important;
} */
.news-layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 3rem;
}
@media screen and (max-width:991px) {
  .news-layout {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
}
@media screen and (min-width:992px) {
  .news-layout {
    gap: 5rem;
  }
}

.news-main {
  width: 70%;
}
@media screen and (max-width:991px) {
  .news-main {
    width: 100%;
  }
}
.news-main .news-list {
  border-top: 1px dotted #909090;
}
.news-main .news-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4rem;
  padding-block: 3rem;
  border-bottom: 1px dotted #909090;
}
@media screen and (max-width:767px) {
  .news-main .news-item {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
    padding-block: 2rem;
  }
}
.news-main .news-item__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width:767px) {
  .news-main .news-item__meta {
    gap: 1.5rem;
  }
}
.news-main .news-item__date {
  color: #9da1a6;
  font-size: 1.5rem;
  white-space: nowrap;
}
.news-main .news-item__cat {
  display: inline-block;
  background-color: #00a2d2;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 0.4em 1.5em;
  border-radius: 100vmax;
  min-width: 100px;
  text-align: center;
  margin-inline: auto;
  white-space: nowrap;
}
.news-main .news-item__cat.-release {
  background-color: #00a2d2;
}
.news-main .news-item__ttl {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.6;
  margin: 0;
}
.news-main .news-item__ttl a {
  color: #222b37;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}
.news-main .news-item__ttl a:hover {
  opacity: 0.7;
}
.news-main .pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  margin-top: 5rem;
}
.news-main .pagination .page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #eee;
  color: #333;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.4rem;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.news-main .pagination .page-numbers.current {
  background-color: #00a2d2;
  color: #fff;
}
.news-main .pagination .page-numbers:not(.current):not(.dots):hover {
  background-color: #ddd;
}
.news-main .pagination .page-numbers.dots {
  background-color: transparent;
  letter-spacing: 0.2em;
}

.news-sidebar {
  width: 25%;
  min-width: 240px;
}
@media screen and (max-width:991px) {
  .news-sidebar {
    width: 100%;
    margin-top: 3rem;
  }
}
.news-sidebar .widget {
  margin-bottom: 4rem;
}
.news-sidebar .widget-title {
  background-color: #222b37;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  padding: 1.2rem 2rem;
  border-radius: 4px;
  margin-bottom: 2rem;
}
.news-sidebar .widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.news-sidebar .widget ul li {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  font-weight: 700;
}
.news-sidebar .widget ul li a {
  color: #222b37;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.news-sidebar .widget ul li a::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 2px solid #222b37;
  border-right: 2px solid #222b37;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-right: 1rem;
  margin-left: 0.5rem;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.news-sidebar .widget ul li a:hover, .news-sidebar .widget ul li a.-active {
  color: #222b37;
}
.news-sidebar .widget ul li a:hover::before, .news-sidebar .widget ul li a.-active::before {
  border-color: #222b37;
}
.news-sidebar .widget .select-wrap {
  position: relative;
  background-color: #eaebec;
  border-radius: 4px;
  overflow: hidden;
}
.news-sidebar .widget .select-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.5rem;
  width: 8px;
  height: 8px;
  border-bottom: 2px solid #222b37;
  border-right: 2px solid #222b37;
  -webkit-transform: translateY(-70%) rotate(45deg);
          transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}
.news-sidebar .widget .select-wrap select {
  width: 100% !important;
  padding: 1.2rem 1.5rem;
  background: transparent;
  border: none;
  font-size: 1.4rem;
  color: #222b37;
  font-weight: 700;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: block;
  height: unset;
}
.news-sidebar .widget .select-wrap select:focus {
  outline: none;
}

.news-detail__header {
  margin-bottom: 3rem;
}
.news-detail__ttl {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.4;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid #00a2d2;
  margin-block: 0 2.5rem;
}
@media (max-width: 768px) {
  .news-detail__ttl {
    font-size: 2rem;
  }
}
.news-detail__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
}
.news-detail__date {
  color: #9da1a6;
  font-size: 1.4rem;
}
.news-detail__cat {
  display: inline-block;
  background-color: #00a2d2;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 0.3em 1.5em;
  border-radius: 20px;
}
.news-detail__thumb {
  margin-bottom: 4rem;
}
.news-detail__thumb img {
  width: 100%;
  height: auto;
  display: block;
}
.news-detail__body {
  margin-bottom: 6rem;
  font-size: 1.6rem;
  line-height: 1.8;
  color: #222b37;
}
.news-detail__body > * {
  width: 100% !important;
}
.news-detail__body p {
  margin-bottom: 2rem;
}
.news-detail__body a {
  color: #00a2d2;
  text-decoration: none;
}
.news-detail__body a:hover {
  text-decoration: underline;
}
.news-detail__body h2 {
  background-color: #eaebec;
  font-size: 2rem;
  font-weight: 700;
  padding: 1.5rem 2rem;
  margin-top: 4rem;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .news-detail__body h2 {
    font-size: 1.8rem;
    padding: 1.2rem;
  }
}
.news-detail__body h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #00a2d2;
  padding-bottom: 0.5rem;
  border-bottom: 2px dotted #ccc;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .news-detail__body h3 {
    font-size: 1.6rem;
  }
}
.news-detail__body iframe {
  max-width: 100%;
  aspect-ratio: 16/9;
  margin-block: 2rem;
}
.news-detail__body img {
  max-width: 100%;
  height: auto;
}
.news-detail__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 4rem;
}
.news-detail__footer .btn-back {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 240px;
  height: 56px;
  border: 1px solid #333;
  border-radius: 50px;
  background-color: #fff;
  color: #333;
  text-decoration: none;
  font-weight: 700;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
}
.news-detail__footer .btn-back::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-left: 1rem;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.news-detail__footer .btn-back:hover {
  background-color: #333;
  color: #fff;
}
.news-detail__footer .btn-back:hover::after {
  border-color: #fff;
}/*# sourceMappingURL=style-news.css.map */