@charset "UTF-8";
.news-cont {
  padding-top: 80px;
  padding-bottom: 80px;
}

@media screen and (max-width: 767px) {
  .news-cont {
    padding-top: 40px;
    padding-bottom: 60px;
  }
}

.select-box {
  width: 200px;
  height: 40px;
  position: relative;
}

.default_select {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  cursor: pointer;
  -webkit-appearance: menulist-button;
}

.custom_select {
  width: 100%;
  height: 100%;
  background-color: #ffffff;
}

.custom_select {
  border: 1px solid;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

/* 
カテゴリーエリア */
.menuArea {
  z-index: 3;
  margin-bottom: 40px;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 1024px) {
  .menuArea {
    display: block;
  }
}

.menuArea .container {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

@media screen and (max-width: 1024px) {
  .menuArea .container {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.menuBox {
  position: relative;
  display: block;
  width: 200px;
  background-color: #fff;
  border: 1px solid #333;
  position: relative;
  border-radius: 10px;
  line-height: 40px;
  padding: 0 10px;
}

.menuBox + .menuBox {
  margin-left: 25px;
}

.menuBox:hover {
  border-radius: 10px 10px 0 0;
}

.menuBox::after {
  position: absolute;
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 3px 0 3px;
  border-color: #333333 transparent transparent transparent;
  top: calc(50% - 3px);
  right: 10px;
}

.menuTagBox {
  display: none;
  position: absolute;
  top: 20px;
  left: -1px;
  z-index: 3;
}

@media screen and (max-width: 1024px) {
  .menuTagBox {
    width: calc(100% + 2px);
  }
}

.menuBox:hover .menuTagBox {
  display: block;
}

.menuTagList {
  display: none;
  margin-top: 20px;
  background-color: #fff;
  border: 1px solid #333;
  -webkit-box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0);
  box-shadow: 0px 1px 10px 0px rgba(0, 0, 0, 0);
  width: 200px;
  padding: 0px 10px;
  z-index: 99;
  position: relative;
  border-radius: 0 0 10px 10px;
}

.menuTagItem {
  position: relative;
}

.menuTagItem .more {
  display: block;
  width: 14px;
  height: 14px;
  top: 16px;
  position: absolute;
  right: 4px;
  cursor: pointer;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .menuTagItem .more {
    width: 10px;
    height: 10px;
    top: 19px;
  }
}

.menuTagItem .more.is-click::after {
  transform: translateY(-50%) rotate(0deg);
  opacity: 0;
}

.menuTagItem .more::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #333;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0px;
}
.menuTagItem .more::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #333;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  right: 0px;
  transition: transform 0.1s ease, opacity 0.1s ease;
}

.child-categories {
  display: none;
}
.child-categories a {
  display: block;
}
.menuTagItem .more.is-click + .child-categories {
  display: block;
}

@media screen and (max-width: 1024px) {
  .menuTagList {
    width: 100%;
  }
}

.menuBox:hover .menuTagBox .menuTagList {
  display: block;
}

.menuTagList li {
  padding: 5px 0;
  border-bottom: 1px solid rgba(89, 73, 63, 0.12);
  text-align: center;
}

.menuTagList li a:hover {
  opacity: 0.7;
}

#searchform {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 40px;
}

#searchform input {
  width: 320px;
  border-radius: 10px 0 0 10px;
  border-width: 1px;
  padding: 0 15px;
}

@media screen and (max-width: 1024px) {
  #searchform {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 20px;
  }
}

.searchBtn {
  width: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  background-color: #555;
  border-radius: 0 10px 10px 0;
}

.newsItem {
  background-color: #f0f9f3;
  border-radius: 20px;
}

.newsItem + .newsItem {
  margin-top: 25px;
}

.newsItem:hover a {
  opacity: 0.7;
}

.newsItem:hover a::after {
  right: 53px;
}

@media screen and (max-width: 767px) {
  .newsItem:hover a::after {
    right: 20px;
  }
}

.newsItem a {
  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: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  line-height: 85px;
  padding: 30px 130px 30px 35px;
}

@media screen and (max-width: 767px) {
  .newsItem a {
    display: block;
    line-height: 1;
    padding: 20px 20px 30px;
  }
}

