@charset "UTF-8";
/*'Noto Sans JP', 'Helvetica Neue', Helvetica, Arial, sans-serif*/
/*文字色*/
/*ナビ文字色*/
/*コンテンツ幅*/
/*ブレークポイント*/
/*ブレークポイント*/
* {
  box-sizing: border-box;
  font-family: "Noto Sans JP", "Yu Gothic", "游ゴシック", sans-serif;
}

html {
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6, p, ul, ol, li, th, td, div, span {
  color: #24292E;
  line-height: 100%;
  margin: 0;
}

p {
  line-height: 1.5;
}

.textLeft {
  text-align: left;
}

.textRight {
  text-align: right;
}

.textCenter {
  text-align: center;
}

a {
  text-decoration: none;
  color: #24292E;
}

@media (hover: hover) {
  a:hover, button:hover {
    cursor: pointer;
  }
}
ul {
  list-style: none;
  padding: 0;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th, td {
  font-weight: 500;
}

img {
  width: 100%;
  image-rendering: auto;
}

body {
  min-height: 75vh;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
}

main {
  min-height: 75vh;
}
main p, main ul, main ol {
  margin-bottom: 1.5em;
}

footer small {
  display: block;
  text-align: center;
  padding: 8px;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}

@media only screen and (max-width: 600px) {
  .flex {
    display: block;
  }
}
/* テーブル */
table.myTbl {
  max-width: calc(100% - 2em);
  margin: 1em auto;
  border-collapse: collapse;
}

/* フォーム */
.myForm input:not([type=radio]), .myForm textarea, .myForm select {
  width: 100%;
  font-size: 16px;
  padding: 0.5em;
  border-radius: 5px;
}
.myForm table th, .myForm table td {
  border: solid 1px #909090;
  padding: 0.5em;
}
.myForm table th {
  width: 30%;
  background-color: #f0f0f0;
}
.myForm table th span {
  font-size: 12px;
  color: #bf0000;
}
.myForm table td {
  width: 70%;
}

/* リスト */
ul.list_notice {
  list-style: "※";
  padding-left: 1.5em;
}
ul.list_notice li {
  font-size: 14px;
  margin-bottom: 0.5em;
}

/* パンくずリスト */
nav.myBcs {
  max-width: 1080px;
  margin: 0 auto;
  padding: 2%;
}
nav.myBcs ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 0.5em 0.25em;
  margin-bottom: 0;
  border-bottom: solid 1px #f0f0f0;
}
nav.myBcs ul li {
  font-size: 14px;
  margin-right: 1em;
  position: relative;
}
nav.myBcs ul li:first-of-type {
  margin-left: 0;
}
nav.myBcs ul li::after { /*矢印*/
  content: "\f054";
  font-family: "Font awesome 5 free";
  font-weight: bold;
  font-size: 8px;
  position: absolute;
  top: 50%;
  right: -1.25em;
  transform: translateY(-50%);
}
nav.myBcs ul li:last-of-type::after {
  display: none;
}
nav.myBcs ul li:first-of-type a:before { /*HOME*/
  content: "\f015";
  font-family: "Font awesome 5 free";
  font-weight: bold;
  margin-right: 0.25em;
}

/* TOPへ戻るボタン */
#btnToTop {
  display: none;
  cursor: pointer;
  position: fixed;
  right: calc((100% - 1080px) / 2); /* コンテンツ右端に合わせる */
  bottom: 0px;
  padding: 5px 10px;
  z-index: 1000;
  transition: opacity 0.5s;
}
#btnToTop span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  padding: 10px;
  background-color: #0056b3;
}
#btnToTop span img {
  max-width: 35px;
}

@media only screen and (max-width: 1080px) {
  #btnToTop {
    right: 0;
  }
}
/*  */
.my403, .my404 {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ローディング */
#myLoading {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #f9f9f9;
  display: flex;
  align-items: center;
  justify-content: center;
}
#myLoading span {
  width: 50px;
  height: 50px;
  border: 3px solid #ccc;
  border-top-color: #0056b3;
  border-radius: 50%;
  animation: loadAnime 1s linear infinite;
}

