@charset "UTF-8";
@-webkit-keyframes showMask {
  0% {
    translate: -101% 0;
  }
  45%, 50% {
    translate: 0% 0;
  }
  100% {
    translate: 101% 0;
  }
}
@keyframes showMask {
  0% {
    translate: -101% 0;
  }
  45%, 50% {
    translate: 0% 0;
  }
  100% {
    translate: 101% 0;
  }
}
@-webkit-keyframes showElements {
  0%, 45% {
    opacity: 0;
  }
  50%, 100% {
    opacity: 1;
  }
}
@keyframes showElements {
  0%, 45% {
    opacity: 0;
  }
  50%, 100% {
    opacity: 1;
  }
}
/* ============================================
// ブログページ
// ==========================================*/
#news-page #mainImg {
  background-image: url(../img/news/mainimg.jpg);
}
@media (min-width: 835px) {
  #news-page.news-detail #mainImg {
    height: 300px;
  }
}
#news-page .blog {
  /*------------------------------
    一覧ページ
  ------------------------------*/
  /*------------------------------
    詳細ページ
  ------------------------------*/
  /*------------------------------
    サイドナビ
  ------------------------------*/
}
#news-page .blog__container {
  max-width: 1280px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 48px 80px;
  margin: 0 auto;
  padding: 80px 40px;
}
@media (max-width: 834px) {
  #news-page .blog__container {
    display: block;
    padding: 40px 20px;
  }
}
#news-page .blog__container .hd01 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}
@media (max-width: 834px) {
  #news-page .blog__container .hd01 {
    margin-bottom: 32px;
  }
}
#news-page .blog__main {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% - 280px - 80px);
          flex: 0 0 calc(100% - 280px - 80px);
}
#news-page .blog__side {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 280px;
          flex: 0 0 280px;
}
@media (max-width: 834px) {
  #news-page .blog__side {
    margin-top: 40px;
  }
}
#news-page .blog__categoryTitle {
  font-size: 1.8em;
  font-weight: 700;
  color: #0095ff;
  line-height: 1.5;
  padding-bottom: 24px;
  border-bottom: 1px solid;
}
@media (max-width: 834px) {
  #news-page .blog__categoryTitle {
    font-size: 1.45em;
    padding-bottom: 16px;
  }
}
#news-page .blog__articles__item {
  border-bottom: 1px solid #eeeeee;
}
#news-page .blog__articles__item a {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 40px;
  padding: 32px 0;
  padding-right: 64px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
@media (max-width: 834px) {
  #news-page .blog__articles__item a {
    gap: 20px;
    padding: 20px 0;
  }
}
#news-page .blog__articles__item a::after {
  content: "";
  width: 18px;
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  z-index: -1;
  background: #0095ff;
  -webkit-mask: url(../img/news/arrow.svg) center center/contain no-repeat;
          mask: url(../img/news/arrow.svg) center center/contain no-repeat;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
@media (max-width: 834px) {
  #news-page .blog__articles__item a::after {
    display: none;
  }
}
@media (any-hover: hover) {
  #news-page .blog__articles__item a:hover {
    color: #0095ff;
  }
  #news-page .blog__articles__item a:hover::after {
    -webkit-transform: translate(4px, 0);
            transform: translate(4px, 0);
  }
}
#news-page .blog__articles__item .img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 160px;
          flex: 0 0 160px;
  max-width: 160px;
}
@media (max-width: 834px) {
  #news-page .blog__articles__item .img {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100px;
            flex: 0 0 100px;
    max-width: 100px;
  }
}
#news-page .blog__articles__item .img img {
  width: 100%;
}
#news-page .blog__articles__item .body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  -ms-flex-item-align: center;
      align-self: center;
}
#news-page .blog__articles__item .status {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5em 0.8em;
  margin-bottom: 0.7em;
}
@media (max-width: 834px) {
  #news-page .blog__articles__item .status {
    margin-bottom: 0.35em;
  }
}
#news-page .blog__articles__item .date {
  font-size: 0.7em;
  line-height: 1.5;
}
#news-page .blog__articles__item .category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: center;
      align-self: center;
  gap: 5px;
}
#news-page .blog__articles__item .category__item {
  background-color: #eeeeee;
  color: #333333;
  font-size: 0.7em;
  line-height: 1.5;
  padding: 0.5em 1.2em;
  border-radius: 500px;
}
#news-page .blog__articles__item .title {
  font-size: 1.35em;
  font-weight: 700;
  line-height: 1.6;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media (max-width: 834px) {
  #news-page .blog__articles__item .title {
    font-size: 1.075em;
  }
}
#news-page .blog__articles__item .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 40px;
  margin-top: 1em;
}
@media (max-width: 834px) {
  #news-page .blog__articles__item .content {
    gap: 20px;
    margin-top: 0.8em;
  }
}
#news-page .blog__articles__item .content .img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 200px;
          flex: 0 0 200px;
  max-width: 200px;
}
@media (max-width: 834px) {
  #news-page .blog__articles__item .content .img {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100px;
            flex: 0 0 100px;
    max-width: 100px;
  }
}
#news-page .blog__articles__item .content .txt {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  -ms-flex-item-align: center;
      align-self: center;
  font-size: 0.95em;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}
