/* =========================================================
   Front Page - Column
========================================================= */

.front-column{
  padding: 80px 0;
  background: #EDF3F5;
}

.front-column__inner{
  max-width: 1200px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* -----------------------------------------
   Header
----------------------------------------- */
.front-column__header{
  margin: 0 0 34px;
}

.front-column__eyebrow{
  margin: 0 0 8px;
  color: #74909F;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-align: left;
}

.front-column__title-row{
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding-bottom: 18px;
}



.front-column__title-icon{
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  display: block;
}

.front-column__title{
  margin: 0;
  color: #1759A5;
  font-size: 35px;
  font-weight: 500;
  line-height: 1.35;
}

.front-column__lead{
  margin: 18px 0 0;
  color: #333;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.9;
}

/* -----------------------------------------
   Grid
----------------------------------------- */
.front-column__grid,
.column-card-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 45px;
  margin: 0;
  padding: 0;
  list-style: none;
  align-items: stretch;
}

.column-card-grid__item{
  min-width: 0;
  display: flex;
}

.column-card{
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid #9A9696;
  border-radius: 30px;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}

.column-card:hover,
.column-card:focus-visible{
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.10);
  text-decoration: none;
}

.column-card__thumb-wrap{
  display: block;
  width: 100%;
  height: 203px;
  overflow: hidden;
  border-radius: 30px 30px 0 0;
}

.column-card__thumb{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.column-card__body{
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  padding: 18px 20px 16px;
  box-sizing: border-box;
}

.column-card__meta{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 12px;
}

.column-card__unit{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 4px 14px;
  border-radius: 999px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
  box-sizing: border-box;
}

.column-card__date{
  flex: 0 0 auto;
  color: #333;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  white-space: nowrap;
}

.column-card__title{
  display: block;
  margin: 0;
  color: #333;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7;
  word-break: break-word;
  overflow-wrap: anywhere;
}

/* -----------------------------------------
   More link
----------------------------------------- */
.front-column__footer{
  display: flex;
  justify-content: flex-end;
  margin-top: 14px;
}

.front-column__more{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #2F2F2F;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
}

.front-column__more:hover{
  text-decoration: none;
}

.front-column__more-icon{
  position: relative;
  display: inline-block;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #2F2F2F;
  flex: 0 0 26px;
}

.front-column__more-icon::before{
  content: "";
  position: absolute;
  top: 50%;
  left: 47%;
  width: 6px;
  height: 6px;
  border-top: 1.5px solid #fff;
  border-right: 1.5px solid #fff;
  transform: translate(-50%, -50%) rotate(45deg);
}
/* -----------------------------------------
   Tablet
----------------------------------------- */
@media (max-width: 1024px){
  .front-column{
    padding: 72px 0;
  }

  .front-column__grid,
  .column-card-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
  }
}

/* -----------------------------------------
   SP
----------------------------------------- */
@media (max-width: 768px){
  .front-column{
    padding: 56px 0;
  }

  .front-column__inner{
    padding: 0 16px;
  }

  .front-column__eyebrow{
    font-size: 16px;
  }

  .front-column__title-row{
    gap: 8px;
    padding-bottom: 16px;
  }

  .front-column__title-row::after{
    width: 220px;
  }

  .front-column__title-icon{
    width: 28px;
    height: 28px;
    flex-basis: 32px;
  }

  .front-column__title{
    font-size: 26px;
  }

  .front-column__lead{
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.9;
  }

  .front-column__grid,
  .column-card-grid{
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .column-card__thumb-wrap{
    height: 203px;
  }

  .column-card__body{
    padding: 16px 16px 14px;
  }

  .column-card__meta{
    align-items: flex-start;
    gap: 10px;
  }

  .column-card__unit{
    font-size: 14px;
  }

  .column-card__date{
    font-size: 18px;
  }

  .column-card__title{
    font-size: 18px;
    line-height: 1.7;
  }

  .front-column__more{
    margin-top: 16px;
  }

  .front-column__more-text{
    font-size: 16px;
  }

  .front-column__more-arrow{
    width: 22px;
    height: 22px;
    font-size: 17px;
  }
}