@keyframes loadAnime {
  to {
    transform: rotate(360deg);
  }
}
/* ページャー */
ul.myPager {
  max-width: calc(100% - 5em);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 1em auto;
}
ul.myPager li {
  flex-basis: 33.3333333333%;
  text-align: center;
  overflow: hidden;
}
ul.myPager li a {
  display: block;
  padding: 1.5em 0.5em;
  background-color: #f0f0f0;
  border: solid 2px #606060;
}
ul.myPager li a span {
  color: #606060;
  letter-spacing: 0.25em;
  text-indent: -0.25em;
}
ul.myPager li:nth-of-type(1) a {
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
}
ul.myPager li:nth-of-type(1) a span::before {
  content: "\f137";
  font-family: "Font awesome 5 free";
  font-weight: bold;
  margin-right: 0.5em;
}
ul.myPager li:nth-of-type(2) a {
  border-left: none;
  border-right: none;
}
ul.myPager li:nth-of-type(2) a span::before {
  content: "\f0ca";
  font-family: "Font awesome 5 free";
  font-weight: bold;
  margin-right: 0.5em;
}
ul.myPager li:nth-of-type(3) a {
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
}
ul.myPager li:nth-of-type(3) a span::after {
  content: "\f138";
  font-family: "Font awesome 5 free";
  font-weight: bold;
  margin-left: 0.5em;
}
ul.myPager li a.disabled {
  pointer-events: none;
  background-color: #909090;
}
ul.myPager li a.disabled span {
  color: #606060;
}

/* サイトマップページ */
ul.mySitemap li {
  padding-left: 2em;
  display: flex;
  align-items: center;
  line-height: 1.5;
  margin-bottom: 0.5em;
}
ul.mySitemap li:before {
  content: "\f0da";
  font-family: "Font awesome 5 free";
  font-weight: bold;
  font-size: 12px;
  margin-right: 0.5em;
}
ul.mySitemap li:first-of-type {
  font-weight: bold;
  font-size: 1.2em;
  padding-left: 1em;
}

/* 罫線ジェネレーター */
html, body {
  height: 100%; /*全体の高さをビューポートに合わせる*/
  display: flex; /* header, main, footerを縦に並べる */
  flex-direction: column;
}

/*  */
/* headerのレイアウト調整 */
header {
  background-color: #0056b3;
  color: #f9f9f9;
  padding: 15px 20px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  display: flex; /* flexboxで要素を並べる */
  justify-content: space-between; /* 両端揃え */
  align-items: center; /* 垂直方向中央揃え */
  position: relative; /* 必要に応じてposition: stickyなどを検討 */
  z-index: 1001; /* 他のコンテンツの上に表示 */
}
header .header-content {
  flex-grow: 1; /* コンテンツが中央に寄るように */
  text-align: left;
}
header .header-content a img {
  max-width: 200px;
}
header .header-content h1 {
  color: #f9f9f9;
  font-size: 1.5em;
  margin-bottom: 5px;
}

/* ハンバーガーボタンのスタイル */
.hamburger-button {
  width: 30px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0;
  position: absolute; /* header内での位置調整 */
  right: 20px; /* 右端からの距離 */
  top: 50%;
  transform: translateY(-50%); /* 垂直中央揃え */
  z-index: 1001; /* メニューより手前に */
}
.hamburger-button .bar {
  display: block;
  width: 100%;
  height: 3px; /* 線の太さ */
  background-color: white;
  border-radius: 2px;
  transition: all 0.3s ease; /* 変形アニメーション用 */
  transform-origin: center;
}
.hamburger-button .bar2 {
  max-width: calc(100% - 5px);
}
.hamburger-button .bar3 {
  max-width: calc(100% - 10px);
}
.hamburger-button.is-active .bar1 {
  transform: translateY(8.5px) rotate(45deg); /* 中央のバーの位置に移動し回転 */
}
.hamburger-button.is-active .bar2 {
  opacity: 0; /* 中央のバーを非表示 */
}
.hamburger-button.is-active .bar3 {
  max-width: 100%;
  transform: translateY(-8.5px) rotate(-45deg); /* 中央のバーの位置に移動し回転 */
}