@media (max-width: 834px) {
  #news-page .blog__articles__item .content .txt {
    -webkit-line-clamp: 3;
  }
}
#news-page .blog__article__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px 16px;
  margin-bottom: 56px;
  padding-bottom: 20px;
  border-bottom: 1px solid #0095ff;
}
@media (max-width: 834px) {
  #news-page .blog__article__title {
    margin-bottom: 32px;
    padding-bottom: 16px;
  }
}
#news-page .blog__article__title .date {
  font-size: 0.8em;
  color: rgba(51, 51, 51, 0.8);
  line-height: 1.5;
}
#news-page .blog__article__title .category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: center;
      align-self: center;
  gap: 5px;
}
#news-page .blog__article__title .category__item {
  background-color: #eeeeee;
  color: #333333;
  font-size: 0.8em;
  line-height: 1.5;
  padding: 0.5em 1.6em;
  border-radius: 500px;
}
@media (max-width: 834px) {
  #news-page .blog__article__title .category__item {
    padding: 0.5em 1.2em;
  }
}
#news-page .blog__article__title .title {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  font-size: 1.8em;
  font-weight: 700;
  color: #333333;
  line-height: 1.5;
}
@media (max-width: 834px) {
  #news-page .blog__article__title .title {
    font-size: 1.45em;
  }
}
#news-page .blog__article__body {
  padding: 0 0 56px;
  border-bottom: 1px solid #eeeeee;
}
@media (max-width: 834px) {
  #news-page .blog__article__body {
    padding: 0 0 32px;
  }
}
#news-page .blog__article__body .photo__item {
  max-width: 640px;
  max-height: 480px;
  text-align: center;
  margin: 48px auto;
}
@media (max-width: 834px) {
  #news-page .blog__article__body .photo__item {
    margin: 24px auto;
  }
}
#news-page .blog__article__body .photo__item img {
  display: inline-block;
  max-width: 100%;
  max-height: 480px;
  -o-object-fit: contain;
     object-fit: contain;
}
#news-page .blog__article__body .hd {
  font-size: 1.5em;
  font-weight: 700;
  color: #0095ff;
  line-height: 1.6;
  padding-left: 0.6em;
  border-left: 4px double;
}
@media (max-width: 834px) {
  #news-page .blog__article__body .hd {
    font-size: 1.4em;
  }
}
#news-page .blog__article__body .hd + .text {
  margin-top: 20px;
}
@media (max-width: 834px) {
  #news-page .blog__article__body .hd + .text {
    margin-top: 10px;
  }
}
#news-page .blog__article__body .text {
  margin: 48px 0;
}
@media (max-width: 834px) {
  #news-page .blog__article__body .text {
    margin: 24px 0;
  }
}
#news-page .blog__article__body .marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, rgba(0, 149, 255, 0.15)));
  background: linear-gradient(transparent 60%, rgba(0, 149, 255, 0.15) 60%);
}
#news-page .blog__article__body .strong {
  font-weight: 700;
  color: #0095ff;
}
#news-page .blog__article__body .link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  gap: 0.2em;
  margin: 48px 0;
}
@media (max-width: 834px) {
  #news-page .blog__article__body .link {
    gap: 0.4em;
    margin: 20px 0;
  }
}
#news-page .blog__article__body .link:last-child {
  margin-bottom: 0;
}
#news-page .blog__article__body .link a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-weight: 700;
  color: #0095ff;
  gap: 6px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
