@charset "UTF-8";
.linkTxt {
  color: #2A4B7C;
}

.newsInner {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  margin-bottom: 80px;
}
@media screen and (max-width: 1024px) {
  .newsInner {
    display: block;
    margin-top: 20px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .newsInner {
    margin-top: 16px;
    margin-bottom: 40px;
    flex-flow: column;
  }
}

.contentArea {
  width: calc(100% - 200px - 60px);
}
@media screen and (max-width: 1024px) {
  .contentArea {
    width: 100%;
    margin-top: 40px;
  }
}

.newsItem a {
  padding: 40px 0;
}
@media screen and (max-width: 767px) {
  .newsItem a {
    padding: 20px 0;
  }
}

.tagArea {
  width: 200px;
  margin-top: 30px;
}
@media screen and (max-width: 1024px) {
  .tagArea {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 767px) {
  .tagArea {
    width: 100%;
    margin-top: 10px;
  }
}

@media screen and (max-width: 1024px) {
  .tagAreaItem {
    width: 50%;
    margin-top: 10px;
  }
}
.tagAreaItem + .tagAreaItem {
  margin-top: 10px;
}
@media screen and (max-width: 1024px) {
  .tagAreaItem + .tagAreaItem {
    margin-top: 10px;
  }
}

.tagAreaItemTtl {
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .tagAreaItemTtl {
    font-weight: bold;
    font-size: 22px;
  }
}

.tagList {
  font-size: 14px;
}
@media screen and (max-width: 1024px) {
  .tagList {
    display: flex;
    flex-wrap: wrap;
  }
  .tagList li + li {
    margin-left: 20px;
  }
}
@media screen and (max-width: 767px) {
  .tagList {
    display: block;
    margin-top: 7px;
    font-size: 14px;
  }
  .tagList li + li {
    margin-top: 10px;
    padding-top: 10px;
    border-top: solid 1px #ddd;
  }
}
.tagList li:hover a {
  color: #d64d31;
}

.tagList--archive li {
  display: inline-block;
}
.tagList--archive li::before {
  content: "";
  display: inline-block;
  margin-right: 12px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 11px;
  border-color: transparent transparent transparent #d64d31;
  transition-duration: 0.3s;
}
.tagList--archive li:hover::before {
  transform: rotateX(180deg) translateX(5px);
}
.tagList--archive li:hover a {
  color: #d64d31;
}

/* 詳細ページ */
.singleNewsInner {
  margin-top: 120px;
  margin-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .singleNewsInner {
    margin-top: 60px;
    margin-bottom: 60px;
  }
}
.singleNewsInner .newsInfo {
  margin-right: 0;
}

.newsContentBox-single .newsTtl-detail {
  width: 100%;
  font-size: 36px;
  font-weight: bold;
  line-height: 1.3888888889;
}
@media screen and (max-width: 767px) {
  .newsContentBox-single .newsTtl-detail {
    font-size: 22px;
  }
}
.newsContentBox-single .recommendInfo {
  display: flex;
  align-items: center;
}
.newsContentBox-single .recommendInfo .time {
  margin-left: 10px;
}
.newsContentBox-single .tag {
  display: inline-block;
  font-size: 14px;
  color: #333;
  border: 2px solid #333;
  line-height: 20px;
  padding: 0 10px;
  text-align: center;
  border-radius: 12px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .newsContentBox-single .tag {
    font-size: 11px;
    border: 1px solid #333;
    line-height: 15px;
    padding: 0 5px;
    border-radius: 10px;
  }
}

.wp_article_img {
  text-align: center;
  width: 100%;
  margin: 20px auto;
}

.wp_article_text {
  border-top: 1px solid #c1c1c1;
  padding: 40px 20px 0;
  margin-top: 10px;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .wp_article_text {
    padding: 20px 10px 0;
  }
}

.wp_article_text > h1 {
  color: #333;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.02em;
  line-height: 1.6666666667;
  position: relative;
  padding-left: 15px;
  margin-bottom: 20px;
}
.wp_article_text > h1::before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 7px;
  height: calc(100% - 16px);
  top: 9px;
  left: 0;
  background-color: #333;
}
@media screen and (max-width: 767px) {
  .wp_article_text > h1 {
    font-size: 20px;
    padding-left: 10px;
    margin-bottom: 10px;
  }
  .wp_article_text > h1::before {
    width: 4px;
    height: calc(100% - 10px);
    top: 5px;
  }
}

.wp_article_text > h2 {
  color: #333;
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 0.02em;
  line-height: 1.6666666667;
  position: relative;
  padding-left: 15px;
  margin-bottom: 20px;
}
.wp_article_text > h2::before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 7px;
  height: calc(100% - 16px);
  top: 9px;
  left: 0;
  background-color: #333;
}
@media screen and (max-width: 767px) {
  .wp_article_text > h2 {
    font-size: 18px;
    padding-left: 10px;
    margin-bottom: 10px;
  }
  .wp_article_text > h2::before {
    width: 4px;
    height: calc(100% - 10px);
    top: 5px;
  }
}

.wp_article_text > h3 {
  color: #333;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.02em;
  line-height: 1.6666666667;
  position: relative;
  padding-left: 15px;
  margin-bottom: 20px;
}
.wp_article_text > h3::before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 7px;
  height: calc(100% - 16px);
  top: 9px;
  left: 0;
  background-color: #333;
}
@media screen and (max-width: 767px) {
  .wp_article_text > h3 {
    font-size: 16px;
    padding-left: 10px;
    margin-bottom: 10px;
  }
  .wp_article_text > h3::before {
    width: 4px;
    height: calc(100% - 10px);
    top: 5px;
  }
}

