.front-works{
  /* セクション全体 */
  position: relative;
  overflow: hidden;
	padding-bottom: 120px;
}

.front-works__inner{
  /* 中身全体のラッパー */
  width: 100%;
  margin: 0 auto;
}

.front-works__head{
  /* 見出し部分 */
  display: flex;
  align-items: baseline;
  gap: 26px;
  width: 94%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 95px 0 48px;
}

.front-works__heading{
  /* WORKS 大見出し */
  margin: 0;
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.15;
  color: #1c2230;
}

.front-works__subheading{
  /* 施工事例の小見出し */
  margin: 0;
  color: #c9beb0;
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
}

.front-works__slider{
  /* スライダー表示範囲 */
  width: 100%;
  overflow: hidden;
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif !important;
}

.front-works__track{
  /* スライドする本体 */
  display: flex;
  flex-wrap: nowrap;
  gap: 28px;
  width: max-content;
  will-change: transform;
}

.front-works__item{
  /* 1枚ごとの幅 */
  flex: 0 0 360px;
  width: 360px;
}

.front-works__link,
.front-works__link:visited,
.front-works__link:hover,
.front-works__link:active{
  /* カード全体リンク */
  display: block;
  text-decoration: none;
  color: inherit;
}

.front-works__thumb{
  /* 画像枠 */
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #f5f5f5;
}

.front-works__thumb img{
  /* 画像 */
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.front-works__arrow{
  /* 画像ホバー時の丸矢印 */
  position: absolute;
  top: 50%;
  left: 50%;
  width: 56px;
  height: 56px;
  transform: translate(-50%, -50%) scale(.85);
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s ease, transform .3s ease;
  pointer-events: none;
  z-index: 5;
}

.front-works__arrow-icon{
  /* 矢印SVG本体 */
  width: 18px;
  height: 18px;
  display: block;
}

.front-works__arrow-icon path{
  fill: none;
  stroke: #2f352f;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.front-works__link:hover .front-works__arrow{
  /* ホバーで丸矢印を表示 */
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.front-works__text{
  /* 画像下のテキスト部分 */
  margin-top: 16px;
}

.front-works__area{
  /* 地域 */
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 8px;
  font-size: 10px;
  line-height: 1.4;
  color: #d2ac2c;
}

.front-works__area::after{
  /* 地域の右の横線 */
  content: "";
  display: block;
  width: 36px;
  height: 1px;
  background: #d9d3cb;
}

.front-works__title{
  /* タイトル1 */
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.5;
  color: #1c2230;
}

.front-works__subtitle{
  /* サブタイトル */
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: #b8b0a7;
}

/* ホバーしても文字色を変えない */
.front-works__link:hover .front-works__area{
  color: #d2ac2c;
}

.front-works__link:hover .front-works__title{
  color: #1c2230;
}

.front-works__link:hover .front-works__subtitle{
  color: #b8b0a7;
}

.front-works__button-arrow{
  /* 下部ボタンの矢印 */
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.front-works__button-icon{
  /* 下部ボタンの矢印SVG */
  width: 18px;
  height: 18px;
  display: block;
}

.front-works__button-icon path{
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ※ この指定は works 用ではなく news-card 用に見えるが、今は残す */
.news-card__link:hover .news-card__more-arrow{
  transform: translateX(6px);
}

.front-works__button:hover .front-works__button-arrow{
  /* ボタンホバー時に矢印を右へ */
  transform: translateX(6px);
}

.front-works__footer{
  /* 一覧を見るボタン全体 */
  margin-top: 64px;
  text-align: center;
  font-family: "Noto Serif JP", "Yu Mincho", "Hiragino Mincho ProN", serif !important;
}

.front-works__button,
.front-works__button:visited,
.front-works__button:active{
  /* 一覧を見るボタン */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-width: 200px;
  height: 54px;
  padding: 0 34px;
  background: #ffffff;
  border: 1px solid #efebe6;
  color: #17120f;
  text-decoration: none;
  font-size: 15px;
  font-weight: 900;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.front-works__button:hover{
  background: #17120f;
  border-color: #17120f;
  color: #ffffff;
  text-decoration: none;
}