@charset "utf-8";

/*** 共通 ***/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 10px;
}

body {
  font-family: "Zen Maru Gothic", serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.75;
  min-width: 1280px;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  color: #0052a4;
}

a:hover {
  opacity: .8;
}

#wrap {
  overflow: hidden;
}

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1em;
  position: fixed;
  z-index: 9999;
  width: 100%;
  /* height: 6em; */
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 0.2rem solid #e5e7eb;
}

header > div {
  min-width: 6%;
  margin: 0 2% 0 0;
}

header > div img {
  width: auto;
  max-height: 6em;
}

nav {
  font-family: "Noto Sans JP", sans-serif;
  width: 92%;
}

.nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.line {
  width: 3em;
  height: 0.25em;
  background-color: #666;
  margin: 0.25em 0;
}

nav ul {
  display: flex;
  align-items: center;
  justify-content: end;
  flex-wrap: wrap;
}

nav a {
  display: block;
  padding: 0 1em;
  text-align: center;
  font-weight: 600;
}

main {
  padding: 8em 0 0;
  position: relative;
  /* background: url(../images/bg_main.jpg) no-repeat;
  background-position: 0em -12em; */
}

/* main::before {
  content: "";
  display: block;
  background: url(../images/bg_main_upper.jpg) no-repeat;
  position: absolute;
  width: 100%;
  aspect-ratio: 4 / 1;
  top: 0;
  background-size: contain;
} */

h1 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  background: rgba(255, 255, 255, 0.75);
  max-width: 740px;
  margin: 2em auto;
}

h1 img {
  display: block;
  padding: 2em;
  filter: drop-shadow(0.25em 0.25em 0 #fff);
}

.about {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 999;
}

.about > div {
  text-align: center;
  background: rgba(255, 255, 255, 0.9);
  padding: 2em;
  border-radius: 2em;
  line-height: 4em;
  margin: 0 2em;
}

.about p {
  font-size: 1.8em;
  font-weight: 600;
  color: #0052a4;
  filter: drop-shadow(0.1em 0.1em 0 #ccc);
}

.container {
  max-width: 1366px;
  margin: 0 auto;
  padding: 8em 0;
}

.sp {
  display: none;
}

section {
  position: relative;
}

section::before {
  content: "";
  width: 12em;
  height: 12em;
  border-radius: 50%;
  /* border-top: 10px solid #60cfe2;
  border-left: 50px solid #60cfe2;
  border-right: 50px solid transparent;
  border-bottom: 10px solid transparent; */
  position: absolute;
  opacity: .5;
}

section:nth-of-type(odd)::before {
  background: rgb(96,207,226);
  background: linear-gradient(135deg, rgba(96,207,226,1) 25%, rgba(255,185,72,1) 75%);
  left: -6em;
  top: -6em;
}

section:nth-of-type(even)::before {
  background: rgb(255,185,72,1);
  background: linear-gradient(45deg, rgba(96,207,226,1) 25%, rgba(255,185,72,1) 75%);
  right: -6em;
  top: -6em;
}

#hero {
  padding: 0 0 6em;
  position: relative;
  /* height: 100vh; */
}

#hero::before,
#hero::after,
#navi::before,
#navi::after {
  content: none;
}

#hero::before {
  content: "";
  display: block;
  background: url(../images/bg_main_upper.jpg) no-repeat;
  background-size: contain;
  position: absolute;
  top: -10em;
  left: auto;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 1;
  opacity: 1;
  border-radius: 0;
}

#hero::after {
  content: "";
  display: block;
  background: url(../images/bg_main_lower.jpg) no-repeat;
  background-size: contain;
  position: absolute;
  top: auto;
  left: auto;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 1;
  opacity: 1;
  border-radius: 0;
  bottom: 0;
}

#sponsor,
#media {
  background: #f9fafb;
}

.heading {

}

h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  font-weight: 600;
  color: #FF6A00;
}

h2 img {
  width: 36rem;
}

h2 img.icon {
  width: 9rem;
  margin: 0 0.5em 0 0;
}

.heading p {
  text-align: center;
  margin: 1.5rem 0 0;
  font-size: 2.4rem;
  font-weight: 600;
  color: #60cfe2;
}

#navi ul,
#sponsor ul,
#partner ul,
#media ul,
#news-weather ul {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 1em 2em 2em;
  gap: 1em
}

#sponsor ul::before {
  content: "";
  display: block;
  width: 32%;
  order: 1;
}

#sponsor ul::after {
  content: "";
  display: block;
  width: 32%;
  order: 1;
}

#news-weather ul:nth-of-type(2) {
  justify-content: center;
  border-top: 0.2rem dashed #0052a4;
  margin: 2em 0 0;
}

#navi li,
#sponsor li,
#partner li,
#media li,
#news-weather li {
  width: 32%;
  margin: 1em 0 0;
}

#news-weather ul:nth-of-type(2) li {
  width: calc(50% - 0.5em);
  display: block;
  border-radius: 1em;
  border: 0.2rem solid #e5e7eb;
  overflow: hidden;
}