/* モーダルオーバーレイのスタイル */
.modal-overlay {
  position: fixed; /* 画面全体を覆う */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* 半透明の黒 */
  z-index: 999; /* サイドメニューより奥、他のコンテンツより手前 */
  opacity: 0; /* 初期状態は透明 */
  visibility: hidden; /* 初期状態は非表示 */
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal-overlay.is-active {
  opacity: 1; /* 表示時に不透明に */
  visibility: visible; /* 表示 */
}

/* サイドメニューのスタイル */
.side-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px; /* メニューの幅 */
  max-width: 80vw;
  height: 100%;
  background-color: #f9f9f9; /* 背景色 */
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  z-index: 1000; /* モーダルオーバーレイより手前 */
  padding-top: 80px; /* 閉じるボタンのための上部余白 */
}
.side-menu.is-active {
  transform: translateX(0);
}
.side-menu .menu-header {
  padding-bottom: 0; /* 見出しの下に余白は不要 */
  border-bottom: 1px solid #0056b3; /* 見出し下部に境界線 */
  background-color: #007bff; /* グラデーションの開始色に合わせて背景を設定 */
}
.side-menu .menu-header h3 {
  font-size: 1.4em; /* メインコンテンツより少し小さめ */
  color: white; /* 白い文字 */
  padding: 15px 20px; /* 内側の余白 */
  background: linear-gradient(to right, #007bff, #0056b3); /* メインカラーのグラデーション */
  border-radius: 0; /* 角丸はつけない */
  box-shadow: none; /* 影はつけないか、非常に控えめに */
  text-align: center; /* 中央寄せ */
  position: relative; /* 必要に応じて */
  overflow: hidden;
  margin: 0; /* 親要素のパディングに任せる */
}
.side-menu ul.menu-list {
  margin: 0;
  padding: 0;
}
.side-menu ul.menu-list li {
  padding: 8px;
  font-size: 16px;
  font-weight: bold;
  color: #0056b3; /* ヘッダーの青 */
  border-bottom: 1px solid #eee;
}
.side-menu ul.menu-list li a {
  text-decoration: none;
  color: #24292E;
  font-size: 1.15em;
  display: block;
  padding: 15px 20px;
  transition: background-color 0.2s ease, color 0.2s ease; /* ホバーアニメーション */
}
.side-menu ul.menu-list li a::before {
  content: "\f101";
  content: "\f101";
  font-family: "Font awesome 5 free";
  font-weight: bold;
  font-size: 12px;
  margin-right: 4px;
}
.side-menu ul.menu-list li:hover {
  background-color: #f0f8ff; /* ホバー時の背景色（薄いブランドカラー） */
  color: #0056b3; /* ホバー時の文字色（メインカラー） */
}
.side-menu ul.menu-list li:hover a {
  color: #0056b3; /* ホバー時の文字色（メインカラー） */
}

/*  */
.container {
  display: flex !important;
  flex-grow: 1; /* main要素が残りのスペースを占めるようにする */
  overflow: hidden; /* コンテンツがはみ出さないように */
  padding: 20px;
  gap: 20px; /* 設定パネルとプレビュー間のスペース */
}

.settings-panel {
  flex: 0 0 350px; /* 左側パネルの固定幅 */
  min-width: 300px; /* 最小幅 */
  background-color: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow-y: auto; /* 設定項目が多い場合はスクロールを許可 */
  /* max-height: calc(100vh - 40px - 70px); ヘッダーとフッターとpaddingを考慮した最大高さ */
}
.settings-panel h2 {
  font-size: 1.25em;
  color: white; /* 文字色は白に */
  margin-bottom: 18px;
  padding: 10px 20px; /* 内側の余白 */
  background: linear-gradient(to right, #007bff, #0056b3); /* 爽やかなグラデーション */
  border-radius: 4px; /* 角を丸く */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15); /* 深めの影 */
  text-align: left; /* テキストは左寄せ */
  position: relative;
  overflow: hidden; /* 背景がはみ出さないように */
}
.settings-panel h2::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.setting-group {
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
  padding-left: 8px;
  margin-bottom: 20px;
}
.setting-group:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
}

.setting-item {
  margin-bottom: 15px;
  display: flex;
  flex-wrap: wrap; /* ラベルとインプットが折り返すように */
  align-items: center;
}
.setting-item label {
  font-weight: bold;
  margin-right: 10px;
  white-space: nowrap; /* ラベルの改行を防ぐ */
}
.setting-item input[type=number], .setting-item select {
  flex-grow: 1; /* 利用可能なスペースを埋める */
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1em;
  max-width: 150px; /* 必要に応じて最大幅を設定 */
}
.setting-item input[type=color] {
  flex-grow: 0;
  width: 60px;
  height: 38px;
  border: none;
  padding: 0;
  cursor: pointer;
}
.setting-item td{
  text-align: center;
}
.setting-item td label{
  display: block;
  text-align: center;
  font-size: 12px;
  font-weight: 400;
}
.radio-group {
  display: flex;
  gap: 15px;
}
.radio-group input[type=radio] {
  margin-right: 5px;
}

