@charset "UTF-8";

.staff-blog-home,
.staff-blog-archive,
.single .contentsarea .staff-blog-single {
  background-color: #ebfffb;
}

.contentsarea .staff-blog-archive .content-warp {
  max-width: 100%;
  width: 100%;
}

.staff-blog-archive .heading_primary {
  margin: 0 auto;
}



.staff-blog__mv {
  position: relative;
}
.staff-blog__mv .staff-blog__mv-bg {
  width: 100%;
  height: 100%;
  display: block;
}
.staff-blog__mv .staff-blog__mv-inner {
  width: 100%;
  max-width: 1366px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.staff-blog__mv .staff-blog__mv-inner .staff-blog__mv-titleBox {
  position: absolute;
  top: 50%;
  left: 7%;
  transform: translateY(-50%);
  color: #212121;
}
@media screen and (min-width: 768px) {
  .staff-blog__mv .staff-blog__mv-inner .staff-blog__mv-titleBox {
    left: min(12vw, 360px);
  }
}
@media screen and (min-width: 1540px) {
  .staff-blog__mv .staff-blog__mv-inner .staff-blog__mv-titleBox {
    left: min(23vw, 440px);
  }

  .staff-blog-single .staff-blog__mv .staff-blog__mv-inner .staff-blog__mv-titleBox {
    left: 150px;
  }
}

.staff-blog__mv .staff-blog__mv-inner .staff-blog__mv-titleBox .staff-blog__mv-title {
  font-size: min(6.13333vw, 37px);
  transform: translateX(-0.25em);
  font-weight: bold;
}
.staff-blog__mv .staff-blog__mv-inner .staff-blog__mv-titleBox .staff-blog__mv-text {
  line-height: 1.4;
  font-size: min(3.46667vw, 14px);
  font-weight: 700;
  margin: 8px 0 0 0;
}
.staff-blog__mv .staff-blog__mv-inner .staff-blog__mv-titleBox .staff-blog__mv-iconList {
  margin: 10px 0 0;
  display: flex;
  align-items: center;
  gap: 10%;
}
.staff-blog__mv .staff-blog__mv-inner .staff-blog__mv-titleBox .staff-blog__mv-iconList .staff-blog__mv-iconItem a img {
  width: auto;
  height: min(5.87vw, 29px);
}
@media screen and (min-width: 768px) {
  .staff-blog__mv .staff-blog__mv-inner .staff-blog__mv-titleBox .staff-blog__mv-title {
    font-size: min(3vw, 47px);
    transform: translateX(-0.25em);
  }
  .staff-blog-single .staff-blog__mv .staff-blog__mv-inner .staff-blog__mv-titleBox .staff-blog__mv-title {
    font-size: min(4vw, 37px);
  }

  .staff-blog__mv .staff-blog__mv-inner .staff-blog__mv-titleBox .staff-blog__mv-text {
    font-size: min(1.6vw, 20px);
    margin: min(0.2vw, 8px) 0 0 0;
  }
  .staff-blog-single .staff-blog__mv .staff-blog__mv-inner .staff-blog__mv-titleBox .staff-blog__mv-text {
    font-size: min(2vw, 16px);
  }

  .staff-blog__mv .staff-blog__mv-inner .staff-blog__mv-titleBox .staff-blog__mv-iconList {
    margin: min(1vw, 20px) 0 0 0;
    gap: 5%;
  }
  .staff-blog__mv .staff-blog__mv-inner .staff-blog__mv-titleBox .staff-blog__mv-iconList .staff-blog__mv-iconItem a img {
    height: min(2.5vw, 36px);
  }
}



.contents__middle {
  background-color: #ededed;
}

.contents__middle .post-slider .post-slider__thumb {
  padding: 20px 20px 0;
  aspect-ratio: auto;
}
.contents__middle .post-slider .post-slider__thumb img {
  object-fit: contain;
}

.contents__middle .post-slider .post-slider__text {
  margin: 0;
  padding: 6px 20px 20px;
}

.contents__middle .post-slider .post-slider__text .post-slider__tag {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.contents__middle .post-slider .post-slider__text .post-slider__tag a {
  min-width: 71px;
}

.contents__middle .post-slider .post-slider__text .post-slider__title {
  font-size: min(3.2vw, 14px);
}
.contents__middle .post-slider .post-slider__text .post-slider__date-group {
  margin: 0.8em 0 0;
  justify-content: flex-start;
  font-size: min(3.6vw, 14px);
}
.contents__middle .post-slider .post-slider__text .post-slider__date-group .post-slider__modified-date {
  font-size: min(3.6vw, 14px);
}

.contents__middle .post-slider .slick-slider {
  margin-bottom: 0;
  padding: 0 0 50px;
}
.contents__middle .post-slider .slick-slider .slick-dots {
  bottom: 20px;
}



.category-box {
  background-color: #cdf5ed;
  text-align: center;
}

.category-box a {
  display: block;
}

.category-box a,
.category-box a p {
  color: #212121;
  line-height: 1.334;
  font-size: 12px;
  font-weight: bold;
  cursor: pointer;
}

.category-toggle_button {
  width: 100%;
  padding: 12px;
}

.category-toggle_button p {
  padding-right: 20px;
  position: relative;
  display: inline-block;
}
.category-toggle_button p::after {
  content: "";
  width: 9px;
  height: 9px;
  position: absolute;
  right: 0;
  top: 30%;
  border-bottom: 1px solid currentColor;
  border-left: 1px solid currentColor;
  transform: translateY(-50%) rotate(-45deg);
  transition: transform 0.2s ease;
}

.category-toggle_button p.is-open::after {
  transform: translateY(0) rotate(-225deg);
}

#js-category-list {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}

#js-category-list.is-open {
  max-height: 1000px;
  padding: 0 0 10px;
  opacity: 1;
}

.category-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background-color: #ebfffb;
}