#news-page .blog__article__body .link a::before {
  content: "";
  aspect-ratio: 1/1;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 1em;
          flex: 0 0 1em;
  width: 1em;
  margin-top: 0.45em;
  background: #0095ff;
  -webkit-mask-position: center center;
          mask-position: center center;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-image: url(../img/news/ico_link.svg);
          mask-image: url(../img/news/ico_link.svg);
}
@media (max-width: 834px) {
  #news-page .blog__article__body .link a::before {
    margin-top: 0.35em;
  }
}
#news-page .blog__article__body .link a[target=_blank]::before {
  -webkit-mask-image: url(../img/news/ico_external.svg);
          mask-image: url(../img/news/ico_external.svg);
}
@media (any-hover: hover) {
  #news-page .blog__article__body .link a:hover {
    opacity: 0.7;
  }
}
#news-page .blog__btnArea {
  margin-top: 48px;
}
#news-page .blog__btnArea .backBtn {
  display: block;
  text-align: center;
}
#news-page .blog__btnArea .backBtn a {
  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;
  font-size: 1.1em;
  font-weight: 700;
  color: #0095ff;
  gap: 0.8em;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
#news-page .blog__btnArea .backBtn a::before {
  content: "";
  aspect-ratio: 1/1;
  width: 1em;
  background: #0095ff;
  -webkit-mask: url(../img/news/arrow.svg) center center/contain no-repeat;
          mask: url(../img/news/arrow.svg) center center/contain no-repeat;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
@media (any-hover: hover) {
  #news-page .blog__btnArea .backBtn a:hover {
    opacity: 0.7;
  }
  #news-page .blog__btnArea .backBtn a:hover::before {
    -webkit-transform: scaleX(-1) translate(4px, 0);
            transform: scaleX(-1) translate(4px, 0);
  }
}
#news-page .blog__side__block {
  margin-top: 40px;
}
@media (max-width: 834px) {
  #news-page .blog__side__block {
    margin-top: 30px;
  }
}
#news-page .blog__side__block:first-child {
  margin-top: 0;
}
#news-page .blog__side__block .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px;
  font-size: 1.3em;
  font-weight: 700;
  color: #0095ff;
  line-height: 1.6;
  margin-bottom: 0.6em;
}
#news-page .blog__side__block .list__item {
  border-bottom: 1px solid #eeeeee;
}
#news-page .blog__side__block .list__item:first-child {
  border-top: 1px solid #0095ff;
}
#news-page .blog__side__block .list__item a {
  position: relative;
  z-index: 1;
  display: block;
  padding: 1em 0.5em;
  padding-right: 40px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
#news-page .blog__side__block .list__item a::after {
  content: "";
  width: 14px;
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  z-index: -1;
  background: #0095ff;
  -webkit-mask: url(../img/news/arrow.svg) center center/contain no-repeat;
          mask: url(../img/news/arrow.svg) center center/contain no-repeat;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
@media (any-hover: hover) {
  #news-page .blog__side__block .list__item a:hover {
    color: #0095ff;
  }
  #news-page .blog__side__block .list__item a:hover::after {
    -webkit-transform: translate(4px, 0);
            transform: translate(4px, 0);
  }
}
#news-page .job_count_pager {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#news-page .job_count_pager .pagination ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#news-page .job_count_pager .pagination ul li {
  text-align: center;
}
#news-page .job_count_pager .pagination ul li a, #news-page .job_count_pager .pagination ul li em {
  display: block;
  font-weight: 400;
  font-style: normal;
  overflow: hidden;
  border-radius: 50%;
  background: #f1f1f1;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
#news-page .job_count_pager .pagination ul li a:hover,
#news-page .job_count_pager .pagination ul li em {
  color: #f1f1f1;
  background: #0095ff;
}
#news-page .job_count_pager .pagination ul .number {
  display: none;
}
@media (min-width: 835px) {
  #news-page .job_count_pager .pagination ul .number {
    display: inline-block;
  }
}
#news-page .job_count_pager .pagination ul .number.current {
  display: inline-block;
}
#news-page .job_count_pager.contents_top {
  margin-bottom: 30px;
}
@media (max-width: 834px) {
  #news-page .job_count_pager.contents_top {
    margin-bottom: 24px;
  }
}
#news-page .job_count_pager.contents_top .pagination ul li a, #news-page .job_count_pager.contents_top .pagination ul li em {
  margin: 0 2px;
}
#news-page .job_count_pager.contents_bottom {
  display: block;
  padding-top: 64px;
}
@media (max-width: 834px) {
  #news-page .job_count_pager.contents_bottom {
    padding-top: 40px;
  }
}
#news-page .job_count_pager.contents_bottom .pagination ul li {
  font-size: 13px;
}
#news-page .job_count_pager.contents_bottom .pagination ul li a, #news-page .job_count_pager.contents_bottom .pagination ul li em {
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin: 0 4px;
}
@media (max-width: 834px) {
  #news-page .job_count_pager.contents_bottom .pagination ul li a, #news-page .job_count_pager.contents_bottom .pagination ul li em {
    width: 36px;
    height: 36px;
    line-height: 36px;
  }
}/*# sourceMappingURL=blog.css.map */