@charset "UTF-8";

.sec-works {
  padding-top: calc(130 / 1920 * 100vw);
  padding-bottom: 00px;
  background-color: #ffffff;
  position: relative;
}

@media screen and (max-width: 767px) {
  .sec-works  {
    padding: 60px 0;
  }
}

.connectMainvImg--works {
  width: 402px;
  right: 43.41px;
}
@media screen and (max-width: 767px) {
  .connectMainvImg--works {
    width: 200px;
    right: 10px;
  }
}







/* ========================================
   コラム一覧レイアウト
   ======================================== */

/* 検索機能 */

.filterArea{
  position: relative;
}

.filterAreaInner{
  position: relative;
  background-color: #f8f8f8;
  max-width: 1600px;
  margin: 0 auto;
    padding: 0 0.1vw;
}


/* コラムリストコンテナ */
.worksList {
  display: flex;
  flex-wrap: wrap;
  gap: 55px 30px;
  margin-bottom: 40px;
}

@media screen and (max-width: 1024px) {
  .worksList {
    gap: 40px;
  }
}

@media screen and (max-width: 767px) {
  .worksList {
    gap: 40px;
  }
}


/* コラムアイテム */
.worksItem {
  flex: 0 0 calc(50% - 15px);
  /* overflow: hidden; */
  /* transition: transform 0.3s ease; */
}

@media screen and (max-width: 1024px) {
  .worksItem {
    /* flex: 0 0 calc(50% - 10px); */
    flex: 0 0 100%;
  }
}

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