.category-list .category-item {
  padding: 8px 0;
  background-color: #fff;
}

.category-list .category-item .category-parent .category-parent_text,
.category-list .category-item .category-children li {
  width: 91px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  line-height: 1.308;
}

.category-list .category-item .category-count {
  font-size: 13px;
}



.staff-blog-home .contents__bottom,
.staff-blog-archive .contents-bottom  {
  width: 100%;
  max-width: 1366px;
  margin: 0 auto;
  padding: 0 0 80px;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 992px) {
  .staff-blog-home .contents__bottom,
  .staff-blog-archive .contents-bottom  {
    flex-direction: row;
    gap: 46px;
  }
  .staff-blog-home .contents__bottom  {
    padding: 40px 0 80px;
  }
}

@media screen and (min-width: 768px) {
  .staff-blog-single .content-warp .cat-post__flex {
    column-gap: 40px;
  }
}

.staff-blog-home .contents__bottom .post-gorup,
.staff-blog-single .content-warp .cat-post__flex .cat-post__content-wrap {
  width: 100%;
  margin: 0;
}
.staff-blog-archive .contents-bottom .post-gorup {
  width: 100%;
  margin: 0;
}
@media screen and (min-width: 992px) {
  .staff-blog-home .contents__bottom .post-gorup,
  .staff-blog-archive .contents-bottom .post-gorup {
    width: 64.861%;
  }

  .staff-blog-single .content-warp .cat-post__flex .cat-post__content-wrap {
    width: 67.457%;
  }
}

.staff-blog-archive .category-desc {
  padding: 20px 10px 5px;
  background-color: transparent;
}
@media screen and (min-width: 768px) {
  .staff-blog-archive .category-desc {
    padding: 20px 0 4px;
  }
}