.wp_article_text > h4 {
  color: #333;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.02em;
  line-height: 1.6666666667;
  position: relative;
  padding-left: 15px;
  margin-bottom: 20px;
}
.wp_article_text > h4::before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 7px;
  height: calc(100% - 16px);
  top: 9px;
  left: 0;
  background-color: #333;
}
@media screen and (max-width: 767px) {
  .wp_article_text > h4 {
    font-size: 14px;
    padding-left: 10px;
    margin-bottom: 10px;
  }
  .wp_article_text > h4::before {
    width: 4px;
    height: calc(100% - 10px);
    top: 5px;
  }
}

.wp_article_text > h5 {
  color: #333;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.02em;
  line-height: 1.6666666667;
  position: relative;
  padding-left: 15px;
  margin-bottom: 20px;
}
.wp_article_text > h5::before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 7px;
  height: calc(100% - 16px);
  top: 9px;
  left: 0;
  background-color: #333;
}
@media screen and (max-width: 767px) {
  .wp_article_text > h5 {
    font-size: 14px;
    padding-left: 10px;
    margin-bottom: 10px;
  }
  .wp_article_text > h5::before {
    width: 4px;
    height: calc(100% - 10px);
    top: 5px;
  }
}

.wp_article_text > h6 {
  color: #333;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.02em;
  line-height: 1.6666666667;
  position: relative;
  padding-left: 15px;
  margin-bottom: 20px;
}
.wp_article_text > h6::before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 7px;
  height: calc(100% - 16px);
  top: 9px;
  left: 0;
  background-color: #333;
}
@media screen and (max-width: 767px) {
  .wp_article_text > h6 {
    font-size: 14px;
    padding-left: 10px;
    margin-bottom: 10px;
  }
  .wp_article_text > h6::before {
    width: 4px;
    height: calc(100% - 10px);
    top: 5px;
  }
}

.wp_article_text > ul, .wp_article_text > ol {
  margin: 0 auto 30px;
}

.wp_article_text li {
  line-height: 1.6;
  display: block;
}

.wp_article_text li + li {
  margin-top: 7px;
}

.wp_article_text ul li {
  display: block;
  position: relative;
}

.wp_article_text ul li::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin-right: 6px;
  width: 6px;
  height: 6px;
  background-color: #e52e35;
}

.wp_article_text > ol {
  counter-reset: number 0;
}

.wp_article_text > ol > li::before {
  display: inline-block;
  counter-increment: number 1;
  content: counter(number);
  color: #fff;
  background-color: #e52e35;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  font-weight: 500;
  vertical-align: middle;
  font-style: 14px;
  text-align: center;
  margin-right: 10px;
}

.wp_article_text > blockquote {
  color: #999;
  font-style: italic;
}

.wp_article_text a {
  color: #333;
  border-bottom: 1px solid #333;
  transition: 0.3s;
}

.wp_article_text a:hover {
  color: #333;
}

.wp_article_text > hr {
  display: block;
  width: 100%;
  height: 1px;
  background-color: #ddd;
  display: block;
  border: none;
}

.wp_article_text > p {
  line-height: 1.8;
  margin-bottom: 20px;
}

.wp_article_text > p > em {
  font-style: italic;
}

.wp_article_text > p > img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 767px) {
  .wp_article_text > ul, .wp_article_text > ol {
    margin: 0 auto 30px;
  }
  .wp_article_text li {
    line-height: 1.6;
    display: block;
  }
  .wp_article_text li + li {
    margin-top: 7px;
  }
  .wp_article_text ul li {
    display: block;
    position: relative;
  }
  .wp_article_text ul li::before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    margin-right: 6px;
    width: 6px;
    height: 6px;
    background-color: #e52e35;
  }
  .wp_article_text > ol {
    counter-reset: number 0;
  }
  .wp_article_text > ol > li::before {
    display: inline-block;
    counter-increment: number 1;
    content: counter(number);
    color: #fff;
    background-color: #e52e35;
    border-radius: 50%;
    width: 25px;
    height: 25px;
    font-weight: 500;
    vertical-align: middle;
    font-style: 14px;
    text-align: center;
    margin-right: 10px;
  }
  .wp_article_text > blockquote {
    color: #999;
    font-style: italic;
  }
  .wp_article_text > a {
    color: #fff;
    text-decoration: underline;
  }
  .wp_article_text > a:hover {
    text-decoration: none;
  }
  .wp_article_text > hr {
    display: block;
    width: 100%;
    height: 1px;
    background-color: #ddd;
    display: block;
    border: none;
  }
  .wp_article_text > p {
    line-height: 1.8;
    margin-bottom: 20px;
  }
  .wp_article_text > p > em {
    font-style: italic;
  }
  .wp_article_text > p > img {
    width: 100%;
    height: auto;
  }
}
.c-btn-back:hover::before {
  transform: translateX(-5px) rotate(180deg);
}

.single-btnCover {
  display: flex;
  justify-content: center;
  margin: 50px auto 30px;
}
@media screen and (max-width: 767px) {
  .single-btnCover {
    margin: 40px auto 20px;
  }
}

.pageLink {
  width: 30%;
  color: #333;
  line-height: 60px;
}

.pageLink-next {
  text-align: right;
  padding-right: 50px;
}
@media screen and (max-width: 767px) {
  .pageLink-next {
    padding-right: 10px;
  }
}

.pageLink-prev {
  text-align: left;
  padding-left: 50px;
}
@media screen and (max-width: 767px) {
  .pageLink-prev {
    padding-left: 10px;
  }
}

.pageLink-prev a {
  display: inline-block;
  position: relative;
  transition: 0.3s;
}

.pageLink-prev a:hover {
  opacity: 0.7;
}

.pageLink-next a {
  display: inline-block;
  position: relative;
  transition: 0.3s;
}

.pageLink-next a:hover {
  opacity: 0.7;
}

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