.column {
  margin-top: 64px;
}

.column-filter {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-top: 48px;
}

.filter-btn {
  flex: 1;
  min-width: inherit;
  padding: 15px 0 17px;
  color: #3F4044;
  background-color: transparent;
  border: 1px solid #707070;
  transition: all 0.2s;
  
  &:hover {
    color: #fff;
    background-color: #1371C3;
    border: 1px solid #1371C3;
  }
}

.filter-btn.active {
  padding: 13px 0;
  font-size: 1.25rem;
  color: #fff;
  background-color: #1371C3;
  border:  1px solid #1371C3;
  transition: all 0.2s;
}

.column-pagination {
  display: flex;
  flex-flow: row;
  gap: 48px;
  justify-content: center;
  margin-top: 64px;
}

.column-pagination_btn {
  display: inline-block;
  width: 232px;
  padding: 19px 0 16px;
  font-family: 'San Francisco', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.2s;
}

.column-pagination_btn.prev {
  color: #3F4044;
  background-color: #fff;
  background-image: url('/img/icon-btn-arrow-left-invert.svg');
  background-repeat: no-repeat;
  background-position: left 20px center;
  border: 1px solid #C6C6C6;

  &:hover {
    background-color: #EDEDED;
  }
  
}

.column-pagination_btn.next {
  color: #fff;
  background-color: #1371C3;
  background-image: url('/img/icon-btn-arrow-right.svg');
  background-repeat: no-repeat;
  background-position: right 20px center;

  &:hover {
    background-color: #054B8B;
  }
}


/* ----- 背景画像付きh1 ----- */
.p-column_heading1 {
  position: relative;
  box-sizing: content-box;
  height: 400px;
  padding-bottom: 40px;
  margin: 0 calc(-1*(100vw - 1080px) / 2) 64px;

  @media (width <= 1120px) {
    margin: 0 -20px;
  }
}
.p-column_heading1_bg {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
.p-column_heading1_txtBox {
  position: absolute;
  bottom: 0;
  left: 80px;
  width: 576px;
  padding: 49px 48px 46px;
  background: white;
  box-shadow: 0 2px 10px rgba(0 0 0 / 10%);
}
.p-column_heading1_mainTxt {
  display: flex;
  flex-flow: column;
  font-size: 2.5rem;
  line-height: 1.4;
  color: #283E59;
  letter-spacing: 0.05em;
}
.p-column_heading1_subTxt {
  margin-top: 22px;
  font-size: 1.25rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
.p-column_heading1_read {
  margin-top: 26px;
  line-height: 1.75;
  letter-spacing: 0.05em;
}
