@charset "utf-8";
/*===========================================================================

　サイト全体の土台となる、基本的なスタイルをまとめます。
	
===========================================================================*/

/*
 * :rootでは、サイトのテーマとなる「色」や「フォント」など、
 * ごく少数の変数を定義するのがおすすめです。
*/

:root {
	/* 文字色 */
	--color-text: #333;
  /* 線色 */
	--color-border: #eee;
  /* 背景色 */
	--color-bg-light: #f7f7f7;
	/* フォントファミリー */
	--color-primary: #2c3e50; /* プライマリ (Bootstrap風の青) */
	--color-primary-dark: #243342; /* プライマリ (濃い青) */
	--color-accent: #a855f7; /* アクセント (紫系) */
	--color-success: #198754; /* 成功 (暗めの緑) */
	--color-warning: #ffc107; /* 警告 (黄色) */
	--color-error: #d9534f; /* エラー (既存の赤系) */
  /* フォントファミリー */
  --font-sans: "Noto Sans JP", sans-serif;
  --font-serif: "Noto Serif JP", serif;
	--font-cinzel: "Cinzel", serif;
	--font-icon: "Font Awesome 6 Pro","Font Awesome 7 Pro";
  /* --- スペーシングの基本単位 (デフォルト = スマホ用) --- */
	--space-unit: 0.2rem;  /* 2px (基準) */
	/* --- スペーシング変数 (基本単位の倍数として定義) --- */
  --space-1: calc(var(--space-unit) * 1);
  --space-2: calc(var(--space-unit) * 2);
  --space-3: calc(var(--space-unit) * 3);
  --space-4: calc(var(--space-unit) * 4);
  --space-5: calc(var(--space-unit) * 5);
  --space-6: calc(var(--space-unit) * 6);
  --space-7: calc(var(--space-unit) * 7);
  --space-8: calc(var(--space-unit) * 8);
  --space-9: calc(var(--space-unit) * 9);
  --space-10: calc(var(--space-unit) * 10);
  --space-11: calc(var(--space-unit) * 11);
  --space-12: calc(var(--space-unit) * 12);
  --space-13: calc(var(--space-unit) * 13);
  --space-14: calc(var(--space-unit) * 14);
  --space-15: calc(var(--space-unit) * 15);
  --space-16: calc(var(--space-unit) * 16);
  --space-17: calc(var(--space-unit) * 17);
  --space-18: calc(var(--space-unit) * 18);
  --space-19: calc(var(--space-unit) * 19);
  --space-20: calc(var(--space-unit) * 20);
  --space-21: calc(var(--space-unit) * 21);
  --space-22: calc(var(--space-unit) * 22);
  --space-23: calc(var(--space-unit) * 23);
  --space-24: calc(var(--space-unit) * 24);
  --space-25: calc(var(--space-unit) * 25);
	--space-26: calc(var(--space-unit) * 26);
	--space-27: calc(var(--space-unit) * 27);
	--space-28: calc(var(--space-unit) * 28);
	--space-29: calc(var(--space-unit) * 29);
	--space-30: calc(var(--space-unit) * 30);
}
@media (min-width: 768px) {
  :root {
    --space-unit: 0.4rem;
  }
}
/*@media (min-width: 1200px) {
  :root {
    --space-unit: 0.4rem;
  }
}*/

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
	color: var(--color-text);
	background-color: #fff;
	font-family: var(--font-serif);
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 1.7;
	letter-spacing: 0.075em;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	text-size-adjust: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	min-height: 100vh;
	overflow-wrap: break-word;
	padding-top: 60px;
}
body.no-scroll {
	overflow: hidden;
}
@media (min-width: 1200px) {
	body {
		padding-top: 100px;
	}
}

main {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.inner {
  max-width: 1200px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
	}
@media (min-width: 768px) {
  .inner {
    width: 92%;
  }
}
@media (min-width: 1200px) {
  .inner {
    width: 94%;
  }
}

a {
  color: var(--color-text);
  text-decoration: none;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
a:hover {
  opacity: 0.8;
}

svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
	height: auto;
}
