#archive .cate-menu {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: calc(8px * 2);
  max-width: 1000px;
  margin: 0 auto;
  margin-bottom: calc(8px * 5);
}

@media screen and (max-width: 960px) {
  #archive .cate-menu {
    gap: calc((8px * 2) * 0.75);
  }
}

@media screen and (max-width: 640px) {
  #archive .cate-menu {
    gap: calc((8px * 2) * 0.5);
  }
}

@media screen and (max-width: 960px) {
  #archive .cate-menu {
    margin-bottom: calc((8px * 5) * 0.75);
  }
}

@media screen and (max-width: 640px) {
  #archive .cate-menu {
    margin-bottom: calc((8px * 5) * 0.5);
  }
}

@media screen and (max-width: 960px) {
  #archive .cate-menu {
    grid-template-columns: repeat(2, 1fr);
  }
}

#archive .cate-menu__item {
  height: 64px;
}

@media screen and (max-width: 960px) {
  #archive .cate-menu__item {
    height: 56px;
  }
}

@media screen and (max-width: 640px) {
  #archive .cate-menu__item {
    height: 48px;
  }
}

@media screen and (max-width: 960px) {
  #archive .cate-menu__item:nth-child(1) {
    grid-column: 1 / 3;
  }
}

#archive .cate-menu__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  border: solid 2px rgba(0, 78, 136, 0.16);
  border-radius: 4px;
  background: #fff;
  color: #004e88;
}

#archive .cate-menu__item a::before {
  position: absolute;
  content: "";
  right: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border-style: solid;
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent #004e88;
}

@media screen and (max-width: 640px) {
  #archive .cate-menu__item a::before {
    right: 12px;
    border-width: 5px 0 5px 7px;
  }
}

#archive .cate-menu__item a:hover {
  -webkit-transform: translate(6px, 6px);
  transform: translate(6px, 6px);
  background: rgba(0, 78, 136, 0.08);
}

#archive .news-list {
  margin-bottom: calc(8px * 5);
}

@media screen and (max-width: 960px) {
  #archive .news-list {
    margin-bottom: calc((8px * 5) * 0.75);
  }
}

@media screen and (max-width: 640px) {
  #archive .news-list {
    margin-bottom: calc((8px * 5) * 0.5);
  }
}

#archive .news-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 56px;
  background: #fff;
  border-radius: 56px;
  -webkit-box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 640px) {
  #archive .news-list__item {
    height: auto;
    border-radius: 4px;
  }
}

#archive .news-list__item:not(:last-child) {
  margin: 0 0 16px;
}

@media screen and (max-width: 640px) {
  #archive .news-list__item:not(:last-child) {
    margin: 0 0 10px;
  }
}

#archive .news-list__item .item__date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 0 0 8px;
  width: 160px;
  height: 100%;
  border-radius: 56px 0 0 56px;
  background: #004e88;
  color: #fff;
  font-family: "Lato", sans-serif;
}

@media screen and (max-width: 960px) {
  #archive .news-list__item .item__date {
    width: 120px;
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 640px) {
  #archive .news-list__item .item__date {
    width: 100px;
    height: 30px;
    padding: 2px 8px;
    border-radius: 4px 0 0 0;
  }
}

#archive .news-list__item .item__cate {
  margin: 0 32px;
}

@media screen and (max-width: 960px) {
  #archive .news-list__item .item__cate {
    margin: 0 16px;
  }
}

@media screen and (max-width: 640px) {
  #archive .news-list__item .item__cate {
    margin: 0;
  }
}

#archive .news-list__item .item__cate a {
  display: block;
  width: 114px;
  padding: 4px 8px 6px;
  border: solid 2px #ebf1f6;
  border-radius: 2px;
  background: #ebf1f6;
  text-align: center;
  line-height: 1;
  font-weight: bold;
  color: #004e88;
  text-align: center;
}

@media screen and (max-width: 960px) {
  #archive .news-list__item .item__cate a {
    padding: 4px 8px 5px;
    width: 100px;
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 640px) {
  #archive .news-list__item .item__cate a {
    padding: 5px 8px 4px;
    width: 96px;
    height: 30px;
    border-radius: 0 0 2px 0;
  }
}

#archive .news-list__item .item__cate a:hover {
  background: #fff;
}

#archive .news-list__item .item__ttl {
  position: relative;
  padding: 8px 40px 0 0;
  width: calc( 100% - 338px);
  word-break: break-all;
}

@media screen and (max-width: 960px) {
  #archive .news-list__item .item__ttl {
    width: calc( 100% - 252px);
    padding: 6px 36px 0 0;
  }
}

@media screen and (max-width: 640px) {
  #archive .news-list__item .item__ttl {
    width: 100%;
    padding: 10px 24px 4px 8px;
  }
}

#archive .news-list__item .item__ttl::before {
  position: absolute;
  content: "";
  right: 24px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  border-style: solid;
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent #004e88;
  -webkit-transition: .3s ease-out;
  transition: .3s ease-out;
}

@media screen and (max-width: 960px) {
  #archive .news-list__item .item__ttl::before {
    right: 18px;
  }
}

@media screen and (max-width: 640px) {
  #archive .news-list__item .item__ttl::before {
    border-width: 5px 0 5px 7px;
    right: 12px;
  }
}

#archive .news-list__item .item__ttl span {
  display: inline-block;
  max-width: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 78, 136, 0.16)), to(rgba(0, 78, 136, 0.08))) 0 100%/0 2px no-repeat;
  background: linear-gradient(rgba(0, 78, 136, 0.16), rgba(0, 78, 136, 0.08)) 0 100%/0 2px no-repeat;
  -webkit-transition: background .2s;
  transition: background .2s;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

