@charset "UTF-8";
/* ------------------------------
	レスポンシブ
------------------------------ */
/* ------------------------------
	フォント
------------------------------ */
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Outfit:wght@100..900&display=swap");
/* ------------------------------
	カラー
------------------------------ */
/* ------------------------------
	.column
------------------------------ */
.column {
  padding: 20px 0 20px;
}
@media screen and (max-width: 768px) {
  .column {
    padding: 20px 0 50px;
  }
}
.column .lead {
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .column .lead {
    padding-bottom: 50px;
  }
}
.column .sec_ttl {
  text-align: center;
  font-weight: 500;
}
.column .keyword_box .sec_ttl {
  margin-top: 55px;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .column .keyword_box .sec_ttl {
    margin-top: 45px;
  }
}
.column .not_search_text {
  margin-bottom: 100px;
  text-align: center;
  font-size: 3rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .column .not_search_text {
    font-size: 2rem;
  }
}
.column .search_box {
  position: relative;
  height: 73px;
  background: #F8F8F8;
  border-radius: 50px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .column .search_box {
    height: 50px;
  }
}
.column .search_box .search_txt {
  width: 100%;
  height: 73px;
  padding: 0 110px 0 30px;
  background: #F8F8F8;
  border: 0;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .column .search_box .search_txt {
    height: 50px;
    padding: 0 80px 0 15px;
    font-size: 1.4rem;
  }
}
.column .search_box .search_txt::placeholder {
  color: #8D8D8D;
}
.column .search_box .search_btn {
  position: absolute;
  z-index: 2;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 106px;
  height: 100%;
  background: url(../img/column/ico_search.svg) no-repeat center center;
  background-size: 84px;
}
@media screen and (max-width: 768px) {
  .column .search_box .search_btn {
    width: 70px;
    background-size: 60px;
  }
}
.column .category_box {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .column .category_box {
    margin-top: 30px;
  }
}
.column .category_box .sec_ttl {
  margin-top: 70px;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .column .category_box .sec_ttl {
    margin-top: 45px;
  }
}
.column .category_box .category_links {
  display: flex;
  flex-wrap: wrap;
}
.column .category_box .category_links .category_link {
  position: relative;
  width: 25%;
  border-bottom: 1px solid #DEDEDE;
}
.column .category_box .category_links .category_link:nth-child(1), .column .category_box .category_links .category_link:nth-child(2) {
  border-top: 1px solid #DEDEDE;
}
@media screen and (min-width: 769px) {
  .column .category_box .category_links .category_link:nth-child(3), .column .category_box .category_links .category_link:nth-child(4) {
    border-top: 1px solid #DEDEDE;
  }
  .column .category_box .category_links .category_link:nth-child(4n-1)::before, .column .category_box .category_links .category_link:nth-child(4n-2)::before, .column .category_box .category_links .category_link:nth-child(4n-3)::before {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    content: "";
    display: block;
    width: 1px;
    height: calc(100% - 20px);
    background: #DEDEDE;
  }
}
@media screen and (max-width: 768px) {
  .column .category_box .category_links .category_link {
    width: 50%;
  }
  .column .category_box .category_links .category_link:nth-child(odd)::before {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    content: "";
    display: block;
    width: 1px;
    height: calc(100% - 20px);
    background: #DEDEDE;
  }
}
.column .category_box .category_links .category_link a {
  display: flex;
  align-items: center;
  height: 100%;
  min-height: 60px;
  padding: 5px 60px 5px 20px;
  background: url(../img/common/ico_arw07.svg) no-repeat;
  background-position: calc(100% - 20px) center;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .column .category_box .category_links .category_link a {
    min-height: 50px;
    padding: 5px 30px 5px 15px;
    background-position: calc(100% - 15px) center;
    font-size: 1.3rem;
  }
}
.column .category_box .category_list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 17px;
}
@media screen and (max-width: 768px) {
  .column .category_box .category_list {
    gap: 5px 5px;
  }
}
.column .category_box .category_list .category_list_item.current a {
  background: #4A5771;
  color: #fff;
}
.column .category_box .category_list .category_list_item a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 5px 14px;
  border: 1px solid #707070;
  line-height: 1.3;
  font-size: 1.3rem;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media screen and (max-width: 768px) {
  .column .category_box .category_list .category_list_item a {
    min-height: 25px;
    padding: 5px 8px;
    font-size: 1.1rem;
  }
}
@media screen and (min-width: 769px) {
  .column .category_box .category_list .category_list_item a:hover {
    opacity: 1;
    background: #4A5771;
    color: #fff;
  }
}
.column .column_wrap {
  position: relative;
  padding: 70px 0 90px;
  overflow: hidden;
  background: #F8F8F8;
  border-radius: 200px 0 200px 0;
}
@media screen and (max-width: 1400px) {
  .column .column_wrap {
    border-radius: 0;
  }
}
@media screen and (max-width: 768px) {
  .column .column_wrap {
    padding: 50px 0;
    border-radius: 100px 0 100px 0;
  }
}
.column .column_wrap + .column_wrap {
  margin-top: 90px;
}
.column .column_wrap:nth-child(even) {
  background: #F5F7FD;
}
.column .column_wrap .sec_ttl {
  margin-bottom: 30px;
}
.column .column_wrap .column_list {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  gap: 30px 45px;
}
.column .column_wrap .column_list .column_item {
  position: relative;
  width: calc((100% - 90px) / 3);
}
@media screen and (max-width: 768px) {
  .column .column_wrap .column_list .column_item {
    width: 100%;
    gap: 20px 0;
  }
}
.column .column_wrap .column_list .column_item .rank_ico {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 63px;
  height: 63px;
  border-radius: 50%;
  background: #00BDB7;
  color: #fff;
  font-weight: bold;
  font-size: 3rem;
  font-weight: 500;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .column .column_wrap .column_list .column_item .rank_ico {
    width: 45px;
    height: 45px;
    font-size: 2.4rem;
  }
}
.column .column_wrap .column_list .column_item a {
  display: block;
  width: 100%;
  padding: 20px 20px 30px;
  border-radius: 30px;
  background: #fff;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .column .column_wrap .column_list .column_item a:hover {
    opacity: 1;
  }
  .column .column_wrap .column_list .column_item a:hover .img img {
    transform: scale(1.1);
  }
}
@media screen and (max-width: 768px) {
  .column .column_wrap .column_list .column_item a {
    width: 92vw;
  }
}
.column .column_wrap .column_list .column_item .img_box {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.column .column_wrap .column_list .column_item .img {
  width: 100%;
  padding-top: 66.6666%;
}
.column .column_wrap .column_list .column_item .img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: transform 0.4s ease;
  transition: transform 0.4s ease;
}
.column .column_wrap .column_list .column_item .txt_box {
  padding: 25px 0 0;
}
@media screen and (max-width: 768px) {
  .column .column_wrap .column_list .column_item .txt_box {
    padding: 15px 0 0;
  }
}
.column .column_wrap .column_list .column_item .txt_box .date_box {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 25px;
}
.column .column_wrap .column_list .column_item .txt_box .date {
  font-size: 1.4rem;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .column .column_wrap .column_list .column_item .txt_box .date {
    font-size: 1.2rem;
  }
}
.column .column_wrap .column_list .column_item .txt_box .date.ico01 {
  padding-left: 16px;
  background: url(../img/column/date_ico01.svg) no-repeat left top;
}
@media screen and (max-width: 768px) {
  .column .column_wrap .column_list .column_item .txt_box .date.ico01 {
    padding-left: 14px;
    background-size: 10px;
  }
}
.column .column_wrap .column_list .column_item .txt_box .date.ico02 {
  padding-left: 18px;
  background: url(../img/column/date_ico02.svg) no-repeat left 1px;
}
@media screen and (max-width: 768px) {
  .column .column_wrap .column_list .column_item .txt_box .date.ico02 {
    padding-left: 16px;
    background-size: 12px;
  }
}
.column .column_wrap .column_list .column_item .txt_box .ttl {
  margin-top: 17px;
  min-height: 4.5em;
  line-height: 1.5;
  font-weight: 600;
  font-size: 1.7rem;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 768px) {
  .column .column_wrap .column_list .column_item .txt_box .ttl {
    margin-top: 10px;
    font-size: 1.5rem;
  }
}
.column .column_wrap .column_list .column_item .btm_box {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #707070;
}
@media screen and (max-width: 768px) {
  .column .column_wrap .column_list .column_item .btm_box {
    margin-top: 10px;
    padding-top: 10px;
  }
}
.column .column_wrap .column_list .column_item .cate_ttl {
  margin-bottom: 5px;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .column .column_wrap .column_list .column_item .cate_ttl {
    font-size: 1rem;
  }
}
.column .column_wrap .column_list .column_item .cate_txt {
  line-height: 1.3;
  font-size: 1.4rem;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .column .column_wrap .column_list .column_item .cate_txt {
    font-size: 1.2rem;
  }
}
.column .column_wrap .column_list_sp {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  gap: 15px 45px;
}
.column .column_wrap .column_list_sp .column_item_sp {
  position: relative;
  width: calc((100% - 90px) / 3);
}
@media screen and (max-width: 768px) {
  .column .column_wrap .column_list_sp .column_item_sp {
    width: 100%;
  }
}
.column .column_wrap .column_list_sp .column_item_sp a {
  display: flex;
  align-items: flex-start;
  gap: 0 10px;
  width: 100%;
  padding: 10px;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .column .column_wrap .column_list_sp .column_item_sp a:hover {
    opacity: 1;
  }
  .column .column_wrap .column_list_sp .column_item_sp a:hover .img img {
    transform: scale(1.1);
  }
}
@media screen and (max-width: 768px) {
  .column .column_wrap .column_list_sp .column_item_sp a {
    width: 92vw;
  }
}
.column .column_wrap .column_list_sp .column_item_sp .rank_ico {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 63px;
  height: 63px;
  border-radius: 50%;
  background: #00BDB7;
  color: #fff;
  font-weight: bold;
  font-size: 3rem;
  font-weight: 500;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .column .column_wrap .column_list_sp .column_item_sp .rank_ico {
    width: 30px;
    height: 30px;
    font-size: 1.6rem;
  }
}
.column .column_wrap .column_list_sp .column_item_sp .img {
  position: relative;
  overflow: hidden;
  width: 34%;
  aspect-ratio: 110/73.33;
}
.column .column_wrap .column_list_sp .column_item_sp .img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: transform 0.4s ease;
  transition: transform 0.4s ease;
}
.column .column_wrap .column_list_sp .column_item_sp .txt_box {
  flex: 1;
}
.column .column_wrap .column_list_sp .column_item_sp .txt_box .date_box {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 25px;
}
.column .column_wrap .column_list_sp .column_item_sp .txt_box .date {
  font-size: 1.4rem;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .column .column_wrap .column_list_sp .column_item_sp .txt_box .date {
    font-size: 1.2rem;
  }
}
.column .column_wrap .column_list_sp .column_item_sp .txt_box .date.ico01 {
  padding-left: 16px;
  background: url(../img/column/date_ico01.svg) no-repeat left top;
}
@media screen and (max-width: 768px) {
  .column .column_wrap .column_list_sp .column_item_sp .txt_box .date.ico01 {
    padding-left: 14px;
    background-size: 10px;
  }
}
.column .column_wrap .column_list_sp .column_item_sp .txt_box .date.ico02 {
  padding-left: 18px;
  background: url(../img/column/date_ico02.svg) no-repeat left 1px;
}
@media screen and (max-width: 768px) {
  .column .column_wrap .column_list_sp .column_item_sp .txt_box .date.ico02 {
    padding-left: 16px;
    background-size: 12px;
  }
}
.column .column_wrap .column_list_sp .column_item_sp .txt_box .cate {
  margin-top: 6px;
  display: flex;
  flex-wrap: wrap;
  gap: 0 11px;
}
.column .column_wrap .column_list_sp .column_item_sp .txt_box .cate_txt {
  flex-shrink: 0;
  font-size: 1.1rem;
  line-height: 1.36;
}
.column .column_wrap .column_list_sp .column_item_sp .txt_box .ttl {
  margin-top: 2px;
  font-size: 1.5rem;
  line-height: 1.333;
  font-weight: 500;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.column .column_wrap .pager {
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .column .column_wrap .pager {
    margin-top: 50px;
  }
}
.column .column_wrap .btn {
  margin-top: 40px;
}
.column .column_wrap .column_slide {
  position: relative;
  display: none;
}
.column .column_wrap .column_slide.slick-initialized {
  display: block;
}
.column .column_wrap .column_slide + .column_slide {
  margin-top: 30px;
}
.column .column_wrap .column_slide:last-of-type {
  padding-bottom: 157px;
}
@media screen and (max-width: 768px) {
  .column .column_wrap .column_slide:last-of-type {
    padding-bottom: 90px;
  }
}
.column .column_wrap .column_slide:not(:last-of-type) .slick-dots {
  display: none !important;
}
.column .column_wrap .column_slide:not(:last-of-type) .slick-arrow {
  display: none !important;
}
.column .column_wrap .column_slide .column_list, .column .column_wrap .column_slide .column_list_sp {
  width: 1200px;
}
@media screen and (max-width: 768px) {
  .column .column_wrap .column_slide .column_list, .column .column_wrap .column_slide .column_list_sp {
    width: 92vw;
  }
}
.column .column_wrap .column_slide .slick-dots {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.column .column_wrap .column_slide .slick-dots li + li {
  margin-left: 12px;
}
@media screen and (max-width: 768px) {
  .column .column_wrap .column_slide .slick-dots li + li {
    margin-left: 6px;
  }
}
.column .column_wrap .column_slide .slick-dots li button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 57px;
  height: 57px;
  border-radius: 50%;
  border: 1px solid #4A5771;
  background: #fff;
  color: #4A5771;
  -webkit-transition: background 0.4s ease, color 0.4s ease;
  transition: background 0.4s ease, color 0.4s ease;
}
@media screen and (min-width: 769px) {
  .column .column_wrap .column_slide .slick-dots li button:hover {
    opacity: 1;
    background: #4A5771;
    color: #fff;
  }
}
@media screen and (max-width: 768px) {
  .column .column_wrap .column_slide .slick-dots li button {
    width: 40px;
    height: 40px;
  }
}
.column .column_wrap .column_slide .slick-dots li.slick-active button {
  background: #4A5771;
  color: #fff;
}
.column .column_wrap .column_slide .slick-arrow {
  position: absolute;
  z-index: 2;
  bottom: 0;
  display: block;
  width: 40px;
  height: 56px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .column .column_wrap .column_slide .slick-arrow {
    height: 40px;
  }
}
.column .column_wrap .column_slide .slick-arrow.slick-disabled {
  display: none !important;
}
.column .column_wrap .column_slide .slick-arrow.prev_arrow {
  left: calc(50% - 187px);
  background: url(../img/common/pager_arw01.svg) no-repeat center center;
}
@media screen and (max-width: 768px) {
  .column .column_wrap .column_slide .slick-arrow.prev_arrow {
    left: calc(50% - 139px);
  }
}
.column .column_wrap .column_slide .slick-arrow.next_arrow {
  right: calc(50% - 187px);
  background: url(../img/common/pager_arw02.svg) no-repeat center center;
}
@media screen and (max-width: 768px) {
  .column .column_wrap .column_slide .slick-arrow.next_arrow {
    right: calc(50% - 139px);
  }
}

/* ------------------------------
	.column_details
------------------------------ */
.column_details {
  padding-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .column_details {
    padding-bottom: 50px;
  }
}
.column_details .wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .column_details .wrap {
    display: block;
  }
}
.column_details .details_content {
  width: 830px;
}
@media screen and (max-width: 768px) {
  .column_details .details_content {
    width: 100%;
  }
}
.column_details .news_head {
  padding: 90px 0 75px;
}
@media screen and (max-width: 768px) {
  .column_details .news_head {
    padding: 50px 0;
  }
}
.column_details .news_head .date_wrap {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .column_details .news_head .date_wrap {
    display: block;
  }
}
.column_details .news_head .date_box {
  flex-shrink: 0;
  display: flex;
  justify-content: flex-end;
  gap: 5px 25px;
}
@media screen and (max-width: 768px) {
  .column_details .news_head .date_box {
    margin-top: 10px;
  }
}
.column_details .news_head .date_box .date {
  font-size: 1.4rem;
  font-weight: 300;
  color: #595757;
}
@media screen and (max-width: 768px) {
  .column_details .news_head .date_box .date {
    font-size: 1.2rem;
  }
}
.column_details .news_head .date_box .date.ico01 {
  padding-left: 16px;
  background: url(../img/column/date_ico01.svg) no-repeat left top;
}
@media screen and (max-width: 768px) {
  .column_details .news_head .date_box .date.ico01 {
    padding-left: 14px;
    background-size: 10px;
  }
}
.column_details .news_head .date_box .date.ico02 {
  padding-left: 18px;
  background: url(../img/column/date_ico02.svg) no-repeat left 1px;
}
@media screen and (max-width: 768px) {
  .column_details .news_head .date_box .date.ico02 {
    padding-left: 16px;
    background-size: 12px;
  }
}
.column_details .news_head .cate_box {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 10px;
}
.column_details .news_head .cate_box .cate {
  font-size: 1.4rem;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .column_details .news_head .cate_box .cate {
    font-size: 1.2rem;
  }
}
.column_details .news_head .news_ttl {
  padding-bottom: 15px;
  margin-bottom: 20px;
  border-bottom: 1px solid #707070;
  font-size: 2.6rem;
  font-weight: 500;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .column_details .news_head .news_ttl {
    font-size: 2rem;
  }
}
.column_details .news_head .main_img {
  width: 100%;
  text-align: center;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .column_details .news_head .main_img {
    margin-top: 30px;
  }
}
.column_details .news_head .main_img img {
  width: 100%;
}
.column_details .details_btm {
  margin-top: 80px;
  padding-top: 60px;
  border-top: 1px solid #707070;
}
@media screen and (max-width: 768px) {
  .column_details .details_btm {
    margin-top: 50px;
    padding-top: 40px;
  }
}
.column_details .details_btm .yarpp-related {
  margin: 0 !important;
}
.column_details .details_btm .yarpp {
  padding: 25px 25px 20px;
  background: #F8F8F8;
}
@media screen and (max-width: 768px) {
  .column_details .details_btm .yarpp {
    padding: 20px 12px;
  }
}
.column_details .details_btm .yarpp h3 {
  padding-bottom: 8px;
  margin-bottom: 25px;
  color: #1C2D4D;
  border-bottom: 1px solid #1C2D4D;
}
@media screen and (max-width: 768px) {
  .column_details .details_btm .yarpp h3 {
    padding-bottom: 8px;
    margin-bottom: 20px;
  }
}
.column_details .details_btm .yarpp .yarpp-thumbnails-horizontal {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}
@media screen and (max-width: 768px) {
  .column_details .details_btm .yarpp .yarpp-thumbnails-horizontal {
    gap: 20px;
  }
}
.column_details .details_btm .yarpp .yarpp-thumbnail {
  width: calc((100% - 75px) / 4);
  height: auto;
  margin: 0;
  padding: 0;
  border: 0;
}
@media screen and (max-width: 768px) {
  .column_details .details_btm .yarpp .yarpp-thumbnail {
    width: calc((100% - 20px) / 2);
  }
}
.column_details .details_btm .yarpp .photo {
  position: relative;
  display: block;
  width: 100%;
  height: 130px;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .column_details .details_btm .yarpp .photo {
    height: 25vw;
  }
}
.column_details .details_btm .yarpp .photo img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.column_details .details_btm .yarpp .attachment-yarpp-thumbnail {
  width: 100%;
  height: 130px;
  object-fit: cover;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .column_details .details_btm .yarpp .attachment-yarpp-thumbnail {
    height: 25vw;
  }
}
.column_details .details_btm .yarpp .thumWrap {
  margin-top: 8px;
}
.column_details .details_btm .yarpp .yarpp-thumbnail-date {
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.5em;
  width: 100%;
  font-size: 1.4rem;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .column_details .details_btm .yarpp .yarpp-thumbnail-date {
    font-size: 1.2rem;
  }
}
.column_details .details_btm .yarpp .yarpp-thumbnail-title {
  display: block;
  width: 100%;
  margin: 5px 0 0 0;
  padding: 0;
  font-size: 1.4rem;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 768px) {
  .column_details .details_btm .yarpp .yarpp-thumbnail-title {
    font-size: 1.2rem;
  }
}
.column_details .details_btm > * + * {
  margin-top: 30px !important;
}
.column_details .details_btm .details_btm_posted {
  padding: 20px 20px 8px;
  border: 1px solid #eee;
}
@media screen and (min-width: 769px) {
  .column_details .details_btm .details_btm_posted {
    min-height: 140px;
  }
}
@media screen and (max-width: 768px) {
  .column_details .details_btm .details_btm_posted {
    padding: 20px 10px 8px;
  }
}
.column_details .details_btm .details_btm_posted .flex {
  display: block;
}
@media screen and (max-width: 768px) {
  .column_details .details_btm .details_btm_posted .flex {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.column_details .details_btm .details_btm_posted .details_btm_posted_head_image {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  margin-right: 20px;
  margin-bottom: 20px;
}
@media screen and (min-width: 769px) {
  .column_details .details_btm .details_btm_posted .details_btm_posted_head_image {
    float: left;
  }
}
@media screen and (max-width: 768px) {
  .column_details .details_btm .details_btm_posted .details_btm_posted_head_image {
    width: 150px;
    height: 150px;
    margin-right: 0;
    margin-bottom: 15px;
  }
}
.column_details .details_btm .details_btm_posted .details_btm_posted_head_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.column_details .details_btm .details_btm_posted .details_btm_posted_head_textarea {
  width: 100%;
}
.column_details .details_btm .details_btm_posted .details_btm_posted_head_name {
  font-size: 1.8rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .column_details .details_btm .details_btm_posted .details_btm_posted_head_name {
    margin-bottom: 5px;
    text-align: center;
  }
}
.column_details .details_btm .details_btm_posted .details_btm_posted_head_name a {
  color: #416AB6;
}
.column_details .details_btm .details_btm_posted .details_btm_posted_head_position {
  font-weight: bold;
}
.column_details .details_btm .details_btm_posted .details_btm_posted_head_position,
.column_details .details_btm .details_btm_posted .details_btm_posted_description {
  margin: 5px 0 12px;
  font-size: 1.4rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .column_details .details_btm .details_btm_posted .details_btm_posted_head_position,
  .column_details .details_btm .details_btm_posted .details_btm_posted_description {
    text-align: center;
  }
}
.column_details .details_btm .details_btm_posted .details_btm_posted_head_position a,
.column_details .details_btm .details_btm_posted .details_btm_posted_description a {
  color: #416AB6;
}
@media screen and (min-width: 769px) {
  .column_details .details_btm .details_btm_posted .details_btm_posted_head_position a,
  .column_details .details_btm .details_btm_posted .details_btm_posted_description a {
    text-decoration: underline;
  }
  .column_details .details_btm .details_btm_posted .details_btm_posted_head_position a:hover,
  .column_details .details_btm .details_btm_posted .details_btm_posted_description a:hover {
    text-decoration: none;
  }
}
@media screen and (max-width: 768px) {
  .column_details .details_btm .details_btm_posted .details_btm_posted_description {
    text-align: left;
  }
}
.column_details .btn_box {
  display: flex;
  justify-content: space-between;
  margin-top: 90px;
}
@media screen and (max-width: 768px) {
  .column_details .btn_box {
    margin-top: 50px;
  }
}
.column_details .btn_box .btn.next {
  margin-left: auto;
}
.column_details .btn_box .btn a {
  width: 180px;
  height: 40px;
  font-size: 1.6rem;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .column_details .btn_box .btn a {
    width: 130px;
    height: 40px;
    font-size: 1.4rem;
  }
}
.column_details .tag_list {
  display: flex;
  flex-wrap: wrap;
  gap: 11px 13px;
}
@media screen and (max-width: 768px) {
  .column_details .tag_list {
    gap: 5px 5px;
  }
}
.column_details .tag_list .tag_btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px 10px;
  border-radius: 30px;
  font-size: 1.3rem;
  line-height: 1.3;
  background: #F8F8F8;
  border: 1px solid #EEEEEE;
}
@media screen and (max-width: 768px) {
  .column_details .tag_list .tag_btn a {
    padding: 2px 8px;
    font-size: 1.1rem;
  }
}
.column_details .tag_list .tag_btn a::before {
  content: "#";
  color: #00BDB7;
}
.column_details .column_details_side {
  position: sticky;
  top: 160px;
  width: 290px;
  padding-top: 40px;
}
@media screen and (max-width: 768px) {
  .column_details .column_details_side {
    display: none;
  }
}
.column_details .column_details_side .side_box + .side_box {
  margin-top: 55px;
}
.column_details .column_details_side .side_ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 45px;
  background: #4A5771;
  color: #fff;
  text-align: center;
  line-height: 1.3;
}
.column_details .column_details_side .side_category .side_category_item {
  border-bottom: 1px solid #707070;
}
.column_details .column_details_side .side_category .side_category_item a {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 45px;
  padding: 10px 0 10px 20px;
  background: url(../img/common/ico_arw06.svg) no-repeat;
  background-position: 5px center;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.3;
}
.column_details .column_details_side .tag_list {
  margin-top: 20px;
}