.staff-blog-archive .category-desc__ttl {
  padding: 0 0 0 5px;
  border-left: 5px solid #212121;
  border-bottom: none;
  line-height: 1.0955;
  font-size: 15px;
}
@media screen and (min-width: 768px) {
  .staff-blog-archive .category-desc__ttl {
    width: 94.6%;
    margin: 0 auto;
    font-size: 21px;
  }
}
@media screen and (min-width: 992px) {
  .staff-blog-archive .category-desc__ttl {
    width: 100%;
  }
}

.staff-blog-home .contents__bottom .post-gorup .post,
.staff-blog-archive .contents-bottom .post-gorup .post {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
@media screen and (min-width: 768px) {
  .staff-blog-home .contents__bottom .post-gorup .post,
  .staff-blog-archive .contents-bottom .post-gorup .post {
    width: 94.6%;
    margin: 0 auto;
    display: grid;
    flex-direction: unset;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
@media screen and (min-width: 992px) {
  .staff-blog-home .contents__bottom .post-gorup .post,
  .staff-blog-archive .contents-bottom .post-gorup .post {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1190px) {
  .staff-blog-home .contents__bottom .post-gorup .post,
  .staff-blog-archive .contents-bottom .post-gorup .post {
    grid-template-columns: repeat(3, 1fr);
  }
}

.post-gorup .post .post__item:hover {
  background-color: #ededed;
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .post-gorup .post .post__item {
    flex-direction: column;
    border: 1px solid #CFCFCF;
  }
}

.post-gorup .post .post__item .post__thumb {
  width: 146px;
  height: auto;
  aspect-ratio: auto;
}
@media screen and (min-width: 768px) {
  .post-gorup .post .post__item .post__thumb {
    width: 100%;
    margin: 0 auto;
  }
}

.post-gorup .post .post__item .post__text {
  width: calc(100% - 156px);
  gap: 7px;
}
@media screen and (min-width: 768px) {
  .post-gorup .post .post__item .post__text {
    width: 100%;
    height: 100%;
    margin: 1em 0 0;
    gap: 1em;
  }
}

.post-gorup .post .post__item .post__text .post__title {
  display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
  -webkit-line-clamp: 4;
}
.post-gorup .post .post__item .post__text .post__title::after {
  content: none;
}
@media screen and (min-width: 768px) {
  .post-gorup .post .post__item .post__text .post__title {
    max-height: none;
  }
}

.post .post__item .post__tag-list {
  height: 35px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .post .post__item .post__tag-list {
    height: 50px;
    gap: 6px 12px;
  }
}

.post .post__item .post__tag-list .post__tag {
  min-width: 63px;
  height: 15px;
  margin: 0;
  padding: 3px;
  background-color: #212121;
  color: #fff;
  text-align: center;
  line-height: 1;
  font-size: 9px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .post .post__item .post__tag-list .post__tag {
    min-width: 68px;
    height: 22px;
    padding: 5.5px;
    font-size: 11px;
  }
}





@media screen and (min-width: 992px) {
  .contents__bottom .sub,
  .staff-blog-archive .contents-bottom .sub,
  .staff-blog-single .cat-post__flex .sub {
    width: calc(36.868% - 46px);
  }
}

.staff-blog-archive .contents-bottom .sub .sidebar_search {
  display: none;
}

@media screen and (min-width: 768px) {
  .contents__bottom .sub .category-link,
  .contents-bottom .sub .category-link,
  .staff-blog-single .sub .category-link {
    padding: 0;
  }
}

.staff-blog-home .contents__bottom .sub .widget.my-popular-posts,
.staff-blog-archive .contents-bottom .sub .widget.my-popular-posts,
.staff-blog-single .sub .widget.my-popular-posts {
  padding: 0;
}
.staff-blog-home .contents__bottom .sub .sub__title,
.staff-blog-archive .contents-bottom .sub .sub__title {
  margin: 0 0 20px;
  padding: 0;
  border: none;
}
.staff-blog-home .contents__bottom .sub .sub-post,
.staff-blog-archive .contents-bottom .sub .sub-post {
  margin: 0;
}
.staff-blog-home .contents__bottom .sub .sub-post .sub-post__thumb,
.staff-blog-archive .contents-bottom .sub .sub-post .sub-post__thumb {
  width: auto;
}
.staff-blog-home .contents__bottom .sub .sub-post .sub-post__thumb a,
.staff-blog-archive .contents-bottom .sub .sub-post .sub-post__thumb a {
  width: 92px;
  aspect-ratio: auto;
}
.staff-blog-home .contents__bottom .sub .sub-post .sub-post__thumb a img,
.staff-blog-archive .contents-bottom .sub .sub-post .sub-post__thumb a img,
.staff-blog-single .sub .sub-post .sub-post__thumb a img {
  object-fit: contain;
}
.sub .sub-post .sub-post__title {
  height: 52px;
  font-size: 13px;
  line-height: 1.38;
}
.sub .sub-post .sub-post__title::after {
  content: none;
}

.staff-blog-home .sub .sidebar-news,
.staff-blog-archive .contents-bottom .sub .sidebar-news {
  padding: 0;
}
.staff-blog-single .sub .sidebar-news {
  padding: 0;
}
.staff-blog-home .sub .sub-news,
.staff-blog-archive .sub .sub-news,
.staff-blog-single .sub .sub-news {
  background-color: unset;
}

.sub .sidebar-news .sub-news__more {
  padding: 0;
}
@media screen and (min-width: 768px) {
  .sub .sidebar-news .sub-news__more {
    margin-top: 16px;
  }
}



.contentsarea .c-breadcrumb {
  border-top: 1px solid #ddd;
}





/* staff-blog-single */
.staff-blog-single #single .container {
  padding: 0 20px 20px;
  background-color: #ebfffb;
}
@media screen and (min-width: 768px) {
  .staff-blog-single #single .container {
    padding: 0 0 20px;
  }
}
@media screen and (min-width: 992px) {
  .staff-blog-single #single .container {
    padding: 0 0 60px;
  }
}

.staff-blog-single #single .blog-header {
  margin: 0 0 15px;
  padding: 0 0 10px;
  border-bottom: 1px solid #cfcfcf;
}
@media screen and (min-width: 768px) {
  .staff-blog-single #single .blog-header {
    margin: 0 0 40px;
  }
}

