/*************************
***       color        ***
**************************/
/********************************
*******    column    *******
*********************************/
#archive-column {
  padding: 0 0 2rem;
  position: relative;
}

#archive-column .wrapper {
  position: relative;
  z-index: 100;
}

#archive-column .wrapper-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 300px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#archive-column .archive-header {
  background: url(../img/bk_archive_skyblue.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  padding-top: 2rem;
  padding-bottom: 150px;
}

#archive-column .archive-body {
  margin: 0 auto;
  margin-top: -150px;
  position: relative;
  z-index: 100;
}

#archive-column .section-title {
  color: #e60039;
  font-size: 3rem;
  text-align: center;
  margin-top: 2rem;
}

#archive-column .section-subtitle {
  font-size: 1.2rem;
  text-align: center;
}

#archive-column .section-description {
  display: none;
  margin: 2rem 0 0;
  text-align: center;
  font-size: 0.8rem;
}

#archive-column .cat-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem;
  padding: 3rem 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#archive-column .cat-list li {
  background-color: #ffffff;
  border: 1px solid #004098;
  border-radius: 2rem;
}

#archive-column .cat-list li a {
  display: block;
  padding: 0.25rem 1rem;
  font-size: 0.7rem;
  color: #004098;
}

#archive-column .cat-list li.current {
  background-color: #004098;
}

#archive-column .cat-list li.current a {
  color: #ffffff;
}

.column-list {
  margin-bottom: 2rem;
  width: 100%;
}

.column-list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}

.column-list article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 2px;
  -webkit-box-shadow: 2px 2px 4px #c8c8c8;
          box-shadow: 2px 2px 4px #c8c8c8;
  border-radius: 10px;
}

.column-list article .column-image {
  width: 100%;
}

.column-list article .column-image img {
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  border-radius: 10px 10px 0 0;
  width: 100%;
}

.column-list article .column-strings {
  width: 100%;
  padding: 1rem 1rem 0;
}

.column-list article .column-catdate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.column-list article .column-category a {
  color: #ffffff;
  display: inline-block;
  background-color: #004098;
  border-radius: 1rem;
  padding: 0.1rem 1rem;
  margin: 0 1rem 0.5rem 0;
  font-size: 0.7rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.column-list article .column-datetip {
  margin: 0 0 0.3rem;
  font-size: 0.8rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.column-list article .column-date {
  font-weight: bold;
}

.column-list article .column-tip {
  color: #e60039;
  font-style: italic;
  padding-left: 1rem;
}

.column-list article .column-title {
  font-size: 0.8rem;
  padding: 0 1rem 1rem;
}

.column-list article .column-title a {
  text-decoration: underline;
  font-weight: bold;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

@media only screen and (min-width: 768px) {
  #archive-column .archive-header {
    padding-top: 2rem;
  }
  #archive-column .section-title {
    font-size: 4rem;
  }
  #archive-column .section-subtitle {
    font-size: 1.8rem;
  }
  #archive-column .section-description {
    display: block;
  }
  #archive-column .cat-list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .column-list ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 2rem;
  }
  .column-list ul li {
    width: calc(100% / 3 - 22px);
  }
  .column-list article {
    height: 100%;
  }
  .column-list article .column-title {
    font-size: 0.88rem;
    padding: 0 0 1rem;
  }
}

.nav-links {
  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: 0 8px;
}

.nav-links .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: 2rem;
  height: 2rem;
  color: #004098;
  border-radius: 50%;
}

.nav-links .current {
  color: #ffffff;
  background-color: #004098;
}

.nav-links .next,
.nav-links .prev {
  border: 1px solid #004098;
  border-radius: 8px;
}

/********************************
*******      catalog      *******
*********************************/
#catalog {
  background-color: #ffdc3c;
  position: relative;
  padding-top: 6rem;
  padding-bottom: 8rem;
}

#catalog .catalog-o {
  top: -4rem;
  right: -1rem;
}

#catalog .wrapper-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

#catalog .section-title {
  color: #e60039;
}

#catalog .section-discription {
  font-size: 0.6rem;
}

#catalog .btn-catalog {
  color: #e60039;
  background-color: #ffffff;
  max-width: 400px;
  height: 7rem;
  margin: 4rem auto 0;
  padding: 1rem;
  font-weight: bold;
  border: 2px solid #e60039;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

#catalog .btn-catalog::before {
  display: inline-block;
  width: 1.2rem;
  height: 1.2rem;
  background-color: #e60039;
  border-radius: 50%;
  content: "";
  position: absolute;
  top: 40%;
  right: 0.58rem;
}

#catalog .btn-catalog::after {
  display: inline-block;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 0.5rem;
  height: 0.5rem;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  content: "";
  position: absolute;
  top: 45%;
  right: 1rem;
}

#catalog .btn-catalog img {
  width: 210px;
  position: absolute;
  top: -2.5rem;
}

@media only screen and (min-width: 375px) {
  #catalog .section-discription {
    font-size: 0.75rem;
  }
}

@media only screen and (min-width: 425px) {
  #catalog .section-discription {
    font-size: 0.9rem;
  }
}

@media only screen and (min-width: 465px) {
  #catalog .section-discription {
    font-size: 1rem;
  }
}

@media only screen and (min-width: 768px) {
  #catalog .catalog-o {
    top: -5rem;
    right: -2rem;
  }
  #catalog .btn-catalog {
    max-width: 500px;
    height: auto;
    margin: 3rem auto 0;
    padding: 1rem;
    border-radius: 30px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
  }
  #catalog .btn-catalog::before {
    top: 35%;
  }
  #catalog .btn-catalog img {
    top: -3rem;
    left: 2rem;
  }
  #catalog .btn-catalog span {
    padding-right: 2rem;
  }
}
/*# sourceMappingURL=archive-column.css.map */