@charset "utf-8" ;


body {
  background-color: #fff;
  font-family: sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  color: #595757;
}

h1,h2,h3,p {
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
}


/* 全体 */
body {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  line-height: 1.8;
  background-color: #fff;
}


.main_works_single {
  margin: 0 auto;
}

.mainimg_area {
  padding: 0 40px;
}

/* タイトル */
.page-title {
  text-align: center;
  padding: 80px 20px 40px;
  background-color: #f8f6f4;
}

.page-title h1 {
  font-size: 2.5rem;
  letter-spacing: 0.1em;
  color: #222;
}

.page-title p {
  color: #b7a58b;
  letter-spacing: 0.2em;
}

/* メイン画像 */
.work-hero img {
  width: 100%;
  max-width: 900px;
  height: auto;
  display: block;
  border-radius: 0;
}

/* メインビジュアル or 実績画像部分 */
.work-hero {
  display: flex;
  justify-content: center; /* 画像を中央寄せ */
  margin: 60px auto;
}

.work-hero img {
  width: 900px;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}


/* BRAND STORY */
.work-summary {
  text-align: left; /* 左寄せに変更 */
  max-width: 1000px;
  margin: 80px auto;
  padding: 0 20px;
}


.work-heading {
  font-size: 1.6rem;
  font-weight: 700;
  color: #333;
  position: relative;
  display: block;
  line-height: 1.2;
  padding-bottom: 3px;
  margin-bottom: 20px;
}

.work-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #8a8a8a;
}

.work-title {
  margin-bottom: 5rem;
}

.subtitle {
  font-size: 18px;
  line-height: 1.2rem;
}

.shopname {
  font-size: 25px;
}



.work-summary p {
  font-size: 1rem;
  color: #555;
}

/* 画像＋説明レイアウト */
.work-content {
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: 1100px;
  margin: 80px auto;
  padding: 0 20px;
}

.work-content.reverse {
  flex-direction: row-reverse;
}

.work-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}


.space {
  margin-top: 50px;
 margin-bottom: 50px;
}

.ski_item img{
  width: 70px;
}

.skill_list {
  list-style: none; /* 点を消す */
  display: flex; /* 横並びにする */
  justify-content:left; /* 中央寄せ */
  gap: 5px; /* 画像の間隔 */
  padding: 0;
  margin: 0;
}

.skill_item img {
  width: 60px; /* アイコンサイズ調整 */
  height: auto;
}


/* ボタン */
.back-btn {
  text-align: center;
  margin: 100px 0;
}

.btn {
  display: inline-block;
  padding: 14px 40px;
  border: 2px solid #c4a77d;
  border-radius: 40px;
  color: #ffffff;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background-color: #c4a77d;
  color: #fff;
}

/* レスポンシブ */
@media screen and (max-width: 768px) {
  .work-content {
    flex-direction: column;
    gap: 30px;
  }
  .work-content.reverse {
    flex-direction: column;
  }
  .work-info {
    text-align: center;
  }
}