.worksItem .worksItemLink {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.worksItem .worksItemLink:hover .worksItemImg img{
  transform: scale(1.05);
}

.worksItem .worksItemImg {
  overflow: hidden;
  margin-bottom: 24px;
  border-radius: 20px;
}

.worksItem .worksItemImg img {
  width: 100%;
  height: auto;
  aspect-ratio: 38/24;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  display: block;
  transition: transform 0.3s ease;
}




.worksItem .postInfo-box {
  margin-top: 12px;
}

@media screen and (max-width: 1024px) {
  .worksItem .postInfo-box {
  }
}

@media screen and (max-width: 767px) {
  .worksItem .postInfo-box {
  }
}


/* コラムアイテム内の投稿情報 */
.worksItem .postInfo {
  margin-bottom: 15px;
}

.worksItem .time {
  font-size: 12px;
  color: #00244b;
}

.worksItem .category_box {
  margin-bottom: 10px;
}

.worksItem .category_box {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.worksItem .category {
  font-size: 14px;
  font-weight: bold;
  padding: 4px 20px;
  background: #D7EDFA;
  border-radius: 50px;
  display: inline-block;

}

@media screen and (max-width: 1024px) {
  .worksItem .category {
    font-size: 12px;
  }
}

/* コラムアイテム内のタイトル */
.worksItem .worksItemTtl {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.7;
  letter-spacing: 0.05em;
  color: #00244b;
  margin: 0;
  margin-bottom: 24px;
  /* テキスト省略表示の設定 */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; /* 2行で省略 */
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: calc(1.7em * 2); /* 2行分の高さを制限 */
}


@media screen and (max-width: 1024px) {
  .worksItem .worksItemTtl {
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  .worksItem .worksItemTtl {
    font-size: 16px;
  }
}

.worksItem .info-box-bottom{
  position: relative;
  display: flex;
justify-content: space-between;
align-items: center;
  /* flex-wrap: wrap; */
  gap: 12px;
}

.worksItem .info-box-bottom-left{
  display: flex;
  flex-wrap: wrap;
  gap: 2px 12px;
  align-items: center;
}

.info-box-bottom-right{
  position: relative;
}

.worksItem .time{
  font-size: 14px;
  color: #00244b;
  letter-spacing: 0.05em;
  line-height: 1.7;
  font-family: "Outfit", sans-serif;
  flex-shrink: 0;
}

.worksItem .tag_box{
  display: flex;
  flex-wrap: wrap;
  gap: 2px 10px;
}

.worksItem .tag{
  font-size: 14px;
  color: #006FAB;
  letter-spacing: 0.05em;
  line-height: 1.7;
  font-family: "Outfit", sans-serif;
}



.worksItem .linkbtn-arrow {
  z-index: 2;
  width: 36px;
  height: 36px;
  /* background: linear-gradient(90deg, #006FAB 0%, #004695 100%); */
  border-radius: 50%;
}

@media screen and (max-width: 767px){
  .worksItem .linkbtn-arrow {
  }
}

.linkbtn-arrow::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 13px;
  height: 12px;
  background-image: url(../img/connect-common/icon-arrow-wh.svg);
  background-repeat: no-repeat;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}
@media screen and (max-width: 1199px) {
  .linkbtn-arrow::before {
  }
}
@media screen and (max-width: 767px) {
  .linkbtn-arrow::before {
    width: 12px;
    height: 10px;
  }
}

.linkbtn-arrow::after {
  content: "";
  position: absolute;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #006FAB;
  background: linear-gradient(90deg, #006FAB 0%, #004695 100%);
  transition-duration: 0.3s;
   top: 50%;
  right: 0;
  transform: translate(0, -50%);
  z-index: 2;
}
@media screen and (max-width: 1199px) {
  .linkbtn-arrow::after {
  }
}

.productItem:hover{

}

.worksItem:hover .worksItemImg {
  /* filter: brightness(0.7); */
  /* border:4px solid #006FAB; */
  /* border-bottom: none;   */
}
.worksItem:hover .worksItemImg img {
  transform: scale(1.03);  
}
.worksItem:hover .linkbtn-arrow::before {
  background-image: url(../img/connect-common/productItem-arrow-wh.svg);
  background-repeat: no-repeat;
  transition-duration: 0.3s;
}
.worksItem:hover .linkbtn-arrow::after  {
  transform: translate(0, -50%) rotate(135deg);
  opacity: 0.9;
  transition-duration: 0.3s;
}




/* コラム人気記事 */
.works-pickuip{
  position: relative;
}
.works-pickuip-inner{
  position: relative;
}

.works-pickuip-ttl {
  font-size: 24px;
  line-height: 1.5;
  font-weight: bold;
  position: relative;
  margin-bottom: 40px;
  padding-left: 24px;
  position: relative;
  letter-spacing: 0.05em;
  color: #00244B;
}

@media screen and (max-width: 1024px) {
  .works-pickuip-ttl {
    font-size: 20px;
    margin-bottom: 30px;
    padding-left: 18px;
  }
}

.works-pickuip-ttl::after {
  content: "";
  display: inline-block;
  position: absolute;
  top:-8px;
  left: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #006fab;
  background: -webkit-gradient(linear, left top, right top, color-stop(-100%, #006fab), to(rgba(0, 111, 171, 0)));
  background: -webkit-linear-gradient(left, #006fab -100%, rgba(0, 111, 171, 0) 100%);
  background: linear-gradient(90deg, #006fab -100%, rgba(0, 111, 171, 0) 100%);
}

@media screen and (max-width: 1024px) {
  .works-pickuip-ttl::after {
    top: -5px;
    width: 32px;
    height: 32px;
  }
}

.works-pickuipItem .postInfo-box{
display: flex;
justify-content: space-between;
flex-wrap: wrap;
margin-bottom: 8px;
}

.works-pickuipItem .worksItemImg {
  overflow: hidden;
  border-radius: 6px;
  width: 31.25%;
}

.works-pickuipItem .worksItemImg img {
  width: 100%;
  height: auto;
  aspect-ratio: 10/6;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
  display: block;
  transition: transform 0.3s ease;
}

.works-pickuipItem .postInfo-textbox{
width: 65%;
}



/* コラムアイテム内の投稿情報 */
.works-pickuipItem .postInfo {
  margin-bottom: 15px;

}

.works-pickuipItem .time {
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  color: #00244b;
  letter-spacing: 0.05em;
  line-height: 1.7;
  flex-shrink: 0;
}


.works-pickuipItem .category_box {
 
}

.works-pickuipItem .category_box {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.works-pickuipItem .category_container{
margin-bottom: 8px;
}

.works-pickuipItem .category {
  font-size: 12px;
  line-height: 1.5;
  font-weight: bold;
  padding: 5px 20px;
  background: #D7EDFA;
  border-radius: 50px;
  display: inline-block;
}

@media screen and (max-width: 1024px) {
  .works-pickuipItem .category {
    font-size: 12px;
  }
}

/* コラムアイテム内のタイトル */
.works-pickuipItem .worksItemTtl {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.7;
  letter-spacing: 0.05em;
  color: #00244b;
  margin: 0;
  /* テキスト省略表示の設定 */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; /* 2行で省略 */
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: calc(1.7em * 2); /* 2行分の高さを制限 */
}


@media screen and (max-width: 1024px) {
  .works-pickuipItem .worksItemTtl {
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  .works-pickuipItem .worksItemTtl {
    font-size: 16px;
  }
}

.works-pickuipItem .info-box-bottom{
  position: relative;
  display: flex;
justify-content: space-between;
align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.works-pickuipItem .info-box-bottom-left{
  display: flex;
  /* flex-wrap: wrap; */
  gap: 12px;
}

.info-box-bottom-right{
  position: relative;
}



.works-pickuipItem .tag_box{
  display: flex;
  flex-wrap: wrap;
  gap: 2px 10px;
}

.works-pickuipItem .tag{
  font-size: 12px;
  color: #006FAB;
  letter-spacing: 0.05em;
  line-height: 1.7;
  font-family: "Outfit", sans-serif;
}


.works-pickuipItem .worksItemLink {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(0, 36, 75, 0.20);
}

.works-pickuipItem .worksItemLink:hover .worksItemImg img{
  transform: scale(1.05);
}








/* 詳細ページ */
.c-pageMainv--works-detail{
background: none;
height: unset;
}


.c-pageMainvInner--works-detail {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;  
  -webkit-flex-direction: works;
      -ms-flex-direction: works;
          flex-direction: works;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-top: 27px;
  padding-bottom: 0;
  height: unset;
  min-height: initial;
}

@media screen and (max-width: 1024px) {
  .c-pageMainvInner--works-detail {
    padding-top: 10px;
  }
}

.postDetailTtl {
  width: 100%;
}

@media screen and (max-width: 1024px) {
  .postDetailTtl {
    padding: 0;
  }
}

.contentAreaTtl {
  margin-top: 20px;
  font-size: 48px;
  font-weight: bold;
  line-height: calc(66 / 46);
}

@media screen and (max-width: 767px) {
  .contentAreaTtl {
    font-size: 24px;
    margin-top: 20px;
  }
}


.news-btn--back{
  
}
.news-btn--back-inner{
  display: inline-block;
  text-align: center;
  line-height: 1.5;
}

.news-btn--back::before{
  /* bottom: 23px; */
}

@media screen and (max-width: 767px) {
  .news-btn--back::before{
    /* bottom: 17px; */
  }
}


.news-btn--back::after{
  /* bottom: -5px; */

}

@media screen and (max-width: 767px) {
  .news-btn--back::after{
    /* bottom: 0px; */
  }
}


.postInfo {
  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;
  flex-wrap: wrap;
  gap: 16px;
}

@media screen and (max-width: 1024px) {
  .postInfo {
    gap: 10px;
  }
}

.postInfo .time {
  display: inline-block;
  color: #000;
  font-weight: 500;
  letter-spacing: 0.07em;
  flex-shrink: 0;
}

.postInfo .category_box {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

@media screen and (max-width: 1024px) {
  .postInfo .category_box {
    gap: 10px;
  }
}

.postInfo .category {
  position: relative;
  color: #00244B;
  border: 1px solid #00244B;
  border-radius: 16px;
  text-align: center;
  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;
  /* margin-left: 16px; */
  font-size: 14px;
  line-height: 1.7;
  font-weight: bold;
  padding: 4px 20px;
}

@media screen and (max-width: 767px) {
  .postInfo .category {
    line-height: 25px;
    padding: 0px 10px;
    font-size: 12px;
  }
}


.postInfo .tag_box {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media screen and (max-width: 767px) {
  .postInfo .tag_box {
    gap: 10px;
  }
}

.postInfo .tag {
  position: relative;
  color: #006FAB;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1.7;
  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;
}

@media screen and (max-width: 767px) {
  .postInfo .tag {
    font-size: 13px;
  }
}


.newsTtl {
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
  line-height: 1.7;
  margin-top: 16px;
  color: #00244B;
  /* text-decoration: underline; */
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  font-size: 16px;
}

@media screen and (max-width: 1024px) {
  .newsTtl {
    margin-top: 10px;
  }
}


/* ========================================
   コラム一覧レイアウト
   ======================================== */

/* 検索機能 */

.searchArea{
  position: relative;
}

.searchAreaInner {
  position: relative;
  background-color: #f8f8f8;
  width: 83%;
  max-width: 1600px;
  margin: 5.2vw auto 0;
  padding: 2.5vw 10.44vw 1.5vw;
  border-radius: 20px;
}

@media screen and (max-width: 1024px) {
  .searchAreaInner {
    padding: 25px 25px;
    width: calc(100% - 50px);
  }
}

.searchItem {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

@media screen and (max-width: 1024px) {
  .searchItem {
    flex-direction: column;
    gap: 12px;
  }
}

.searchItem +  .searchItem{
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px dashed rgba(0, 36, 75, 0.20);
}

@media screen and (max-width: 1024px) {
  .searchItem +  .searchItem{
    padding-top: 25px;
  margin-top: 25px; 
  }
}


.searchItem-textbox{
  flex-shrink: 0;
  width: 200px;

}

.searchItemData{
  display: flex;
  flex-wrap: wrap;
  gap: 10px 6px;
}

@media screen and (max-width: 1024px) {
  .searchItemData {
    gap: 8px 6px;
  }
}

.searchItem-title{
  font-size: 24px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #00244b;
  margin-bottom: 4px;
  position: relative;
}

@media screen and (max-width: 1024px) {
  .searchItem-title {
    font-size: 16px;
    margin-bottom: 0;
  }
}

.searchItem-title--en{
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-size: 0.66em;
}

.searchItemData-label {
  padding:8px 18px;
  border-radius: 4px;
  border: 1px solid rgba(0, 36, 75, 0.12);
  background: #FFF;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

@media screen and (max-width: 1024px) {
  .searchItemData-label {
    padding: 6px 10px;
  }
}

.searchItemData-label input[type="checkbox"] {
  border: 1px solid rgba(0, 36, 75, 0.12);
  margin: 0 6px 0 0 ;
  width: 17px;
  height: 17px;
  cursor: pointer;
}

@media screen and (max-width: 1024px) {
  .searchItemData-label input[type="checkbox"] {
    width: 14px;
    height: 14px;
  }
}


.searchItemData-label span {
  font-size: 14px;
  transition: all 0.3s ease;
}

@media screen and (max-width: 1024px) {
  .searchItemData-label span {
    font-size: 12px;
  }
}


/* チェックされたときのチェックボックスのスタイル */
.searchItemData-label input[type="checkbox"]:checked {
  background: #006FAB;
  border: 1px solid #006FAB;
  accent-color: #006FAB;
}

/* チェックされたときのlabelの背景色（JavaScriptでクラスを追加する方法） */
.searchItemData-label.checked {
  background: #006FAB;
  color: #fff;
  transition: all 0.3s ease;
}

.searchItemData-label.checked:hover input{
  background: #006FAB;
  color: #fff;
  accent-color:#006FAB;
}

.searchBtnCover{
  margin-top: 50px;
  margin-bottom: 18px;
}

@media screen and (max-width: 1024px) {
  .searchBtnCover {
    margin-top: 25px;
  }
}

@media screen and (max-width: 767px) {
  .searchBtnCover {
    margin-top: 30px;
    margin-bottom: 5px;
  }
}


.searchBtn{
  margin-left: auto;
}



/* コラムリストコンテナ */
.columnList {
  display: flex;
  flex-wrap: wrap;
  gap: 55px 40px;
  margin-bottom: 40px;
}

@media screen and (max-width: 1024px) {
  .columnList {
    gap: 40px;
  }
}

@media screen and (max-width: 767px) {
  .columnList {
    gap: 40px;
  }
}


/* コラムアイテム */
.columnItem {
  flex: 0 0 calc(50% - 20px);
  /* overflow: hidden; */
  /* transition: transform 0.3s ease; */
}

@media screen and (max-width: 1024px) {
  .columnItem {
    /* flex: 0 0 calc(50% - 10px); */
    flex: 0 0 100%;
  }
}

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

.columnItem .columnItemLink {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.columnItem .columnItemLink:hover .columnItemImg img{
  transform: scale(1.05);
}

.columnItem .columnItemImg {
  overflow: hidden;
  margin-bottom: 24px;
  border-radius: 20px;
}

.columnItem .columnItemImg img {
  width: 100%;
  height: auto;
  aspect-ratio: 38/24;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  display: block;
  transition: transform 0.3s ease;
}




.columnItem .postInfo-box {
  margin-top: 12px;
}

@media screen and (max-width: 1024px) {
  .columnItem .postInfo-box {
  }
}

@media screen and (max-width: 767px) {
  .columnItem .postInfo-box {
  }
}


/* コラムアイテム内の投稿情報 */
.columnItem .postInfo {
  margin-bottom: 15px;
}



.columnItem .category_container{
  margin-bottom: 10px;
}


.columnItem .category_box {
  /* margin-bottom: 10px; */
}

.columnItem .category_box {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.columnItem .category {
  font-size: 14px;
  font-weight: bold;
  padding: 4px 20px;
  background: #D7EDFA;
  border-radius: 50px;
  display: inline-block;

}

@media screen and (max-width: 1024px) {
  .columnItem .category {
    font-size: 12px;
  }
}

/* コラムアイテム内のタイトル */
.columnItem .columnItemTtl {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.7;
  letter-spacing: 0.05em;
  color: #00244b;
  margin: 0;
  margin-bottom: 24px;
  /* テキスト省略表示の設定 */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; /* 2行で省略 */
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: calc(1.7em * 2); /* 2行分の高さを制限 */
}


@media screen and (max-width: 1024px) {
  .columnItem .columnItemTtl {
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  .columnItem .columnItemTtl {
    font-size: 16px;
  }
}

.columnItem .info-box-bottom{
  position: relative;
  display: flex;
justify-content: space-between;
align-items: center;
  /* flex-wrap: wrap; */
  gap: 12px;
}

.columnItem .info-box-bottom-left{
  display: flex;
  flex-wrap: wrap;
  gap: 2px 12px;
  align-items: center;
}

.info-box-bottom-right{
  position: relative;
}

.columnItem .time{
  font-size: 14px;
  color: #00244b;
  letter-spacing: 0.05em;
  line-height: 1.7;
  font-family: "Outfit", sans-serif;
  flex-shrink: 0;
}

.columnItem .tag_box{
  display: flex;
  flex-wrap: wrap;
  gap: 2px 10px;
}

.columnItem .tag{
  font-size: 14px;
  color: #006FAB;
  letter-spacing: 0.05em;
  line-height: 1.7;
  font-family: "Outfit", sans-serif;
}



.columnItem .linkbtn-arrow {
  z-index: 2;
  width: 36px;
  height: 36px;
  /* background: linear-gradient(90deg, #006FAB 0%, #004695 100%); */
  border-radius: 50%;
}

@media screen and (max-width: 767px){
  .columnItem .linkbtn-arrow {
  }
}

.linkbtn-arrow::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 13px;
  height: 12px;
  background-image: url(../img/connect-common/icon-arrow-wh.svg);
  background-repeat: no-repeat;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}
@media screen and (max-width: 1199px) {
  .linkbtn-arrow::before {
  }
}
@media screen and (max-width: 767px) {
  .linkbtn-arrow::before {
    width: 12px;
    height: 10px;
  }
}

.linkbtn-arrow::after {
  content: "";
  position: absolute;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #006FAB;
  background: linear-gradient(90deg, #006FAB 0%, #004695 100%);
  transition-duration: 0.3s;
   top: 50%;
  right: 0;
  transform: translate(0, -50%);
  z-index: 2;
}
@media screen and (max-width: 1199px) {
  .linkbtn-arrow::after {
  }
}

.productItem:hover{

}

.columnItem:hover .columnItemImg {
  /* filter: brightness(0.7); */
  /* border:4px solid #006FAB; */
  /* border-bottom: none;   */
}
.columnItem:hover .columnItemImg img {
  transform: scale(1.03);  
}
.columnItem:hover .linkbtn-arrow::before {
  background-image: url(../img/connect-common/productItem-arrow-wh.svg);
  background-repeat: no-repeat;
  transition-duration: 0.3s;
}
.columnItem:hover .linkbtn-arrow::after  {
  transform: translate(0, -50%) rotate(135deg);
  opacity: 0.9;
  transition-duration: 0.3s;
}




/* コラム人気記事 */
.column-pickuip{
  position: relative;
}
.column-pickuip-inner{
  position: relative;
}

.column-pickuip-ttl {
  font-size: 24px;
  line-height: 1.5;
  font-weight: bold;
  position: relative;
  margin-bottom: 40px;
  padding-left: 24px;
  position: relative;
  letter-spacing: 0.05em;
  color: #00244B;
}

@media screen and (max-width: 1024px) {
  .column-pickuip-ttl {
    font-size: 20px;
    margin-bottom: 30px;
    padding-left: 18px;
  }
}

.column-pickuip-ttl::after {
  content: "";
  display: inline-block;
  position: absolute;
  top:-8px;
  left: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #006fab;
  background: -webkit-gradient(linear, left top, right top, color-stop(-100%, #006fab), to(rgba(0, 111, 171, 0)));
  background: -webkit-linear-gradient(left, #006fab -100%, rgba(0, 111, 171, 0) 100%);
  background: linear-gradient(90deg, #006fab -100%, rgba(0, 111, 171, 0) 100%);
}

@media screen and (max-width: 1024px) {
  .column-pickuip-ttl::after {
    top: -5px;
    width: 32px;
    height: 32px;
  }
}

.column-pickuipItem .postInfo-box{
display: flex;
justify-content: space-between;
flex-wrap: wrap;
margin-bottom: 8px;
}

.column-pickuipItem .columnItemImg {
  overflow: hidden;
  border-radius: 6px;
  width: 31.25%;
}

.column-pickuipItem .columnItemImg img {
  width: 100%;
  height: auto;
  aspect-ratio: 10/6;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
  display: block;
  transition: transform 0.3s ease;
}

.column-pickuipItem .postInfo-textbox{
width: 65%;
}



/* コラムアイテム内の投稿情報 */
.column-pickuipItem .postInfo {
  margin-bottom: 15px;

}

.column-pickuipItem .time {
  font-family: "Outfit", sans-serif;
  font-size: 12px;
  color: #00244b;
  letter-spacing: 0.05em;
  line-height: 1.7;
  flex-shrink: 0;
}


.column-pickuipItem .category_box {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.column-pickuipItem .category_container{
margin-bottom: 8px;
}

.column-pickuipItem .category {
  font-size: 12px;
  line-height: 1.5;
  font-weight: bold;
  padding: 5px 20px;
  background: #D7EDFA;
  border-radius: 50px;
  display: inline-block;
}

@media screen and (max-width: 1024px) {
  .column-pickuipItem .category {
    font-size: 11px;
  }
}

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

/* コラムアイテム内のタイトル */
.column-pickuipItem .columnItemTtl {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.7;
  letter-spacing: 0.05em;
  color: #00244b;
  margin: 0;
  /* テキスト省略表示の設定 */
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; /* 2行で省略 */
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: calc(1.7em * 2); /* 2行分の高さを制限 */
}


@media screen and (max-width: 1024px) {
  .column-pickuipItem .columnItemTtl {
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  .column-pickuipItem .columnItemTtl {
    font-size: 15px;
  }
}

.column-pickuipItem .info-box-bottom{
  position: relative;
  display: flex;
justify-content: space-between;
align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.column-pickuipItem .info-box-bottom-left{
  display: flex;
  /* flex-wrap: wrap; */
  gap: 12px;
}

.info-box-bottom-right{
  position: relative;
}



.column-pickuipItem .tag_box{
  display: flex;
  flex-wrap: wrap;
  gap: 2px 10px;
}

.column-pickuipItem .tag{
  font-size: 12px;
  color: #006FAB;
  letter-spacing: 0.05em;
  line-height: 1.7;
  font-family: "Outfit", sans-serif;
}

@media screen and (max-width: 767px) {
  .column-pickuipItem .tag{
    font-size: 11px;
  }
}


.column-pickuipItem .columnItemLink {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid rgba(0, 36, 75, 0.20);
}

.column-pickuipItem .columnItemLink:hover .columnItemImg img{
  transform: scale(1.05);
}