.staff-blog-single #single .blog-header .post-cat-children {
  margin: 0;
}

.staff-blog-single #single .blog {
  padding: 15px 20px 20px;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .staff-blog-single #single .blog {
    padding: 20px 20px 20px;
  }
}
@media screen and (min-width: 992px) {
  .staff-blog-single #single .blog {
    padding: 20px 40px 20px;
  }
}

.staff-blog-single #single .blog p {
  line-height: 1.786;
  font-size: 14px !important;
}
@media screen and (min-width: 768px) {
  .staff-blog-single #single .blog p {
    line-height: 2.25;
    font-size: 16px !important;
  }
}

.staff-blog-single #single .blog img {
  max-width: 500px;
  width: 79.664%;
  margin: 20px auto;
}



.staff-blog-single #single .heading02 {
  font-size: 17px;
}
@media screen and (min-width: 768px) {
  .staff-blog-single #single .heading02 {
    font-size: min(3vw, 30px);
  }
}



.staff-blog-single #single .relation_col-wrap {
  margin: 40px 0 0;
  padding: 0 2px;
}
.staff-blog-single #single .relation_col-wrap .relation_col {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 75px;
}
.staff-blog-single #single .relation_col-wrap .relation_col .post__item {
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid #cfcfcf;
}
.staff-blog-single #single .relation_col-wrap .relation_col .post__item::after {
  content: "";
  display: none;
}
@media screen and (min-width: 768px) {
  .staff-blog-single #single .relation_col-wrap {
    padding: 0;
  }
  .staff-blog-single #single .relation_col-wrap .relation_col {
    width: 100%;
    gap: 23px;
  }
  .staff-blog-single #single .relation_col-wrap .relation_col .post__item {
    padding: 20px;
    flex-direction: row;
    gap: 20px;
  }
}
.staff-blog-single #single .relation_col-wrap .relation_col .post__item .post__thumb {
  width: auto;
  height: auto;
  margin: 0;
  aspect-ratio: unset;
}
.staff-blog-single #single .relation_col-wrap .relation_col .post__item .post__thumb img {
  margin: 0 auto;
  object-fit: contain;
}
.staff-blog-single #single .relation_col-wrap .relation_col .post__item .post__text {
  width: 100%;
}
.staff-blog-single #single .relation_col-wrap .relation_col .post__item .post__text .post__tag-list {
  display: none;
}
.staff-blog-single #single .relation_col-wrap .relation_col .post__item .post__text .post__title {
  width: auto;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.308;
  letter-spacing: 0;
  font-size: 13px;
}
.staff-blog-single #single .relation_col-wrap .relation_col .post__item .post__text .post__title::after {
  content: none;
}

