dl dd + dt {
  margin-top: 8px;
}

/* 章全体の外枠（アンカーターゲットの領域を含む） */
.help-section {
  margin: 40px 0;
}

/* 章全体のコンテナ（アンカーターゲットの領域を含まない） */
.help-section .help-section-container {
  margin-bottom: 10px;
  border: 2px solid #eaeaea;
}

/* 章タイトル */
.help-section .help-section-container h2 {
	font-size: 1.8rem;
	background-color: var(--themecolor);
	color: #fff;
	display: flex;
	padding: 10px;
  margin-bottom: 10px;
}

/* 章サブタイトル */
.help-section .help-section-container h3 {
  font-size: 2.2rem;
	padding: 10px;
	color: var(--themecolor);
	font-weight: 700;
	line-height:1.4;
}

/* 
  章タイトル下の内容部分
  画像イメージ + 説明テキスト の左右分割グリッド
*/
.help-section .help-section-container .help-section-contents {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 10px;
  align-items: flex-start;
  padding: 10px;
}


/* 左側：画像エリア（画面イメージを配置） */
.annotated-screen {
  position: relative;
  display: block;
  width: 100%;
}

/* 画像本体 */
.annotated-screen .annotated-screen-image {
  width: 100%;
  height: auto;
  display: block;
  border: 1px solid #e5e7eb;
}

/* 囲み（赤い点線の四角） */
.annotated-screen .callout {
  position: absolute;
  top: var(--box-y);
  left: var(--box-x);
  width: var(--box-w);
  height: var(--box-h);
  border: 3px dashed #f00;
  border-radius: 16px;
  box-sizing: border-box;
}

