/*スマートフォン専用スタイルシート "top-styleのcssファイルです。"*/
/* 九州管区警察局のTopページのスタイルシートです。 */

/* メインコンテンツ部分の大まかな書式設定 */
.content {
  color: #333333;
  flex: 1;
  text-align: center;
  margin: 10px 0 10px 0;
}
/* メインコンテンツ内、Topページの写真について */
.content .main-picture {
  position: relative; /* 相対配置 */
}
/* スマートフォン版で表示する画像の設定 */
.content .main-picture .sm-top-image {
  margin-top: 1.5em;
  width: 100%;
}
/* PC版では違う画像を載せるので、その部分はスマホでは非表示にする */
.content .main-picture .pc-top-image{
  display: none;
}

/* 新着情報の部分について */
/* 新着情報自体を囲む枠を指定(少し丸みを帯びた青い囲み線) */
.content .box {
  position: relative;
  border: solid 3px #2A5CAA;
  border-radius: 8px;
  margin: 2em 1em;
  padding: 0.5em 0.5em;
}
/* 新着情報のタイトルについて */
/* 囲み線の上にタイトルを被せるように表示する */
.box .box-title {
  position: absolute;
  display: inline-block;
  top: -13px;
  left: 10px;
  padding: 0 9px;
  line-height: 1;
  background: #fffef2;
  color: #2A5CAA;
  font-size: 14px;
  font-weight: bold;
}
/* 新着情報の中についての大きさ指定 */
.content .box .info {
  display: 70px;
  max-width: 100%;
}

/*統計情報、指名手配、被害者支援のタブについて*/
.tab-label {
  color: white;
  background-color: #a9a9a9;
  font-weight: bold;
  text-shadow: 0 -1px 0 rgba(0,0,0,.2);
  padding: 10px .5em;
  cursor: pointer;
  margin-bottom: -1px;
  border: 1px solid rgba(0,0,0,.2);
  display: block;
}
.tab-label:before {
  content: '▼';
  margin-right: .2em;
  display: inline-block;
  transform: rotate(-90deg);
}
.tab-content {
  height: 0;
  overflow: hidden;
  opacity: 0;
  padding: 0 15px;
}
/* アクティブ(選択されている)なタブについて */
.tab-switch:checked+.tab-label {
  background-color: #2A5CAA;
}
.tab-switch:checked+.tab-label:before {
  transform: rotate(0);
}
.tab-switch:checked+.tab-label+.tab-content {
  height: auto;
  overflow: auto;
  padding: 15px;
  opacity: 1;
  margin-bottom: -1px;
  transition: .5s;
  border: 1px solid #2A5CAA;
}
/* タブに使用されているラジオボタン非表示 */
.tab-switch {
  display: none;
}
.tab-content ul {
  list-style: none;
}
/* 指名手配タブ内の表示スタイルについて */

.tab-content .mini-content {
  width: 98%;
  text-align: left;
  padding-left: 1em;
}

.tab-content .mini-content li {
  list-style: square;
  /*padding: 1em;*/
}

.tab-content .mini-content li h2 {
  display: inline-block;
  font-size: 1em;
  border-bottom: solid 2px #333333;
}

.tab-content .mini-content li ol {
  padding: 0.5em;
}
.tab-content .mini-content li ol li {
  list-style: decimal;
  margin: 0.25em auto;
}
.tab-content .mini-content li ol li ul {
  padding-left: 1em;
  display: flex;
  flex-wrap: wrap;
  text-align: center;
}
.tab-content .mini-content li ol li ul li {
  margin: auto;
  list-style-type: circle;
}
.victims-support-box p {
  text-align: left;
}