.staff-blog-single #single .relation_col-wrap .relation_col .post__item .post__text .post__text-bottom {
  display: none;
}
@media screen and (min-width: 768px) {
  .staff-blog-single #single .relation_col-wrap .relation_col .post__item .post__thumb {
    width: 72.2561%;
  }
  .staff-blog-single #single .relation_col-wrap .relation_col .post__item .post__text .post__title {
    max-height: initial;
    -webkit-line-clamp: 4;
    line-height: 1.649;
    font-size: 16px;
  }
}

.staff-blog-single #single .cat-post__content-wrap .post__prev-next {
  margin: 14px 0 0;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .staff-blog-single #single .cat-post__content-wrap .post__prev-next {
    margin: 20px 0 0;
    padding: 0 40px;
  }
}

.staff-blog-single #single .cat-post__content-wrap .post__prev-next a {
  width: 115px;
}



.sns-box_wrapper {
  margin: 60px 0 0;
}
.sns-box {
  width: 325px;
  margin: 0 auto;
  padding: 15px 10px 10px;
  display: flex;
  gap: 10px;
  background-color: #fff;
  color: #212121;
}
.sns-box:hover {
  background-color: #f9f9f9;
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .sns-box_wrapper {
    margin: 0;
    padding-left: 2.8%;
  }
  .sns-box {
    width: 525px;
    margin: 0;
    padding: 20px;
    gap: 20px;
  }
}

.sns-box_image img {
  width: 40px;
  height: auto;
}
@media screen and (min-width: 768px) {
  .sns-box_image img {
    width: 75px;
  }
}

.sns-box_information {
  padding: 3px 0 0;
}

.sns-box_title {
  font-size: 13px;
  font-weight: bold;
  display: block;
}
.sns-box_text {
  font-size: 12px;
  font-weight: normal;
}
@media screen and (min-width: 768px) {
  .sns-box_title,
  .sns-box_text {
    font-size: 18px;
  }
}

.sns-box_link {
  margin: 10px 0 0;
  text-align: right;
}
.sns-box_link p {
  width: 91px;
  position: relative;
  right: 10px;
  display: inline-block;
  color: #212121;
  line-height: 1.334;
  font-size: 12px;
  font-weight: bold;
}
.sns-box_link p::before {
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  right: -30px;
  bottom: 0;
  display: inline-block;
  border: 0;
  border-right: solid 1px #212121;
  transform: translate(0, 0) rotate(-45deg);
}
.sns-box_link p::after {
  content: "";
  width: 24px;
  height: 20px;
  position: absolute;
  right: -33px;
  bottom: 5px;
  display: inline-block;
  border: 0;
  border-bottom: solid 1px #212121;
  transform: translate(0, 0);
}
.sns-box:hover .sns-box_link p {
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .sns-box_link p {
    right: -25px;
  }
}