/* 囲み左上の数字 */
.annotated-screen .callout .callout-number {
  position: absolute;
  /* 囲みの左上に配置する */
  top: -20px;
  left: -20px;
  width: 28px;
  height: 28px;
  background: #f00;
  color: #fff;
  font-weight: bold;
  font-size: 14px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 右側：テキストエリア（説明テキストを配置） */
.help-text-area {
  min-width: 300px;
  line-height: 1.7;
}

/* テキストボックス */
.help-text-area .callout-label {
  padding: 12px 16px;
  margin-bottom: 10px;
  background: #fff;
  border-radius: 1.2rem;
  border: 1px solid #e5e7eb;
}

/* タイトルのみのテキストボックスに関してはborder-noneを付けて外枠を非表示に */
.help-text-area .callout-label.border-none {
  border: none;
}

.help-text-area .callout-title {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 2rem;
  border-radius: 10rem;
  background: #f00;
  color: #fff;
  font-weight: 700;
  font-size: 1.4rem;
}

.help-text-area .img-expand {
  width: 100%;
  border: #e5e7eb 1px solid;
  cursor: pointer;
}

.help-text-area img {
  width: 100%;
}

.help-text-area .callout-label .traffic-icon {
  width: 24px;
  height: 24px;
  margin-right: 4px;
}

.help-text-area table.align-top td {
  vertical-align: top;
}

.help-text-area table img.traffic-icon {
  width: 24px;
  height: 24px;
  margin-right: 4px;
}


/*
  画面イメージ上の囲みの値設定（言語ごとに幅等が異なる場合。そうでなければhtml側にのみ記述する。）

  code:       囲み一つ一つに割り当てる識別子。html側のcode属性と一致させること。
  data-lang:  そのスタイルをあてる言語。

  設定値
  --box-x: 左端の位置
  --box-y: 上端の位置
  --box-w: 横幅
  --box-h: 縦幅
*/
.callout[code="disaster-info-5"] {
  --box-x: 2%;
  --box-y: 8%;
  --box-w: 96%;
  --box-h: 28%;
}
.annotated-screen[data-lang="ko"] .callout[code="disaster-info-5"] {
  --box-y: 10%;
  --box-h: 24%
}
.annotated-screen[data-lang="zhs"] .callout[code="disaster-info-5"] {
  --box-y: 10%;
  --box-h: 24%
}
.annotated-screen[data-lang="zht"] .callout[code="disaster-info-5"] {
  --box-y: 10%;
  --box-h: 24%
}

.callout[code="disaster-info-6"] {
  --box-x: 2%;
  --box-y: 37%;
  --box-w: 96%;
  --box-h: 33%;
}

.callout[code="disaster-info-7"] {
  --box-x: 2%;
  --box-y: 71%;
  --box-w: 58%;
  --box-h: 25%;
}

.callout[code="disaster-info-8"] {
  --box-x: 61%;
  --box-y: 71%;
  --box-w: 37%;
  --box-h: 25%;
}

.callout[code="transportation-4"] {
  --box-x: 1%;
  --box-y: 10%;
  --box-w: 20%;
  --box-h: 40%;
}
.annotated-screen[data-lang="en"] .callout[code="transportation-4"] {
  --box-w: 26%;
}
.annotated-screen[data-lang="ko"] .callout[code="transportation-4"] {
  --box-x: 0%;
  --box-y: 0%;
  --box-w: 30%;
  --box-h: 100%;
}
.annotated-screen[data-lang="zhs"] .callout[code="transportation-4"] {
  --box-x: 0%;
  --box-y: 0%;
  --box-w: 15%;
  --box-h: 100%;
}
.annotated-screen[data-lang="zht"] .callout[code="transportation-4"] {
  --box-x: 0%;
  --box-y: 0%;
  --box-w: 15%;
  --box-h: 100%;
}

.callout[code="transportation-5"] {
  --box-x: 92%;
  --box-y: 10%;
  --box-w: 9%;
  --box-h: 40%;
}
.annotated-screen[data-lang="en"] .callout[code="transportation-5"] {
  --box-x: 90%;
  --box-w: 11%;
}
.annotated-screen[data-lang="ko"] .callout[code="transportation-5"] {
  --box-x: 92%;
  --box-y: 0%;
  --box-h: 100%;
}
.annotated-screen[data-lang="zhs"] .callout[code="transportation-5"] {
  --box-x: 91%;
  --box-y: 0%;
  --box-h: 100%;
}
.annotated-screen[data-lang="zht"] .callout[code="transportation-5"] {
  --box-x: 90%;
  --box-y: 0%;
  --box-h: 100%;
}

.callout[code="emergency-numbers-1"] {
  --box-x: 5%;
  --box-y: 31%;
  --box-w: 90%;
  --box-h: 60%;
}
.annotated-screen[data-lang="en"] .callout[code="emergency-numbers-1"] {
  --box-h: 61%;
}
.annotated-screen[data-lang="zhs"] .callout[code="emergency-numbers-1"] {
  --box-h: 59%;
}
.annotated-screen[data-lang="zht"] .callout[code="emergency-numbers-1"] {
  --box-h: 59%;
}


.callout[code="useful-info-1"] {
  --box-x: 5%;
  --box-y: 25%;
  --box-w: 90%;
  --box-h: 14%;
}
.annotated-screen[data-lang="ko"] .callout[code="useful-info-1"] {
  --box-h: 12%;
}
.annotated-screen[data-lang="zhs"] .callout[code="useful-info-1"] {
  --box-h: 12%;
}
.annotated-screen[data-lang="zht"] .callout[code="useful-info-1"] {
  --box-h: 12%;
}
.annotated-screen[data-lang="zhs"] .callout[code="useful-info-1"] {
  --box-h: 12%;
}
.annotated-screen[data-lang="zht"] .callout[code="useful-info-1"] {
  --box-h: 12%;
}

.callout[code="useful-info-2"] {
  --box-x: 5%;
  --box-y: 40%;
  --box-w: 90%;
  --box-h: 8%;
}
.annotated-screen[data-lang="en"] .callout[code="useful-info-2"] {
  --box-h: 10%;
}
.annotated-screen[data-lang="ko"] .callout[code="useful-info-2"] {
  --box-y: 38%;
}
.annotated-screen[data-lang="zhs"] .callout[code="useful-info-2"] {
  --box-y: 38%;
}
.annotated-screen[data-lang="zht"] .callout[code="useful-info-2"] {
  --box-y: 38%;
}
.annotated-screen[data-lang="zhs"] .callout[code="useful-info-2"] {
  --box-y: 38%;
}
.annotated-screen[data-lang="zht"] .callout[code="useful-info-2"] {
  --box-y: 38%;
}

.callout[code="useful-info-3"] {
  --box-x: 5%;
  --box-y: 49%;
  --box-w: 90%;
  --box-h: 8%;
}
.annotated-screen[data-lang="en"] .callout[code="useful-info-3"] {
  --box-y: 51%;
}
.annotated-screen[data-lang="ko"] .callout[code="useful-info-3"] {
  --box-y: 48%;
}
.annotated-screen[data-lang="zhs"] .callout[code="useful-info-3"] {
  --box-y: 48%;
}
.annotated-screen[data-lang="zht"] .callout[code="useful-info-3"] {
  --box-y: 48%;
}
.annotated-screen[data-lang="zhs"] .callout[code="useful-info-3"] {
  --box-y: 48%;
}
.annotated-screen[data-lang="zht"] .callout[code="useful-info-3"] {
  --box-y: 48%;
}

.callout[code="useful-info-4"] {
  --box-x: 5%;
  --box-y: 62%;
  --box-w: 90%;
  --box-h: 8%;
}
.annotated-screen[data-lang="en"] .callout[code="useful-info-4"] {
  --box-y: 63%;
}
.annotated-screen[data-lang="ko"] .callout[code="useful-info-4"] {
  --box-y: 61%;
}
.annotated-screen[data-lang="zhs"] .callout[code="useful-info-4"] {
  --box-y: 61%;
}
.annotated-screen[data-lang="zht"] .callout[code="useful-info-4"] {
  --box-y: 61%;
}
.annotated-screen[data-lang="zhs"] .callout[code="useful-info-4"] {
  --box-y: 61%;
}
.annotated-screen[data-lang="zht"] .callout[code="useful-info-4"] {
  --box-y: 61%;
}

.callout[code="useful-info-5"] {
  --box-x: 5%;
  --box-y: 71%;
  --box-w: 90%;
  --box-h: 12%;
}
.annotated-screen[data-lang="en"] .callout[code="useful-info-5"] {
  --box-y: 73%;
  --box-h: 13%;
}
.annotated-screen[data-lang="ko"] .callout[code="useful-info-5"] {
  --box-y: 70%;
}
.annotated-screen[data-lang="zhs"] .callout[code="useful-info-5"] {
  --box-y: 70%;
}
.annotated-screen[data-lang="zht"] .callout[code="useful-info-5"] {
  --box-y: 70%;
}
.annotated-screen[data-lang="zhs"] .callout[code="useful-info-5"] {
  --box-y: 70%;
}
.annotated-screen[data-lang="zht"] .callout[code="useful-info-5"] {
  --box-y: 70%;
}

.callout[code="useful-info-6"] {
  --box-x: 5%;
  --box-y: 88%;
  --box-w: 90%;
  --box-h: 8%;
}
.annotated-screen[data-lang="en"] .callout[code="useful-info-6"] {
  --box-y: 91%;
}
.annotated-screen[data-lang="ko"] .callout[code="useful-info-6"] {
  --box-y: 86%;
}

.annotated-screen[data-lang="zhs"] .callout[code="useful-info-6"] {
  --box-y: 86%;
}
.annotated-screen[data-lang="zht"] .callout[code="useful-info-6"] {
  --box-y: 86%;
}



/* 
  アンカータグの位置調整
  遷移元から該当の章へジャンプした際の表示位置を調整する
  WARNING: このセレクタは最後に配置すること
*/
.anchor-target {
  padding-top: 180px;
  margin-top: -180px;
}