.content {
  overflow: visible;
}

/* ------------------------------
	.simpleblogcard
------------------------------ */
.simpleblogcard_wrap {
  border: none !important;
  background: #fff;
  color: #333;
}
@media screen and (max-width: 768px) {
  .simpleblogcard_wrap {
    margin-left: 15px;
    margin-right: 15px;
  }
}
.simpleblogcard_wrap a {
  position: relative;
  display: flex;
  align-items: center;
  padding: 18px 60px 18px 18px;
  border: 1px solid #1C2D4D !important;
  border-radius: 5px !important;
  background: url(../img/common/ico_arw06.svg) no-repeat;
  background-size: 8px;
  background-position: calc(100% - 25px) center;
}
@media screen and (max-width: 768px) {
  .simpleblogcard_wrap a {
    padding: 18px 25px 10px 10px;
    background-position: calc(100% - 8px) center;
  }
}
.simpleblogcard_wrap a:after {
  position: absolute;
  top: -12px;
  left: 2em;
  bottom: auto !important;
  right: auto !important;
  content: "あわせて読みたい" !important;
  display: block;
  padding: 0;
  font-size: 1.4rem !important;
  color: #1C2D4D !important;
}
@media screen and (max-width: 768px) {
  .simpleblogcard_wrap a:after {
    top: -11px;
    font-size: 1.2rem !important;
  }
}
.simpleblogcard_wrap a::before {
  position: absolute;
  top: -2px;
  left: 1.5em;
  content: "";
  display: block;
  width: 9.5em;
  height: 4px;
  background: #fff;
  font-size: 1.4rem !important;
}
@media screen and (max-width: 768px) {
  .simpleblogcard_wrap a::before {
    font-size: 1.2rem !important;
  }
}
.simpleblogcard_wrap a *[class^=simpleblogcard_img_block] {
  padding: 0 !important;
  float: none !important;
  flex-shrink: 0;
  width: 140px !important;
}
@media screen and (max-width: 768px) {
  .simpleblogcard_wrap a *[class^=simpleblogcard_img_block] {
    width: 80px !important;
  }
}
.simpleblogcard_wrap a *[class^=simpleblogcard_img_block] img {
  display: block;
  margin: 0;
  width: 100% !important;
  height: auto !important;
  border-radius: 0 !important;
}
.simpleblogcard_wrap .simpleblogcard_inner {
  width: 100% !important;
  padding: 0 0 0 24px !important;
}
@media screen and (max-width: 768px) {
  .simpleblogcard_wrap .simpleblogcard_inner {
    padding: 0 0 0 10px !important;
  }
}
.simpleblogcard_wrap *[class^=simpleblogcard_border] {
  padding: 0 !important;
  font-size: 0;
  line-height: 0;
  border: 0 !important;
}
.simpleblogcard_wrap *[class^=simpleblogcard_title] {
  font-size: 14px !important;
  font-weight: 500 !important;
  line-height: 1.6 !important;
  text-decoration: none;
  overflow: hidden !important;
  display: -webkit-box !important;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  font-size: 1.6rem !important;
}
@media screen and (max-width: 768px) {
  .simpleblogcard_wrap *[class^=simpleblogcard_title] {
    -webkit-line-clamp: 3;
    font-size: 1.4rem !important;
  }
}
.simpleblogcard_wrap img {
  border: none !important;
  box-shadow: none !important;
}
.simpleblogcard_wrap *[class^=simpleblogcard_description] {
  display: none !important;
}