.newsItem a::after {
  display: inline-block;
  content: "";
  position: absolute;
  background-image: url(../img/common/icon_arrow.svg);
  width: 32px;
  height: 8px;
  background-position: center;
  background-repeat: no-repeat;
  top: calc(50% - 4px);
  right: 60px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media screen and (max-width: 767px) {
  .newsItem a::after {
    top: calc(100% - 24px);
    right: 20px;
  }
}

.newsImg {
  width: 210px;
  height: 150px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

@media screen and (max-width: 767px) {
  .newsImg {
    margin: 0 auto 10px;
  }
}

.newsInfo {
  width: calc(100% - 210px - 30px);
}

@media screen and (max-width: 767px) {
  .newsInfo {
    width: 100%;
  }
}

.newsInfoData {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 10px;
}

.newsInfoData .time {
  display: inline-block;
  width: 80px;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .newsInfoData .time {
    font-size: 12px;
    width: 65px;
  }
}

.newsInfoData .category {
  display: inline-block;
  width: 100px;
  font-size: 14px;
  margin-left: 15px;
  letter-spacing: 0.05em;
  position: relative;
  line-height: 30px;
  border-radius: 16px;
  border: 1px solid #8fc9a2;
  color: #8fc9a2;
  text-align: center;
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .newsInfoData .category {
    font-size: 12px;
    line-height: 20px;
    margin-right: 0px;
    width: 60px;
  }
}

.newsInfoData .category-important {
  border: 1px solid #d27563;
  color: #d27563;
}

.newsTtl {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #333;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: calc(40 / 16);
}

@media screen and (max-width: 767px) {
  .newsTtl {
    font-size: 14px;
    width: 100%;
    white-space: normal;
    overflow: unset;
    text-overflow: unset;
    display: block;
    line-height: calc(48 / 26);
  }
}

/* 詳細ページ */
.contentArea_dateCate {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.newsDate {
  display: inline-block;
  width: 80px;
  font-size: 14px;
  letter-spacing: 0;
  color: #eb776f;
}

@media screen and (max-width: 767px) {
  .newsDate {
    font-size: 12px;
    width: 65px;
  }
}

.newsCategory {
  display: inline-block;
  width: 80px;
  font-size: 14px;
  letter-spacing: 0;
  position: relative;
  color: #eb776f;
}

@media screen and (max-width: 767px) {
  .newsCategory {
    font-size: 12px;
  }
}

.newsCategory::before {
  content: "";
  position: relative;
  display: inline-block;
  width: 1px;
  height: 14px;
  background-color: #eb776f;
  margin-right: 12px;
  -webkit-transform: translateY(1px);
  transform: translateY(1px);
}

@media screen and (max-width: 767px) {
  .newsCategory::before {
    margin-right: 10px;
    height: 12px;
  }
}

.contentAreaTtl {
  padding: 10px 0;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 2px;
  border-bottom: 1px solid #d4e6dd;
}

@media screen and (max-width: 1024px) {
  .contentAreaTtl {
    font-size: 18px;
  }
}

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

.wp_article_text {
  margin-top: 46px;
  line-height: 1.8;
}

@media screen and (max-width: 767px) {
  .wp_article_text {
    margin-top: 20px;
  }
}

.wp_article_text > h1 {
  font-size: 32px;
  line-height: 1.65;
  font-weight: 500;
  position: relative;
  margin-bottom: 14px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  letter-spacing: 2px;
}

.wp_article_text > h1::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 6px;
  height: 36px;
  margin-right: 10px;
  margin-left: 2px;
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
  background-color: #eb776f;
}

.wp_article_text > h2 {
  font-size: 28px;
  line-height: 1.65;
  font-weight: 500;
  margin-bottom: 11px;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  letter-spacing: 2px;
}

.wp_article_text > h2::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 4px;
  height: 30px;
  margin-right: 8px;
  margin-left: 2px;
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
  background-color: #eb776f;
}

.wp_article_text > h3 {
  font-size: 22px;
  line-height: 1.65;
  font-weight: 500;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.wp_article_text > h3::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 4px;
  height: 24px;
  margin-right: 6px;
  margin-left: 2px;
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
  background-color: #eb776f;
}

.wp_article_text > h4 {
  font-size: 15px;
  line-height: 1.65;
  font-weight: 500;
  margin-bottom: 10px;
}

.wp_article_text > h5 {
  font-size: 13px;
  line-height: 1.65;
  font-weight: 500;
  margin-bottom: 10px;
}

.wp_article_text > h6 {
  font-size: 13px;
  line-height: 1.65;
  font-weight: 500;
  margin-bottom: 10px;
}

.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: #eb776f;
}

