@charset "UTF-8";
/* CSS Document */

/* ============================================================
   リセット・基本設定
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ============================================================
   ★ レイアウトの核心 — body
   ============================================================
   body がスクロールコンテナになる。
   background-attachment: fixed で背景を画面に固定。
   スクロールしても背景は動かない。
   ============================================================ */
html {
  height: 100%;
}

body {
  /* ★ 背景を固定するための設定 */
  background-image: url('img/haikei.jpg');
	  
  /* ★ ここが最重要: 背景をビューポートに固定 */
  background-attachment: fixed;
  background-size: 2500px;

  /* ★ body をスクロールコンテナにする */
  overflow-y: auto;
  height: 100vh;

  font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
  color: #333;
  line-height: 1.7;
}


/* ============================================================
   ★ 中央コンテンツ — .wrap
   ============================================================
   固定幅で中央に配置。左右には body の背景が見える。
   スマホでは width: 100% になり、背景が隠れる。
   ============================================================ */
.wrap {
  width: 750px;
  max-width: 100%;
  margin: 0 auto;
  background: #f8f6f2;
  min-height: 100vh;
  position: relative;
}

/* ============================================================
   リセットとベーススタイル
   ============================================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  min-height: 100vh;
  padding: 2rem 1rem;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
}

/* ============================================================
   タイトル画像
   ============================================================ */
.section--top{
  display: flex;
  align-items: center;
  justify-content: center;
}

.section--menu{
	margin: 1rem;
	height:100px;
}

h1 {
  text-align: center;
  color: #333;
  margin-bottom: 0.5rem;
  font-size: 2.5rem;
}

.subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

/* ============================================================
   テキスト
   ============================================================ */
.osirase-txt{
/* リンクの基本色、訪問済み、ホバー時すべてを同じ色にする */
 color: #000000; /* ここに適用したい色を指定（例：黒） */
 text-decoration: none; /* 下線を消したい場合 */
	}

/* ============================================================
   カード
   ============================================================ */
.card {
  background: #FFF3C4;
  border-radius: 8px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.card--highlight {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
}

.card--highlight .card__title {
  color: #a8d4f8;
}

.card__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.card__table th,
.card__table td {
  padding: 0.6rem 0.8rem;
  text-align: left;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.card--highlight .card__table th,
.card--highlight .card__table td {
  border-bottom-color: rgba(255,255,255,0.1);
  color: #c8d8e8;
}


.card--highlight .card__table th {
  background: rgba(255,255,255,0.08);
  color: #a8d4f8;
}

.card__table td code {
  font-size: 0.8em;
}

/* ============================================================
   セクション共通
   ============================================================ */
.section__inner {
  padding: 0 2.5rem;
  max-width: 680px;
  margin: 0 auto;
}

/* ============================================================
   ボタン
   ============================================================ */
.button{
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.button-3 {
  margin:20px;
  width: 140px;
  height: 45px;
  font-family: 'Roboto', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-weight: 500;
  color: #000;
  background-color: #fed74b;
  border: none;
  border-radius: 45px;
  box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease 0s;
  cursor: pointer;
  outline: none;
  }

.button-3:hover {
  background-color: #a44f16;
  box-shadow: 0px 15px 20px rgba(255, 165, 0 , 0.4);
  color: #fff;
  transform: translateY(-7px);
}

/* ============================================================
   フッター
   ============================================================ */
.footer {
  background: #ffaf14;
  color: rgba(255,255,255,0.5);
  text-align: center;
  padding: 2rem;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}