#navi li a,
#sponsor li a,
#partner li a,
#media li a,
#news-weather li a {
  display: block;
  border-radius: 1em;
  border: 0.2rem solid #e5e7eb;
  overflow: hidden;
  color: #444;
  background: #fff;
}

#sponsor li p:nth-of-type(1) {
  padding: 1em 2em;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 12em;
}

#navi li p:nth-of-type(1) img,
#partner li p:nth-of-type(1) img,
#media li p:nth-of-type(1) img,
#news-weather li p:nth-of-type(1) img {
  object-fit: contain;
  aspect-ratio: 16 / 9;
  width: 100%;
}

#sponsor li p:nth-of-type(1) img {
  width: auto;
  max-height: 10em;
}

#sponsor .rule {
  padding: 0 3rem 3rem;
  text-align: right;
  font-size: 1.2em;
}

#navi li p:nth-of-type(2),
#partner li p:nth-of-type(2),
#media li p:nth-of-type(2),
#news-weather li p:nth-of-type(2) {
  display: flex;
  align-items: center;
  padding: 1.5rem 1.5rem 0;
  font-weight: 500;
}

#navi li p:nth-of-type(2) img,
#partner li p:nth-of-type(2) img,
#media li p:nth-of-type(2) img,
#news-weather li p:nth-of-type(2) img {
  width: 1.2em;
  margin: 0 0.25em 0 0;
}

#navi li p:nth-of-type(3),
#sponsor li p:nth-of-type(2),
#partner li p:nth-of-type(3),
#media li p:nth-of-type(3),
#news-weather li p:nth-of-type(3) {
  font-size: 1.2em;
  font-weight: 600;
  padding: 0 1.5rem;
  display: -webkit-box;
  overflow: hidden;
  word-break: break-all;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

#news-weather li p:nth-of-type(3) {
  -webkit-line-clamp: 2;
}

#navi li a > span,
#sponsor li a > span,
#partner li a > span,
#media li a > span,
#news-weather li a > span {
  display: block;
  color: #0052a4;
  font-weight: 500;
  padding: 1rem 1.5rem 1.5rem;
}

.more {
  text-align: center;
}

.more a {
  border: 0.2rem solid #0052a4;
  display: inline-block;
  padding: 0.5em 4em;
  font-size: 1.4em;
  border-radius: 0.5em;
  font-weight: 500;
}

.float-haretta {
  position: fixed;
  bottom: 6em;
  right: 2em;
  width: 12rem;
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  transform: translateY(4em);
}

.float-haretta.show {
  opacity: 1;
  transform: translateY(0);
}

.float-haretta.bounce {
  animation: bounce 2s infinite;
}

.float-haretta a {
  display: block;
  text-align: center;
  color: #000;
  font-weight: 500;
}

.float-haretta a span {
  display: inline-block;
  background: rgba(255, 255, 255, 0.75);
  padding: 0.25em 1em;
  margin: 0.5em 0 0;
  border-radius: 100vh;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-1em);
  }
  60% {
    transform: translateY(-0.5em);
  }
}

.bousai_emergency a {
  color: #ffffff !important;
}

/***** 2023/09/04 Youtube対応 *****/
.bousai .index_body .article .article-video {
  width: 100%;
  aspect-ratio: 16 / 9;
}
.bousai .index_body .article .article-video iframe {
  width: 100%;
  height: 100%;
}

.pre-txt {
  text-align: center;
  font-size: 1.8em;
  margin: 3rem 0 0;
  /* font-weight: 500; */
}

footer {
  background: #0052a4;
  color: #fff;
  text-align: center;
  padding: 1em;
}