.checkbox-item {
  align-items: center;
}
.checkbox-item input[type=checkbox] {
  margin-right: 8px;
  transform: scale(1.2);
}
.checkbox-item label {
  font-weight: normal; /* チェックボックスのラベルは太くしない */
  margin-bottom: 0; /* Align with checkbox */
}

.hidden {
  display: none !important;
}

/* ボタン */
.myBtn {
  display: block;
  width: 100%;
  padding: 15px 25px; /* 大きめのパディング */
  border-radius: 100px;
  background-color: #f9f9f9;
  font-size: 1.2em; /* 大きめのフォント */
  font-weight: bold; /* 太字 */
  cursor: pointer;
  margin-top: 30px; /* 上の要素との間隔 */
  letter-spacing: 0.05em; /* 文字間隔を少し広げる */
  text-transform: uppercase; /* 大文字にする（オプション） */
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease; /* ホバーアニメーション */
}
.myBtn_fill{
  display: inline-block;
  max-width:280px;
  text-align: center;
  color:#f9f9f9;
  background-color: #0056b3;
  padding:24px;
}
.myBtn_fill:after{
  content:"\f061";
  font-family: "Font awesome 5 free";
  font-weight: bold;
  font-size:12px;
  margin-left: 4px;
}
#btnDone.myBtn {
  color: #0056b3;
  border: solid 3px #0056b3;
  box-shadow: 0 5px 15px rgba(0, 86, 179, 0.3); /* 緑色の影 */
}

#btnPrint.myBtn {
  color: #28a745;
  border: solid 3px #28a745;
  box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3); /* 緑色の影 */
}

@media (hover: hover) {
  .myBtn:hover {
    color: #f9f9f9 !important;
    transform: translateY(-2px); /* 軽く上に浮き上がる */
  }
  #btnDone.myBtn:hover {
    background-color: #0056b3;
    box-shadow: 0 7px 20px rgba(0, 86, 179, 0.4); /* 影を濃く */
  }
  #btnPrint.myBtn:hover {
    background-color: #28a745;
    box-shadow: 0 7px 20px rgba(40, 167, 69, 0.4); /* 影を濃く */
  }
}
.linkArea {
  margin-top: 32px;
}
.linkArea a {
  font-size: 14px;
  color: #0056b3;
  text-decoration: underline;
}
.linkArea a::before {
  content: "\f101";
  font-family: "Font awesome 5 free";
  font-weight: bold;
  margin-right: 2px;
}

/* プレビュー画面 */
.preview-area {
  flex-grow: 1; /* 残りのスペースをすべて占める */
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 16px;
  background-color: #e0e2e5; /* プレビューエリアの背景色 */
  border-radius: 8px;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.05); /* プレビューエリアに内側の影 */
  /* overflow: hidden; プレビューがはみ出さないように */
  overflow: scroll;
}

.paper-frame {
  /* プレビュー用紙の外枠や影 */
  /* width: calc(100% - 40px); 左右の余白を考慮 */
  /* height: calc(100% - 40px); 上下の余白を考慮 */
  /* max-width: 480px; 最大幅を設定してA4の比率を保つ */
  /* max-height: calc(480px / 0.707); A4比率 (210/297 = 0.707) */
  width: 480px;
  height: 678.9250353607px;
  background-color: white;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden; /* 罫線がフレームからはみ出さないように */
  display: flex; /* 内部コンテンツを中央に */
  justify-content: center;
  align-items: center;
}

.a4-paper.portrait {
  width: 100%; /* paper-frameの幅に合わせる */
  height: 100%;
}

/* 罫線描画用のコンテナ */
.grid-container {
  /* position: absolute; */
  /* top: 0; */
  /* left: 0; */
  width: 100%;
  height: 100%;
  /* 後でJavaScriptで罫線を描画する */
}

#tbl_preview {
  width: 100%;
  height: 100%;
  border-collapse: collapse;
}
#tbl_preview td {
  position: relative;
}
#tbl_preview td span {
  font-family: "Arial Black", "Yu Gothic", "游ゴシック", sans-serif;
  font-size: 8px;
  position: absolute;
  bottom: 4px;
  right: 4px;
}

