@charset "UTF-8";
/*
Theme Name: Emanon Pro child
Theme URI: https://wp-emanon.jp
Author: 株式会社イノ・コード
Author URI: https://innocord.co.jp/
Description: Emanon Pro の子テーマです。
Template: emanon-pro
Version: 3.0.0
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: one-column, two-columns, three-columns, left-sidebar, right-sidebar, theme-options

Emanon Pro 子テーマ用のスタイルを以下に記述
カスタマイズ機能のCSS圧縮をオンにしている場合、オフに切り替えてからスタイルを追加し、その後、再度CSS圧縮を
オンにしてください。
*/

// file: style.css
@charset "UTF-8";
/*
Theme Name: Emanon EL-PF Child
Template: emanon-pro
Description: Emanon Pro ポートフォリオ子テーマ（フリーランス向け）
Version: 1.0.0
Author: Your Name
*/

/* 基本リセット */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans JP", sans-serif;
  line-height: 1.6;
  color: #333;
}

/* ヘッダー */
.pf-header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.pf-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pf-header__logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #2c3e50;
  text-decoration: none;
}

.pf-header__nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.pf-header__nav a {
  color: #555;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 0.95rem;
}

.pf-header__nav a:hover {
  color: #3498db;
}

/* フッター */
.pf-footer {
  background: #2c3e50;
  color: #fff;
  padding: 3rem 2rem 1rem;
  margin-top: 4rem;
}

.pf-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.pf-footer__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.pf-footer__section h3 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.pf-footer__section ul {
  list-style: none;
}

.pf-footer__section ul li {
  margin-bottom: 0.5rem;
}

.pf-footer__section a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.3s;
}

.pf-footer__section a:hover {
  color: #fff;
}

.pf-footer__copy {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
  opacity: 0.8;
}

/* レスポンシブ */
@media (max-width: 768px) {
  .pf-header__nav ul {
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
  }
  
  .pf-header__inner {
    flex-direction: column;
    gap: 1rem;
  }
}