@media screen and (min-width: 900px) {

  /*
  .contentIn {
    max-width: 100% !important;
  }
  */
  .bousai_emergency {
    background-color: #ff0000;
    text-align: center;
    font-size: 36px;
    margin: 30px 0 0;
    padding: 10px 0;
  }
  .bousai {
    font-size: 16px;
  }
  .bousai .sp {
    display: none;
  }
  .bousai .header-img {
    width: 720px;
    margin: 30px auto;
  }
  .bousai .header-img img {
    margin: 0 0 -8px;
  }
  .bousai .border {
    border-top: 2px solid #005ca2;
    border-bottom: 2px solid #005ca2;
    margin: 0 0 15px;
  }
  .bousai .border_index {
    border-top: 2px solid #005ca2;
    border-bottom: 2px solid #005ca2;
    margin: 0 0 30px;
  }
  .bousai ul.local_menu {
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
  }
  .bousai ul.local_menu li {
    width: 20%;
    padding: 15px 0;
    text-align: center;
    font-size: 18px;
  }
  .bousai .pankuzu {
    width: 1200px;
    margin: 0 auto 15px;
    font-size: 14px;
  }
  .bousai .pankuzu ul {
    display: flex;
    align-items: center;
  }
  .bousai .pankuzu ul li {
    padding: 0 0.5em;
  }
  .bousai .pankuzu ul li a {
    /* position: relative; */
    text-decoration: underline;
  }
  /*
  .bousai .pankuzu ul li a:before {
    position: absolute;
    content: ">";
    color: #808080;
    top: 2px;
    right: -12px;
  }
  */

  .bnr_dig {
    max-width: 720px;
    margin: 4em auto 2em;
  }

  .bousai .bousaiBox {
    overflow: hidden;
    width: 1280px;
    margin: 0 auto;
  }
  .bousai #contentsBox {
    max-width: 1200px;
    display: flex;
    margin: 0 auto;
    justify-content: space-around;
  }
  .bousai #sideBox {
    width: 320px;
  }
  .bousai .index_body {
    width: 900px;
    margin: 0 30px 0 0;
    /* border-right: 1px solid #dddddd; */
    /* padding: 0 30px 0 0; */
  }
  .bousai .index_body img {
    margin: 0 0 -8px;
  }
  .bousai .flex {
    display: flex;
    flex-wrap: wrap;
    /* justify-content: center; */
  }
  .bousai .index_body .flex .box {
    width: 419px;
    /* padding: 10px 20px; */
    /* border-right: 1px solid #E5E5E5; */
  }
  .bousai .index_body .flex .tokushu,
  .bousai .index_body .flex .prog-info {
    padding: 10px 20px;
    border-right: 1px solid #E5E5E5;
  }
  .bousai .index_body .flex .partner {
    padding: 10px 0 10px 20px;
  }
  .bousai .index_body .flex .prog-info {
    margin: 50px 0 0;
  }
  /*
  .bousai .index_body .flex .tokushu {
    border-right: 1px solid #E5E5E5;
  }
  */
  .bousai .index_body .flex .box .head {
    font-size: 24px;
    margin: 0 0 15px;
    /* padding: 0 0 5px; */
    color: #005ca2;
    font-weight: bold;
    padding: 0 0 0.25em;
  }
  .bousai .index_body .flex .box .head img.icon {
    width: 36px;
    padding: 0 0.25em 0;
  }
  .bousai .index_body .flex .tokushu .head {
    border-bottom: 4px solid #FC0012;
  }
  /*
  .bousai .index_body .flex .point .head {
    border-bottom: 5px solid #a3005c;
  }
  */
  .bousai .index_body .flex .partner .head {
    border-bottom: 4px solid #FC0090;
  }
  .bousai .index_body .flex .prog-info .head {
    border-bottom: 4px solid #0090FC;
  }
  .bousai .index_body .flex .box .inner {
    /* text-align: center; */
    /* padding: 0 10px; */
  }
  .bousai .index_body .flex .box .inner .article_thumbnail {
    text-align: center;
  }
  .bousai .index_body .flex .box .inner .article_thumbnail a img {
    max-height: 224px !important;
  }
  .bousai .index_body .flex .box .inner .article_title {
    margin: 10px 0 0;
    font-size: 21px;
  }
  .bousai .index_body .flex .tokushu .inner .article_title,
  .bousai .index_body .flex .partner .inner .article_title {
    height: 70px;
    line-height: 1.5em;
  }
  .bousai .index_body .flex .box .inner .article_title a {
    color: #000000 !important;
    font-weight: 500;
    display: -webkit-box;
    overflow: hidden;
    word-break: break-all;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
  .bousai .index_body .flex .box .inner .article_date {
    text-align: right;
    color: #999999;
  }
  .bousai .index_body .flex .box .inner .article_date img.icon_clock {
    width: 18px;
    vertical-align: middle;
    padding: 0 0 5px 0;
  }
  .bousai .index_body .flex .box .inner .article_date span {
    vertical-align: middle;
  }
  .bousai .index_body .flex .box .archive {
    /* padding: 10px; */
    margin: 15px 0 0;
  }
  .bousai .index_body .flex .box .archive ul li.line {
    margin: 0 0 20px;
    display: flex;
    align-items: center;
  }

  .bousai .index_body .flex .box .archive ul li.line a {
    /* display: flex; */
    color: #000000 !important;
    display: -webkit-box;
    overflow: hidden;
    word-break: break-all;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }

  .bousai .index_body .flex .box .archive ul li.line .archive_thumbnail {
    width: 160px;
    margin: 0 15px 0 0;
    text-align: center;
  }
  .bousai .index_body .flex .box .archive ul li.line .archive_thumbnail img {
    height: 90px !important;
  }
  .bousai .index_body .flex .box .archive ul li.line .archive_detail {
    width: 244px;
    /* padding: 5px 0; */
    font-size: 14px;
  }
  .bousai .index_body .flex .box .archive ul li.line .archive_detail img.icon_clock {
    width: 16px;
    vertical-align: middle;
    padding: 0 3px 10px 0;
  }

  .bousai .index_body .flex .box .archive ul li.line .archive_detail .date {
    font-size: 12px;
    color: #999999;
    display: block;
    margin: 0.5em 0 0;
  }

  .bousai .index_body .flex .box .lead-more {
    text-align: center;
    margin: 30px 0 0;
  }
  .bousai .index_body .flex .box .lead-more a {
    color: #ffffff !important;
    padding: 10px 50px;
    border-radius: 100vh;
    display: inline-block;
  }
  .bousai .index_body .flex .tokushu .lead-more a {
    background-color: #FC0012;
  }
  /*
  .bousai .index_body .flex .point .lead-more a {
    background-color: #a3005c;
  }
  */
  .bousai .index_body .flex .partner .lead-more a {
    background-color: #FC0090;
  }
  .bousai .index_body .flex .prog-info .lead-more a {
    background-color: #0090FC;
  }
  .bousai #sideBox .menuBox_tv_news {
    padding: 15px;
    background: #f2f2f2;
    margin: 15px 0;
  }
  .bousai #sideBox .menuBox_tv_news ul.icon_arrow03 {
    font-size: 14px;
  }
  .bousai #sideBox .menuBox_tv_news h2.tit_specs_tv_newsken span:not(.icon) {
    margin-left: 84px;
    font-size: 12px;
    padding-left: 12px;
  }
  .bousai #sideBox .menuBox_tv_news h2.tit_specs_tv_newsken span a {
    vertical-align: text-bottom;
  }
  .bousai #sideBox .menuBox_tv_news ul {
    margin: 0 5px;
  }

  /***** ▼▼▼▼▼ 自治体防災マップ一覧CSS ▼▼▼▼▼ *****/
  .bousai .map_img {
    max-width: 1200px;
    margin: 0 auto;
  }
  .bousai .map_img .guide {
    font-size: 18px;
    margin: 0 0 10px;
  }
  .bousai .area_select {
    display: flex;
    margin: 30px 0 0;
  }
  .bousai .area_select li {
    width: 20%;
    text-align: center;
    padding: 5px 0;
    font-size: 18px;
    border-top: 2px solid #d8a556;
    border-bottom: 2px solid #d8a556;
    border-left: 2px solid #d8a556;
  }
  .bousai .area_select li:nth-of-type(odd) {
    background-color: #84e6e9;
  }
  .bousai .area_select li:nth-of-type(even) {
    background-color: #bdeae7;
  }
  .bousai .area_select li:nth-of-type(5) {
    border: 2px solid #d8a556;
  }
  .bousai .area_select li a {
    color: #000000 !important;
    display: block;
  }
  .bousai .index_body .map_link .block {
    padding: 30px 0;
    border-bottom: 2px dashed #000000;
  }
  .bousai .index_body .map_link .block .block-title {
    font-size: 24px;
    /* margin: 0 0 10px; */
  }
  .bousai .index_body .map_link .block .area {
    padding: 20px 0;
  }
  .bousai .index_body .map_link .block .area .area-title {
    font-size: 18px;
  }
  .bousai .index_body .map_link .block .area ul {
    padding: 15px;
    border: 1px solid #000000;
  }
  .bousai .index_body .map_link .block .area ul li {
    margin: 0 0 10px;
  }
  .bousai .index_body .map_link .block .area ul li:last-child {
    margin: 0;
  }
  .bousai .index_body .map_link .block .area ul li a {
    color: #000000 !important;
  }
  /***** ▲▲▲▲▲ 自治体防災マップ一覧CSS ▲▲▲▲▲ *****/

  /***** ▼▼▼▼▼ カテゴリ別メインCSS ▼▼▼▼▼ *****/
  .bousai .category-title {
    width: 1280px;
    margin: 0 auto 30px;
  }
  .bousai .category-title p {
    padding: 10px 20px;
    background: #f4f4f4;
    font-size: 21px;
    color: #005ca2;
    font-weight: bold;
  }
  .bousai .category-title p img {
    vertical-align: middle;
    width: 36px;
    padding: 0 0.5em 0 0;
  }
  .bousai .category-title p span {
    vertical-align: middle;
  }
  .bousai .category-title p.navi-ttl {
    border-left: 10px double #FC0012;
  }
  .bousai .category-title p.partner-ttl {
    border-left: 10px double #FC0090;
  }
  .bousai .category-title p.common-ttl {
    border-left: 10px double #0090FC;
  }
  .bousai .index_body .category .articleContent {
    /* padding: 0 10px 20px; */
  }
  .bousai .index_body .category ul.flex {
    display: flex;
    /* align-items: center; */
  }
  .bousai .index_body .category ul.flex .left {
    width: 400px;
    margin: 0 30px 0 0;
  }
  .bousai .index_body .category ul.flex .right {
    width: 470px;
    padding: 15px 0 0;
  }
  .bousai .index_body .category ul.flex .right .page-title {
    font-size: 21px;
  }
  .bousai .index_body .category ul.flex .right .page-title a {
    font-weight: 500;
    /* color: #000000 !important; */
  }
  .bousai .index_body .category ul.flex .right .page-date {
    color: #999999;
    font-size: 14px;
  }
  .bousai .index_body .category ul.flex .right .page-date img {
    width: 18px;
    padding: 0 0.25em 0 0;
  }
  .bousai .index_body .category ul.flex .right .page-date span {
    vertical-align: sub;
  }
  .bousai .index_body .category ul.flex .right .page-text {
    font-size: 18px;
    margin: 5px 0 0;
  }
  .bousai .index_body .category .blogArchive a.readmore {
    margin: 0 10px 0 0;
  }
  /***** ▲▲▲▲▲ カテゴリ別メインCSS ▲▲▲▲▲ *****/

  /***** ▼▼▼▼▼ 記事ページCSS ▼▼▼▼▼ *****/
  .bousai .index_body .article {
    /* border-right: 1px solid #E5E5E5; */
    font-size: 18px;
    /* width: 800px;*/
    padding: 15px 0;
  }
  .bousai .index_body .article .article-title {
    font-size: 27px;
    border-left: 15px solid #005ca2;
    margin: 0 0 5px;
    padding: 0 0 0 0.5em;
  }
  .bousai .index_body .navi .article-title {
    font-size: 27px;
    border-left: 15px solid #FC0012;
    margin: 0 0 5px;
    padding: 0 0 0 0.5em;
  }
  .bousai .index_body .partner .article-title {
    font-size: 27px;
    border-left: 15px solid #FC0090;
    margin: 0 0 5px;
    padding: 0 0 0 0.5em;
    font-weight: 500;
  }
  .bousai .index_body .prog-info .article-title {
    font-size: 27px;
    border-left: 15px solid #0090FC;
    margin: 0 0 5px;
    padding: 0 0 0 0.5em;
  }
  .bousai .index_body .article .article-date {
    color: #999999;
    text-align: right;
  }
  .bousai .index_body .article .article-date .icon_clock {
    width: 24px;
    padding: 0 2px 3px 0;
  }
  .bousai .index_body .article .article-video {
    margin: 15px 0 30px;
    text-align: center;
  }
  .bousai .index_body .article .article-contents {
    margin: 15px 0;
    padding: 30px 15px;
    border-top: 2px dashed #005da3;
    border-bottom: 2px dashed #005da3;
    line-height: 1.75em;
  }
  .bousai .index_body .article .article-contents img {
    margin: 15px 0;
  }
  .bousai .index_body .article .article-contents .pdf_link {
    margin: 30px 0 15px;
    text-align: center;
  }
  .bousai .index_body .article .article-contents .pdf_link a {
    background-color: #005ca2;
    color: #ffffff !important;
    padding: 15px 30px;
    border-radius: 100vh;
    display: inline-block;
  }
  .bousai .index_body ul.prev-next {
    display: flex;
    justify-content: center;
    margin: 0 30px;
  }
  .bousai .index_body ul.prev-next li {
    margin: 0px 30px;
    min-height: 36px;
  }
  .bousai .index_body ul.prev-next li img {
    width: 36px;
    vertical-align: sub;
    padding: 0 0.5em;
  }
  /***** ▲▲▲▲▲ 記事ページCSS ▲▲▲▲▲ *****/

  /***** ▼▼▼▼▼ ウェブページCSS ▼▼▼▼▼ *****/

  /***** ▲▲▲▲▲ ウェブページCSS ▲▲▲▲▲ *****/

}

