/* ====================
   全体の設定
   ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
  color: #333;
  background: #fff;
  line-height: 1.8;
}

/* 共通：横幅の制限と中央寄せ */
.inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ====================
   ボタン
   ==================== */
.btn {
  display: inline-block;
  background: #FF9F1C;
  color: #fff;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s;
}

.btn:hover {
  background: #e08800;
}

/* ====================
   ヘッダー
   ==================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #eee;
  z-index: 100;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  padding-bottom: 16px;
}

.logo {
  font-size: 18px;
  font-weight: 700;
  color: #FF9F1C;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
}

nav a {
  text-decoration: none;
  color: #555;
  font-size: 14px;
  font-weight: 400;
  transition: color 0.2s;
}

nav a:hover {
  color: #FF9F1C;
}

/* ====================
   ヒーロー
   ==================== */
.hero {
  padding: 160px 0 100px;
  text-align: center;
  background: #fffdf8;
}

.hero-sub {
  font-size: 13px;
  color: #FF9F1C;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.hero-title {
  font-size: 52px;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.hero-text {
  font-size: 16px;
  color: #777;
  margin-bottom: 40px;
}

/* ====================
   セクション共通
   ==================== */
.section {
  padding: 100px 0;
}

.section-gray {
  background: #f9f9f9;
}

.section-title {
  font-size: 28px;
  font-weight: 700;
  color: #222;
  margin-bottom: 48px;
  padding-bottom: 12px;
  border-bottom: 2px solid #FF9F1C;
  display: inline-block;
}

/* ====================
   About
   ==================== */
.about-box p {
  margin-bottom: 16px;
  font-size: 15px;
  color: #555;
}

/* ====================
   Skills
   ==================== */
.skills-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 600px;
}

.skill-name {
  font-size: 14px;
  font-weight: 700;
  color: #444;
  margin-bottom: 8px;
}

/* バーの背景（グレー） */
.bar-bg {
  width: 100%;
  height: 10px;
  background: #e0e0e0;
  border-radius: 5px;
  overflow: hidden;
}

/* バーの中身（オレンジ） */
.bar {
  height: 100%;
  background: #FF9F1C;
  border-radius: 5px;
}

/* ====================
   Works
   ==================== */
.works-label {
  font-size: 14px;
  font-weight: 700;
  color: #999;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  margin-top: 48px;
}

.works-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.work-card {
  width: calc(50% - 12px);
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s;
}

.work-card:hover {
  transform: translateY(-6px);
}

/* サムネイル代わりの色ブロック */
.work-img {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
}

.work-img--portfolio {
  background: #3a7bd5;
}

.work-img--cafe {
  background: #aaa;
}

.work-body {
  padding: 20px;
}

.work-tags {
  font-size: 12px;
  color: #FF9F1C;
  font-weight: 700;
  margin-bottom: 8px;
}

.work-title {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
}

.work-desc {
  font-size: 13px;
  color: #777;
}

/* 動画 */
.video-wrap {
  margin-top: 24px;
  text-align: center;
}

.video-wrap iframe {
  width: 100%;
  max-width: 700px;
  height: 400px;
  border-radius: 10px;
  border: 1px solid #eee;
}

/* ====================
   Contact
   ==================== */
.contact-inner {
  text-align: center;
}

.contact-text {
  font-size: 15px;
  color: #666;
  margin-bottom: 36px;
}

/* ====================
   フッター
   ==================== */
footer {
  text-align: center;
  padding: 28px 0;
  background: #222;
  color: #aaa;
  font-size: 13px;
}

/* ====================
   レスポンシブ（スマホ対応）
   ==================== */
@media (max-width: 600px) {
  .hero-title {
    font-size: 36px;
  }

  nav ul {
    gap: 16px;
  }

  .work-card {
    width: 100%;
  }

  .video-wrap iframe {
    height: 220px;
  }
}
/* MorCOM・Dreamerカード追加分 */
.work-img--morcom {
  background: #2c3e50;
}

.work-img--dreamer {
  background: #8e44ad;
}

.work-card--link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.work-img--photo {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

/* ====================
   Reviews
   ==================== */
.reviews-sub {
  font-size: 13px;
  color: #999;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 40px;
  margin-top: -32px;
}

.reviews-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.review-card {
  width: calc(33.333% - 16px);
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 24px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.review-stars {
  color: #FF9F1C;
  font-size: 18px;
  letter-spacing: 3px;
}

.review-text {
  font-size: 13px;
  color: #555;
  line-height: 2;
  flex: 1;
  border-left: 3px solid #FF9F1C;
  padding-left: 12px;
}

.review-name {
  font-size: 13px;
  font-weight: 700;
  color: #FF9F1C;
  text-align: right;
  padding-top: 8px;
  border-top: 1px solid #eee;
}

@media (max-width: 600px) {
  .review-card {
    width: 100%;
  }
}
