/*
Theme Name: Pagency
Theme URI: https://pagency.jp/
Author: B'Me合同会社
Description: Pagency専用テーマ
Version: 1.0
*/

/* リセットとベースレイアウト */
body {
	font-family: 'Helvetica Neue', Arial, sans-serif;
	color: #333;
	line-height: 1.6;
	background-color: #f8f9fa;
	margin: 0;
	padding: 0;
}

.container {
	max-width: max(90%, 1200px);
	margin: 0 auto;
}

/* 見出し */
h1, h2, h3, h4, h5, h6 {
	margin-top: 0;
	margin-bottom: 0.5rem;
	font-weight: 700;
	line-height: 1.2;
	color: #333;
}

h1 {
	font-size: 2.5rem;
}

h2 {
	font-size: 2rem;
}

h3 {
	font-size: 1.75rem;
}

h4 {
	font-size: 1.5rem;
}

h5 {
	font-size: 1.25rem;
}

h6 {
	font-size: 1rem;
}

/* リンクスタイル */
a {
	color: #0073aa;
	text-decoration: none;
	transition: color 0.3s;
}

a:hover {
	color: #005177;
	text-decoration: underline;
}

/* ボタンスタイル */
.button {
	display: inline-block;
	padding: 0.5rem 1rem;
	font-size: 1rem;
	font-weight: 600;
	text-align: center;
	text-decoration: none;
	border-radius: 4px;
	cursor: pointer;
	transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.button-primary {
	background-color: #0073aa;
	color: #fff;
	border: 1px solid #0073aa;
}

.button-primary:hover {
	background-color: #005177;
	border-color: #005177;
	color: #fff;
	text-decoration: none;
}

.button-secondary {
	background-color: #f8f9fa;
	color: #0073aa;
	border: 1px solid #0073aa;
}

.button-secondary:hover {
	background-color: #e9ecef;
	color: #005177;
	border-color: #005177;
	text-decoration: none;
}

/* ヘッダーとフッター */
.site-header {
	background-color: #fff;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	padding: 1rem 0;
}

.site-header .container {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.site-logo {
	max-width: 200px;
	height: auto;
	display: block;
}

.site-title {
	font-size: 1.5rem;
	margin: 0;
}

.site-title a {
	color: #333;
	text-decoration: none;
}

.main-navigation {
	display: flex;
}

.main-navigation ul {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
}

.main-navigation li {
	margin-left: 1.5rem;
}

.main-navigation a {
	color: #333;
	text-decoration: none;
	font-weight: 500;
}

.main-navigation a:hover {
	color: #0073aa;
}

.site-footer {
	background-color: #333;
	color: #fff;
	padding: 3rem 0;
	margin-top: 3rem;
}

.site-footer a {
	color: #fff;
}

.site-footer a:hover {
	color: #f8f9fa;
}

/* ページ共通 */
.page-header {
	margin-bottom: 2rem;
}

.page-title {
	margin-bottom: 0.5rem;
}

.section-title {
	text-align: center;
	margin-bottom: 2rem;
}

/* レスポンシブ */
@media (max-width: 768px) {
	h1 {
		font-size: 2rem;
	}

	h2 {
		font-size: 1.75rem;
	}

	h3 {
		font-size: 1.5rem;
	}

	.site-header .container {
		flex-direction: column;
		text-align: center;
	}

	.main-navigation {
		margin-top: 1rem;
		justify-content: center;
	}
}

@media (max-width: 480px) {
	.page-header {
		text-align: center;
	}
}