@media screen and (max-width: 899px) {

  body {
    font-size: 1.2rem;
    min-width: auto;
  }

  .sp {
    display: block;
  }

  header {
    height: 6em;
  }

  header > div img {
    max-height: 4.5em;
  }

  main {
    padding: 6em 0 0;
  }

  #hero::before {
    top: -2em;
    background-position: top center;
  }

  h1 {
    max-width: 75%;
  }

  h1 img {
    padding: 1em;
    width: 75%;
  }

  /* .about {
    top: 10em;
    padding: 0 0 6em;
  } */

  .about > div {
    padding: 1em;
    border-radius: 1em;
    line-height: 3em;
    margin: 0 1em;
  }

  .about p {
    font-size: 1.4em;
  }

  .container {
    padding: 4em 0;
    margin: 0 1em;
  }

  h2 img {
    width: 24rem;
  }

  .heading p {
    font-size: 1.6rem;
  }

  #sponsor ul::before,
  #sponsor ul::after {
    width: auto;
  }

  #navi li, #sponsor li, #partner li, #media li, #news-weather li, #news-weather ul:nth-of-type(2) li {
    width: auto;
  }

  h2 {
    display: block;
    text-align: center;
    font-size: 1.8em;
  }

  h2 img.icon {
    width: 8rem;
    margin: 0 auto 1.2rem;
    display: block;
}