/* 印刷用CSS (ブラウザの印刷時のみ適用) */
@media print {
  body {
    margin: 0;
    padding: 0;
    background: none;
    box-shadow: none;
    overflow: hidden; /* 印刷時の余分なスクロールバーを非表示 */
    display: block; /* 印刷時はflexを解除 */
  }
  header, main, footer {
    box-shadow: none;
    background: none;
    color: black; /* 印刷時の文字色 */
  }
  /* 罫線エリア以外は非表示 */
  header, footer, nav, aside, .modal-overlay {
    display: none !important;
  }
  .container {
    padding: 0 !important;
    margin: 0 !important;
    width: 100vw !important; /* 印刷時の幅 */
    height: 100vh !important; /* 印刷時の高さ */
    display: block !important; /* 印刷時はflexを解除 */
    position: relative;
  }
  .preview-area {
    width: 100% !important;
    height: 100% !important;
    padding: 0 !important;
    display: flex; /* 中央配置を維持 */
    justify-content: center;
    align-items: center;
    position: relative;
    background: none !important;
    box-shadow: unset !important;
    overflow: hidden;
  }
  .paper-frame {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    padding: 0 !important;
    box-shadow: none;
    border-radius: 0;
    border: none; /* プレビュー枠線は印刷しない */
    display: block;
    margin: auto; /* 用紙の中央に配置 */
    background-color: white; /* 念のため背景を白に */
  }
  .a4-paper {
    width: 100% !important;
    height: 100% !important;
    padding-top: 0 !important; /* padding-topによる高さ調整を無効化 */
    border: none !important; /* プレビュー用紙の破線枠は印刷しない */
    box-shadow: none !important; /* 用紙自体の影も印刷しない */
    background-color: white !important; /* 念のため */
    display: block;
  }
  /* 罫線自体はJavaScriptでCanvasやSVGで描画される想定なので、
     ここではそのコンテナの表示だけ調整 */
  .grid-container {
    width: 100%;
    height: 100%;
    position: relative; /* 罫線の基準点 */
  }
} /*end @media print*/
@media only screen and (max-width: 900px) {
  html,body{
    height: auto !important;
  }
  /* モバイルでのヘッダー調整 */
  header {
    padding: 10px 15px;
  }
  header h1 {
    font-size: 1.5em;
  }
  /* ヘッダーにあるハンバーガーボタンの位置調整 */
  .hamburger-button {
    right: 15px;
    width: 35px;
    height: 25px;
  }
  .hamburger-button.is-active .bar1 {
    transform: translateY(11px) rotate(45deg);
  }
  .hamburger-button.is-active .bar3 {
    transform: translateY(-11px) rotate(-45deg);
  }
  /* サイドメニューの幅調整 */
  .side-menu {
    width: 350px;
  }
  .side-menu .menu-close-button {
    top: 10px; /* モバイルでの位置調整 */
    right: 15px;
    width: 35px;
    height: 25px;
  }
  .side-menu .menu-close-button .bar1 {
    transform: translateY(11px) rotate(45deg);
  }
  .side-menu .menu-close-button .bar3 {
    transform: translateY(-11px) rotate(-45deg);
  }
  .container {
    flex-direction: column;
    padding: 10px;
    overflow-y: scroll;
    overflow-x: hidden !important;
  }
  .settings-panel {
    flex: none;
    width: 100%;
    min-width: none;
    max-height: none;
    overflow: hidden;
  }
  .preview-area {
    flex: none;
    width: 100%;
    height: 100%;
    overflow: visible;
    padding-bottom: 24px;
  }
  /* .paper-frame {
      width: 90%;
      height: auto;
      padding-top: 127.27%;
  } */
  .checkbox-item input[type=checkbox] {
    width: auto;
  }
} /*end @media 900px*/
@page {
  size: A4 portrait; /* 用紙サイズと向き */
  margin: 0; /* 余白ゼロ */
}
/* 下層ぺージ */
body.bottom_pages{
  height: auto;
}
body.bottom_pages main.container {
  display: block !important;
  overflow:visible;
  padding: 0;
}
body.bottom_pages .myInner {
  max-width: 1080px;
  padding: 2%;
  margin: 0 auto;
}
body.bottom_pages .lowerTitle {
  text-align: center;
  background-color: #24292E;
  padding: 24px 16px;
}
body.bottom_pages .lowerTitle h1 {
  color: #f9f9f9;
}
body.bottom_pages section .myInner h2 {
  margin-bottom: 16px;
  color: #0056b3;
  border-left: solid 10px #0056b3;
  padding-left: 10px;
}
body.bottom_pages section .myInner p {
  padding-left: 1em;
}