.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: #eb776f;
  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: #d4e6dd;
  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: calc(100% - 120px); */
  height: auto;
  max-width: 100%;
}


.wp_article_text table {
  border: 1px solid #ddd;
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  .wp_article_text table {
    margin-top: 20px;
  }
}

.wp_article_text table th {
  background-color: #f7f7f7;
  padding: 25px;
  font-weight: bold;
  border: 1px solid #ddd;
}

@media screen and (max-width: 767px) {
  .wp_article_text table th {
    padding: 10px;
  }
}

.wp_article_text table td {
  padding: 25px;
  border: 1px solid #ddd;
}

@media screen and (max-width: 767px) {
  .wp_article_text table td {
    padding: 10px;
  }
}


@media screen and (max-width: 1024px) {
  .wp_article_text > h1 {
    font-size: 18px;
    line-height: 1.65;
    font-weight: 500;
    position: relative;
    margin-bottom: 14px;
    padding-left: 18px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    letter-spacing: 2px;
  }
  .wp_article_text > h2 {
    font-size: 16px;
    line-height: 1.65;
    font-weight: 500;
    margin-bottom: 11px;
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    letter-spacing: 2px;
  }
  .wp_article_text > h3 {
    font-size: 14px;
    line-height: 1.65;
    font-weight: 500;
    margin-bottom: 15px;
    letter-spacing: 2px;
  }
  .wp_article_text > h3::before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 4px;
    height: 24px;
    margin-right: 13px;
    margin-left: 2px;
    -webkit-transform: translateY(-1px);
    transform: translateY(-1px);
    background-color: #eb776f;
  }
  .wp_article_text > h4 {
    font-size: 13px;
    line-height: 1.65;
    font-weight: 500;
    margin-bottom: 10px;
  }
  .wp_article_text > h5 {
    font-size: 13px;
    line-height: 1.65;
    font-weight: 500;
    margin-bottom: 10px;
  }
  .wp_article_text > h6 {
    font-size: 13px;
    line-height: 1.65;
    font-weight: 500;
    margin-bottom: 10px;
  }
  .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: #eb776f;
  }
  .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: #eb776f;
    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: #d4e6dd;
    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: calc(100% - 120px);
    height: auto;
  }
}

.backList_btnCover {
  text-align: center;
  margin: 50px auto 30px;
}

@media screen and (max-width: 767px) {
  .backList_btnCover {
    margin: 20px auto 20px;
  }
}

.backList_btn {
  position: relative;
  z-index: 3;
  width: 200px;
}

.backList_btn::before {
  display: none;
}

@media screen and (max-width: 767px) {
  .backList_btn {
    width: 120px;
    min-width: 0;
  }
}

.backList_btn:hover {
  position: relative;
  z-index: 3;
}

.single-btnCover {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 50px auto 30px;
}

@media screen and (max-width: 767px) {
  .single-btnCover {
    margin: 20px auto 20px;
  }
}

.pageLink {
  width: 30%;
  color: #8fc9a2;
  line-height: 80px;
}

@media screen and (max-width: 767px) {
  .pageLink {
    line-height: 45px;
  }
}

.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;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

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

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

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

/* ページャー */
.wp-pagenavi {
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
  font-size: 18px;
  font-family: "Poppins", sans-serif;
}

.wp-pagenavi .page {
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
  text-decoration: none;
  display: inline-block;
  width: 30px;
  margin: 0 5px;
  border: 0px;
}

.wp-pagenavi .page:hover {
  opacity: 0.7;
}

.wp-pagenavi .current {
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
  text-decoration: none;
  width: 30px;
  display: inline-block;
  margin: 0 5px;
  border: 0px;
}

.pages {
  display: none;
}

.previouspostslink,
.nextpostslink {
  margin: auto;
  display: inline-block;
  vertical-align: middle;
  font-size: 0;
  border: 0px !important;
}

.previouspostslink::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 1px solid #333;
  border-left: 1px solid #333;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: rotate(-45deg) translateY(-2px);
  transform: rotate(-45deg) translateY(-2px);
  margin-right: 20px;
}

.nextpostslink::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: rotate(45deg) translateY(-5px);
  transform: rotate(45deg) translateY(-5px);
  margin-left: 20px;
}

.nextpostslink:hover::before {
  opacity: 0.7;
}

.previouspostslink:hover::before {
  opacity: 0.7;
}

a.last,
a.first {
  display: none;
}
/*# sourceMappingURL=news.css.map */