#news-weather .container {
  padding: 8em 0 4em;
}

.bnr_dig {
  width: 90%;
  margin: 2em auto 0;
}

.float-haretta {
  width: 6em;
}

  /***** ▼▼▼▼▼ JNN災害情報リンク ▼▼▼▼▼ *****/
  .apology {
  	background: #d61200;
  	padding: 5px;
  	text-align: center;
  	font-size: 14px;
  }

  .apology a {
  	font-weight: bold;
  	color: #ffffff;
  }

  .apology dt {
  	background: #d61200;
  	color: #fff;
  	padding: 6px 8px;
  }

  .apology dd {
  	color: #d61200;
  	padding: 8px;
  	font-size: 1.1em;
  }
  /***** ▲▲▲▲▲ JNN災害情報リンク ▲▲▲▲▲ *****/

  .bousai_emergency {
    background-color: #ff0000;
    text-align: center;
    font-size: 5.5vw;
    padding: 5px 0;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    text-align: center;
    position: fixed; /* 全画面表示のために追加 */
    top: 0;           /* 全画面表示のために追加 */
    left: 0;          /* 全画面表示のために追加 */
    /* height: 100vh;    全画面表示のために追加 */
    background: rgba(255,255,255,0.75); /* 全画面表示のために追加 */
    z-index: 10;      /* 他の要素より前面に表示 */
  }

  .nav-menu.active {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 4em 0 2em;
  }

  .nav-item {
    width: 100%;
    padding: 0 0 2em;
  }

  .hamburger {
    display: flex;
    position: relative;
    z-index: 999;
  }

  /* ハンバーガーメニューがアクティブになった際のスタイル */
  .hamburger.active .line:nth-child(1) {
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    left: 0;
    margin: auto;
  }

  .hamburger.active .line:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active .line:nth-child(3) {
    transform: rotate(-45deg);
    position: absolute;
    top: 0;
    right: 0;
    margin: auto;
  }

  .bousai {
    padding: 10px;
    font-size: 4.0vw;
  }
  .bousai .pc {
    display: none;
  }
  .bousai img {
    /* margin: 0 0 -4px; */
    vertical-align: bottom;
  }
  .bousai .header-img {
    text-align: center;
  }
  .bousai .header-img img {
    width: 90%;
  }
  /*
  .bousai .border {
    border-top: 2px solid #005ca2;
    border-bottom: 2px solid #005ca2;
    margin: 10px 0 15px;
  }
  */
  .bousai ul.local_menu {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin: 15px 0;
    border-top: solid 1px #005ca2;
    border-bottom: solid 1px#005ca2;
  }
  .bousai ul.local_menu li {
    /* width: 33%; */
    padding: 0.5em 0;
    text-align: center;
    font-size: 3.5vw;
  }
  .bousai ul.local_menu li:nth-of-type(1),
  .bousai ul.local_menu li:nth-of-type(2) {
    width: 25%;
  }
  .bousai ul.local_menu li:nth-of-type(3),
  .bousai ul.local_menu li:nth-of-type(4),
  .bousai ul.local_menu li:nth-of-type(5) {
    width: 50%;
  }

  .bousai .index_body .flex .box {
    padding: 0 0 20px;
    margin: 0 0 20px;
  }
  .bousai .index_body .flex .box .head {
    font-size: 5.5vw;
    margin: 0 0 10px;
    padding: 0 0 5px;
    color: #005ca2;
    font-weight: 600;
  }
  .bousai .index_body .flex .tokushu .head {
    border-bottom: 3px solid #FC0012;
  }
  .bousai .index_body .flex .partner .head {
    border-bottom: 3px solid #FC0090;
  }
  .bousai .index_body .flex .prog-info .head {
    border-bottom: 3px solid #0090FC;
  }
  .bousai .index_body .flex .box .head img.icon {
    width: 7.0vw;
    padding: 0 0.25em 0;
}
  .bousai .index_body .flex .box .inner {
    /* text-align: center; */
    border-bottom: 1px solid #E5E5E5;
    padding: 0 0 10px;
  }
  .bousai .index_body .flex .box .inner .article_thumbnail {
    padding: 0 5px;
  }
  .bousai .index_body .flex .box .inner .article_title {
    margin: 5px 5px 0;
    font-size: 5.0vw;
  }
  .bousai .index_body .flex .box .inner .article_title a {
    color: #000000 !important;
    font-weight: 500;
  }
  .bousai .index_body .flex .box .inner .article_date {
    text-align: right;
    color: #999999;
    margin: 5px;
  }

  .bousai .index_body .flex .box .inner .article_date img.icon_clock {
    width: 5.5vw;
    vertical-align: middle;
  }

  .bousai .index_body .flex .box .inner .article_date span {
    vertical-align: middle;
  }
  .bousai .index_body .flex .box .archive {
    padding: 0 5px;
    margin: 15px 0 0;
  }
  .bousai .index_body .flex .box .archive ul li.line {
    display: flex;
    align-items: center;
    padding: 0 0 10px;
    border-bottom: 1px solid #E5E5E5;
    margin: 0 0 15px;
  }
  .bousai .index_body .flex .box .archive ul li.line:nth-of-type(2) {

  }
  .bousai .index_body .flex .box .archive ul li.line .archive_thumbnail {
    width: 40%;
    margin: 0 5% 0 0;
  }
  .bousai .index_body .flex .box .archive ul li.line .archive_detail {
    width: 55%;
    padding: 10px 0;
    font-size: 3.8vw;
  }

  .bousai .index_body .flex .box .archive ul li.line .archive_detail a {
    color: #000000 !important;
    display: -webkit-box;
    overflow: hidden;
    word-break: break-all;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }

  .bousai .index_body .flex .box .archive ul li.line .archive_detail img.icon_clock {
    width: 4.2vw;
    vertical-align: middle;
    margin: 0 0.2em 0.2em 0;
  }

  .bousai .index_body .flex .box .archive ul li.line .archive_detail .date {
    font-size: 3.5vw;
    color: #999999;
    padding: 0.5em 0 0;
    display: block;
  }

  .bousai .index_body .flex .box .lead-more {
    text-align: center;
    margin: 15px 0 0;
  }
  .bousai .index_body .flex .box .lead-more a {
    color: #ffffff !important;
    padding: 10px 50px;
    border-radius: 100vh;
    display: inline-block;
  }
  .bousai .index_body .flex .tokushu .lead-more a {
    background-color: #FC0012;
  }
  .bousai .index_body .flex .partner .lead-more a {
    background-color: #FC0090;
  }
  .bousai .index_body .flex .prog-info .lead-more a {
    background-color: #0090FC;
  }
  .bousai .menuBox_tv_news {
    color: #0052a5;
    margin: 0 0 15px !important;
    background: #f2f2f2 !important;
  }
  .bousai .menuBox_tv_news a {
    color: #0052a5;
  }
  .bousai .menuBox_tv_news .tit_specs_tv_newsken {
    font-size: 6.0vw;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    border-bottom: 2px solid #0052a5;
    padding: 0 5px;
    margin: 0 0 10px;
  }
  .bousai .menuBox_tv_news .tit_specs_tv_newsken .icon img {
    width: 6.5vw;
    padding: 0 5px 0 0;
  }
  .bousai .menuBox_tv_news .tit_specs_tv_newsken .link_news {
    font-size: 3.8vw;
  }
  .bousai .menuBox_tv_news .icon_arrow03 {
    padding: 0 5px;
  }
  .bousai .menuBox_tv_news .icon_arrow03 li {
    margin: 5px;
  }
  .bousai .menuBox_tv_news .icon_arrow03 li span {
    padding: 0 5px 0 0;
    font-size: 3.5vw;
  }
  .bousai .menuBox_tv_news .icon_arrow03 li a {
    display: flex;
  }
  .bousai .sideWeather {
    margin: 0 0 20px;
    padding: 10px;
    background-color: #f2f2f2;
  }
  .bousai .sideWeather .tit_specs01 {
    font-size: 6.0vw;
    margin: 0 0 10px;
    color: #0052a5;
  }
  .bousai .sideWeather .tit_specs01 img {
    width: 6.5vw;
    padding: 0 5px 0 0;
  }
  .bousai .sideWeather a {
    margin: 0 0 10px;
    display: block;
  }

  /***** ▼▼▼▼▼ 自治体防災マップ一覧CSS ▼▼▼▼▼ *****/
  .bousai .map_img {
    max-width: 900px;
    margin: 0 auto;
  }
  .bousai .map_img .guide {
    font-size: 3.8vw;
    margin: 0 10px 10px;
  }
  .bousai .area_select {
    display: flex;
    margin: 15px 0 0;
  }
  .bousai .area_select li {
    width: 20%;
    text-align: center;
    padding: 5px 0;
    font-size: 3.5vw;
    border-top: 2px solid #d8a556;
    border-bottom: 2px solid #d8a556;
    border-left: 2px solid #d8a556;
  }
  .bousai .area_select li:nth-of-type(odd) {
    background-color: #84e6e9;
  }
  .bousai .area_select li:nth-of-type(even) {
    background-color: #bdeae7;
  }
  .bousai .area_select li:nth-of-type(5) {
    border: 2px solid #d8a556;
  }
  .bousai .area_select li a {
    color: #000000 !important;
    display: block;
  }
  .bousai .index_body .map_link {
    margin: 0 0 15px;
  }
  .bousai .index_body .map_link .block {
    padding: 20px 0 30px;
    border-bottom: 2px dashed #000000;
  }
  .bousai .index_body .map_link .block .block-title {
    font-size: 6.0vw;
  }
  .bousai .index_body .map_link .block .area {
    padding: 15px 0 0;
  }
  .bousai .index_body .map_link .block .area .area-title {
    font-size: 4.5vw;
    margin: 0 0 5px;
  }
  .bousai .index_body .map_link .block .area ul {
    padding: 10px;
    border: 1px solid #000000;
  }
  .bousai .index_body .map_link .block .area ul li {
    margin: 0 0 10px;
  }
  .bousai .index_body .map_link .block .area ul li:last-child {
    margin: 0;
  }
  .bousai .index_body .map_link .block .area ul li a {
    color: #000000 !important;
  }
  /***** ▲▲▲▲▲ 自治体防災マップ一覧CSS ▲▲▲▲▲ *****/

  /***** ▼▼▼▼▼ カテゴリ別メインCSS ▼▼▼▼▼ *****/
  .bousai .category-title {

  }
  .bousai .category-title p {
    margin: 0 0 15px;
    padding: 5px 10px;
    background: #f4f4f4;
    font-size: 5.0vw;
    color: #005ca2;
    font-weight: bold;
  }
  .bousai .category-title p img {
    vertical-align: sub;
    width: 7.5vw;
    padding: 0 0.25em 0 0;
  }
  .bousai .category-title p span {
    vertical-align: middle;
  }
  .bousai .category-title p.navi-ttl {
    border-left: 10px double #FC0012;
  }
  .bousai .category-title p.partner-ttl {
    border-left: 10px double #FC0090;
  }
  .bousai .category-title p.common-ttl {
    border-left: 10px double #0090FC;
  }
  .bousai .index_body .category .articleContent {
    margin: 15px 0;
    padding: 1em 0.5em;
    border-bottom: 1px solid #999999;
  }
  .bousai .index_body .category ul.flex {
    /* display: flex; */
    /* align-items: center; */
  }
  .bousai .index_body .category ul.flex .left {
    /* margin: 0 20px 0 0; */
  }
  .bousai .index_body .category ul.flex .right {
    padding: 0.5em 0 0;
  }
  .bousai .index_body .category ul.flex .right .page-title {
    font-size: 4.5vw;
  }
  .bousai .index_body .category ul.flex .right .page-title a {
    font-weight: 500;
    /* color: #000000 !important; */
  }
  .bousai .index_body .category ul.flex .right .page-date {
    color: #999999;
    font-size: 3.8vw;
  }
  .bousai .index_body .category ul.flex .right .page-date img {
    width: 4.2vw;
    padding: 0 0.25em 0 0;
    vertical-align: middle;
  }
  .bousai .index_body .category ul.flex .right .page-date span {
    vertical-align: sub;
  }
  .bousai .index_body .category ul.flex .right .page-text {
    font-size: 4.0vw;
    margin: 5px 0 0;
  }
  .bousai .index_body .category .articleContent .readmoreBtn {
    text-align: right;
  }
  .bousai .index_body .category .articleContent a.readmore {
    color: #005ca2
  }
  /***** ▲▲▲▲▲ カテゴリ別メインCSS ▲▲▲▲▲ *****/

  /***** ▼▼▼▼▼ 記事ページCSS ▼▼▼▼▼ *****/
  .bousai .index_body .article {
    /* border-right: 1px solid #E5E5E5; */
    font-size: 4.0vw;
    padding: 0 5px;
  }
  .bousai .index_body .article .article-title {
    font-size: 5.5vw;
    border-left: 5px solid #005ca2;
    margin: 0 0 5px;
    padding: 0 0 0 0.5em;
  }
  .bousai .index_body .navi .article-title {
    font-size: 5.5vw;
    border-left: 5px solid #FC0012;
    margin: 0 0 5px;
    padding: 0 0 0 0.5em;
  }
  .bousai .index_body .partner .article-title {
    font-size: 5.5vw;
    border-left: 5px solid #FC0090;
    margin: 0 0 5px;
    padding: 0 0 0 0.5em;
    font-weight: 500;
  }
  .bousai .index_body .prog-info .article-title {
    font-size: 5.5vw;
    border-left: 5px solid #0090FC;
    margin: 0 0 5px;
    padding: 0 0 0 0.5em;
  }
  .bousai .index_body .article .article-date {
    color: #999999;
    text-align: right;
    padding: 0 0.5em 0 0;
  }
  .bousai .index_body .article .article-date .icon_clock {
    width: 5.0vw;
  }
  .bousai .index_body .article .article-video {
    margin: 15px 0;
    text-align: center;
  }
  .bousai .index_body .article .article-contents {
    margin: 15px 0;
    padding: 15px;
    border-top: 2px dashed #005da3;
    border-bottom: 2px dashed #005da3;
    line-height: 1.75em;
  }
  .bousai .index_body .article .article-contents img {
    margin: 15px 0;
  }
  .bousai .index_body .article .article-contents .pdf_link {
    margin: 30px 0 15px;
    text-align: center;
  }
  .bousai .index_body .article .article-contents .pdf_link a {
    background-color: #005ca2;
    color: #ffffff !important;
    padding: 15px 30px;
    border-radius: 100vh;
    display: inline-block;
  }
  .bousai .index_body ul.prev-next {

  }
  .bousai .index_body ul.prev-next li {
    margin: 0px 15px;
  }
  .bousai .index_body ul.prev-next li:nth-of-type(2) {
    margin: 15px 15px 0;
  }
  .bousai .index_body ul.prev-next li a {
    display: flex;
    align-items: center;
    justify-content: left;
  }
  .bousai .index_body ul.prev-next li:nth-of-type(2) a {
    justify-content: right;
  }
  .bousai .index_body ul.prev-next li img {
    width: 6vw;
    vertical-align: sub;
    padding: 0 0.5em;
  }
  /***** ▲▲▲▲▲ 記事ページCSS ▲▲▲▲▲ *****/

  /***** ▼▼▼▼▼ ウェブページCSS ▼▼▼▼▼ *****/

  /***** ▲▲▲▲▲ ウェブページCSS ▲▲▲▲▲ *****/
}