@media screen and (max-width: 640px) {
  #archive .news-list__item .item__ttl span {
    background: none;
  }
}

#archive .news-list__item .item__ttl:hover {
  color: #004e88;
}

#archive .news-list__item .item__ttl:hover::before {
  -webkit-transform: translate(4px, -50%);
  transform: translate(4px, -50%);
}

#archive .news-list__item .item__ttl:hover span {
  background-size: 100% 2px;
}

#single .breadcrumb {
  max-width: 1200px;
}

#single .news {
  margin-bottom: calc(8px * 5);
}

@media screen and (max-width: 960px) {
  #single .news {
    margin-bottom: calc((8px * 5) * 0.75);
  }
}

@media screen and (max-width: 640px) {
  #single .news {
    margin-bottom: calc((8px * 5) * 0.5);
  }
}

#single .news .news-eyecatch {
  position: relative;
  aspect-ratio: 3/2;
  max-width: 800px;
  margin-bottom: calc(8px * 5);
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 960px) {
  #single .news .news-eyecatch {
    margin-bottom: calc((8px * 5) * 0.75);
  }
}

@media screen and (max-width: 640px) {
  #single .news .news-eyecatch {
    margin-bottom: calc((8px * 5) * 0.5);
  }
}

#single .news .news-eyecatch img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

#single .news .news-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: calc(8px * 2);
}

@media screen and (max-width: 960px) {
  #single .news .news-meta {
    margin-bottom: calc((8px * 2) * 0.75);
  }
}

@media screen and (max-width: 640px) {
  #single .news .news-meta {
    margin-bottom: calc((8px * 2) * 0.5);
  }
}

#single .news .news-meta__date {
  margin-right: calc(8px * 2);
  font-family: "Lato", sans-serif;
  font-weight: bold;
  color: #004e88;
}

@media screen and (max-width: 960px) {
  #single .news .news-meta__date {
    margin-right: calc((8px * 2) * 0.75);
  }
}

@media screen and (max-width: 640px) {
  #single .news .news-meta__date {
    margin-right: calc((8px * 2) * 0.5);
  }
}

#single .news .news-meta__cate {
  display: block;
  width: 114px;
  padding: 4px 8px 6px;
  border: solid 2px #ebf1f6;
  border-radius: 2px;
  background: #ebf1f6;
  text-align: center;
  line-height: 1;
  font-weight: bold;
  color: #004e88;
  text-align: center;
}

@media screen and (max-width: 960px) {
  #single .news .news-meta__cate {
    padding: 4px 8px 5px;
    width: 100px;
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 640px) {
  #single .news .news-meta__cate {
    padding: 5px 8px 4px;
    width: 96px;
    height: 30px;
  }
}

#single .news .news-meta__cate:hover {
  background: #fff;
}

#single .news .news-ttl {
  margin-bottom: calc(8px * 3);
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1.4;
  overflow-wrap: break-word;
}

@media screen and (max-width: 960px) {
  #single .news .news-ttl {
    margin-bottom: calc((8px * 3) * 0.75);
  }
}

@media screen and (max-width: 640px) {
  #single .news .news-ttl {
    margin-bottom: calc((8px * 3) * 0.5);
  }
}

@media screen and (max-width: 960px) {
  #single .news .news-ttl {
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 640px) {
  #single .news .news-ttl {
    font-size: 2rem;
  }
}

#single .news .news-dtl {
  position: relative;
  padding-top: calc(8px * 5);
  padding-bottom: calc(8px * 5);
  overflow-wrap: break-word;
}

@media screen and (max-width: 960px) {
  #single .news .news-dtl {
    padding-top: calc((8px * 5) * 0.75);
  }
}

@media screen and (max-width: 640px) {
  #single .news .news-dtl {
    padding-top: calc((8px * 5) * 0.5);
  }
}

@media screen and (max-width: 960px) {
  #single .news .news-dtl {
    padding-bottom: calc((8px * 5) * 0.75);
  }
}

@media screen and (max-width: 640px) {
  #single .news .news-dtl {
    padding-bottom: calc((8px * 5) * 0.5);
  }
}

#single .news .news-dtl::before, #single .news .news-dtl::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 5px;
  background: url("/wp-content/themes/bones/dist/img/common/line-brn.svg") repeat-x;
}

#single .news .news-dtl::before {
  top: 0;
}

#single .news .news-dtl::after {
  bottom: 0;
}

#single .news .news-dtl > p:not(:nth-last-of-type(1)) {
  margin-bottom: calc(8px * 2);
}

@media screen and (max-width: 960px) {
  #single .news .news-dtl > p:not(:nth-last-of-type(1)) {
    margin-bottom: calc((8px * 2) * 0.75);
  }
}

@media screen and (max-width: 640px) {
  #single .news .news-dtl > p:not(:nth-last-of-type(1)) {
    margin-bottom: calc((8px * 2) * 0.5);
  }
}

#single .news .news-dtl img {
  padding: 16px 0;
  max-width: 560px;
}

@media screen and (max-width: 960px) {
  #single .news .news-dtl img {
    padding: 8px 0;
  }
}

@media screen and (max-width: 640px) {
  #single .news .news-dtl img {
    padding: 4px 0;
  }
}

#single .news .news-dtl a {
  color: #004e88;
  text-decoration: underline;
}

#single .news .news-dtl a:hover {
  text-decoration: none;
}

#single .news .news-dtl span[class^="fc-"],
#single .news .news-dtl .bold {
  font-weight: bold;
  font-size: 1.8rem;
}

@media screen and (max-width: 640px) {
  #single .news .news-dtl span[class^="fc-"],
  #single .news .news-dtl .bold {
    font-size: 1.6rem;
  }
}

/*# sourceMappingURL=../../maps/pages/news.css.map */