/* 使い方ガイドぺージ */
.guide-container {
  max-width: 1080px; /* メインコンテンツの幅に合わせるか、少し狭く */
  padding: 24px;
  margin-bottom: 24px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.guide-container h2 {
  font-size:40px;
  font-family:'Arial Black','Yu Gothic','游ゴシック',sans-serif;
  color: #0056b3;
  border: none !important;
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
}
.guide-container h2 span{
  display: block;
  font-size: 12px;
  color: #007bff;
  margin: 16px auto;
}
.guide-container p {
  margin-bottom: 10px;
}
.guide-container ol {
  list-style: none; /* デフォルトのリストスタイルをなくす */
  counter-reset: step-counter; /* カウンターをリセット */
  padding-left: 0;
}
.guide-container ol li {
  margin-bottom: 32px;
  padding-left: 40px; /* 番号のスペース */
  position: relative;
  line-height: 1.6;
}
.guide-container ol li::before {
  content: counter(step-counter); /* カウンターを表示 */
  counter-increment: step-counter; /* カウンターをインクリメント */
  position: absolute;
  left: 0;
  top: 0;
  width: 32px;
  height: 32px;
  background-color: #0056b3; /* 青色の背景 */
  color: white;
  border-radius: 50%; /* 丸い形 */
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 1.1em;
}
.guide-container ol li strong {
  display: block;
  color: #0056b3;
  font-size: 18px;
  margin-bottom: 8px;
}
.guide-container ol li p{
  padding-left: 0 !important;
}
.guide-container img {
  max-width: calc(100% - 16px);
  height: auto;
  display: block;
  margin: 16px auto;
  border: 1px solid #ddd;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
}

.important-note {
  background-color: #fff3cd; /* 警告色（薄い黄色） */
  border-left: 5px solid #ffc107; /* 左側に太い線 */
  padding: 20px;
  margin-top: 30px;
  border-radius: 5px;
  color: #856404; /* 濃い文字色 */
}
.important-note h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 16px;
}
.important-note h3 i {
  margin-right: 10px;
  color: #ffc107; /* アイコンの色 */
}
.important-note p span {
  text-decoration: underline;
}

@media only screen and (max-width: 900px) {
  .guide-container {
    margin: 16px;
    padding: 16px;
  }
  .guide-container h2 {
    font-size: 24px;
  }
}/*# sourceMappingURL=style.css.map */

/*ガイドFAQ*/
ul.guide-faq li {
    background-color: #f9f9f9; /* 少し背景色を変えて区別 */
    border-left: 4px solid #007bff; /* アクセントカラーのライン */
    padding: 24px;
    margin-bottom: 16px;
    border-radius: 4px;
}
ul.guide-faq li:last-child {
    margin-bottom: 0;
}

/* 質問部分 */
ul.guide-faq li h3 {
    font-size:20;
    color: #0056b3; /* ブランドの濃いめの色 */
    margin-top: 0;
    margin-bottom: 8px;
    display: flex;
    align-items:center;
}
ul.guide-faq li h3::before {
    content: "Q."; /* Q.マーク */
    font-family:'Arial Black','Yu Gothic','游ゴシック',sans-serif;
    font-weight: bold;
    color: #0056b3; /* アクセントカラー */
    margin-right: 8px;
    font-size: 1.6em;
    line-height: 1; /* アイコンとの縦位置合わせ */
}

/* 回答部分 */
ul.guide-faq li p {
    font-size: 0.95em;
    line-height: 1.6;
    color: #555;
    margin-top: 0;
    margin-bottom: 0;
    display: flex;
    align-items:center;
}
ul.guide-faq li p::before {
    content: "A."; /* A.マーク */
    font-family:'Arial Black','Yu Gothic','游ゴシック',sans-serif;
    font-weight: bold;
    color: #28a745; /* 別のアクセントカラー */
    margin-right: 8px;
    font-size: 1.6em;
    line-height: 1; /* アイコンとの縦位置合わせ */
}
@media only screen and (max-width:900px) {
  ul.guide-faq li{
    padding: 16px;
  }
  ul.guide-faq li p {
    padding-left: 0 !important;
  }
}