@charset "utf-8";
/* CSS Document */
html { touch-action: manipulation;/* ダブルタップの操作禁止 */ }
body {
	margin: 0;
	padding:0;
	font-family: "游ゴシック", "Yu Gothic","sans-serif","Hiragino Kaku Gothic ProN";
  position: relative;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
}
footer {
  margin-top: 20%;
}
/* iOS対策 */
input ,button ,textarea {
  -webkit-appearance: none;
  font-size: 16px;
  color: #000000;
}
input[type="text"] ,
input[type="tel"] ,
input[type="email"] ,
input[type="search"] ,
input[type="password"] ,
textarea {
  width: 100%;
  margin-bottom: 10px;
  padding: 12px;
  background: #FBFBFB;
  border: 1px solid #CCCCCC;
  border-radius: 3px;
  box-sizing: border-box;
}
input[type="date"] {
  padding: 5px;
  background: #FBFBFB;
  border-radius: 5px;
  border: 1px solid #CCCCCC;
}
input[type="date"]::-webkit-date-and-time-value {
  width: 100px;
  height: 20px;
  text-align: left;
}
/* チェックボックスリセット */
input[type="checkbox"]  {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
/* チェックボックスデザイン */
input[type="checkbox"] {
  position: relative;
  padding-left: 30px;
  vertical-align: middle;
  cursor: pointer;
}
input[type="checkbox"]::before,
input[type="checkbox"]::after {
  display: block;
  position: absolute;
  content: "";
}
input[type="checkbox"]::before {
  top: 50%;
  left: 5px;
  width: 20px;
  height: 20px;
  background-color: #FBFBFB;
  border: 1px solid #CCCCCC;
  border-radius: 3px;
  transform: translateY(-50%);
}
input[type="checkbox"]:disabled::before {
  top: 50%;
  left: 5px;
  width: 20px;
  height: 20px;
  background-color: #CCCCCC;
  border: 1px solid #CCCCCC;
  border-radius: 3px;
  transform: translateY(-50%);
}
input[type="checkbox"]::after {
  top: -7px;
  left: 10px;
  width: 11px;
  height: 6px;
  border-bottom: 2px solid #FFFFFF;
  border-left: 2px solid #FFFFFF;
  transform: rotate(-45deg);
  opacity: 0;
}
/* iOS */
::-webkit-full-page-media, :future, :root input[type="checkbox"]::after {
  top: 1px;
  left: 10px;
  width: 11px;
  height: 6px;
  border-bottom: 2px solid #FFFFFF;
  border-left: 2px solid #FFFFFF;
  transform: rotate(-45deg);
  opacity: 0;
}
input[type="checkbox"]:checked::before {
  background-color: #214A99;
  border: 1px solid #214A99;
}
input[type="checkbox"]:checked::after { opacity: 1; }
input[type="checkbox"] + label { margin-left: 10px; }
/* ラジオボタンリセット */
input[type="radio"]  {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
/* ラジオボタンデザイン */
input[type="radio"] {
  position: relative;
  padding-left: 30px;
  vertical-align: middle;
  cursor: pointer;
}
input[type="radio"]::before,
input[type="radio"]::after {
  display: block;
  position: absolute;
  content: "";
}
input[type="radio"]::before {
  top: 50%;
  left: 5px;
  width: 20px;
  height: 20px;
  background-color: #FBFBFB;
  border-radius: 50%;
  border: 1px solid #CCCCCC;
  transform: translateY(-50%);
}
input[type="radio"]::after {
  top: -6px;
  left: 10px;
  width: 10px;
  height: 10px;
  background: #214A99;
  border: 1px solid #214A99;
  border-radius: 50%;
  opacity: 0;
}
/* iOS */
::-webkit-full-page-media, :future, :root input[type="radio"]::after {
  top: 2px;
  left: 10px;
  width: 10px;
  height: 10px;
  background: #214A99;
  border: 1px solid #214A99;
  border-radius: 50%;
  opacity: 0;
}
input[type="radio"]:checked::before { border: 1px solid #214A99; }
input[type="radio"]:checked::after { opacity: 1; }
input[type="radio"] + label { margin-left: 10px; }
/* セレクトボックスデザイン */
.selectbox {
  display: inline-flex;
  align-items: center;
  position: relative;
  width: 100%;
}
.selectbox::after {
  position: absolute;
  right: 15px;
  width: 10px;
  height: 7px;
  background-color: #214A99;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: '';
  pointer-events: none;
}
.selectbox select {
  appearance: none;
  width: 100%;
  padding: 13px calc(12px + 30px) 13px 12px;
  background: #FBFBFB;
  border: 1px solid #CCCCCC;
  border-radius: 3px;
  color: #333333;
  font-size: 1em;
  cursor: pointer;
}
a {
  text-decoration: none;
  color: #214A99;
}
table {
  width: 100%;
  margin: 10px 0 40px 0;
  border-collapse: collapse;
}
table th {
  padding: 10px;
  border-bottom: 1px solid #CCCCCC;
  text-align: left;
  font-weight: normal;
}
table td {
  padding: 10px;
  border-bottom: 1px solid #CCCCCC;
}
/* slick -------------------- */
.slick-dots > li:first-child:last-child {
  display: none;  
}

/* loader -------------------- */
#loader_area { display: none; }
#loader_black_box {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0.8;
  z-index: 1000;
}
#loader {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 2000;
}
.loading-bar {
  display: inline-block;
  width: 4px;
  height: 20px;
  border-radius: 4px;
  animation: loading 1s ease-in-out infinite;
}
.loading-bar {
  background-color: #999999;
  animation-delay: 0;
}
.loading-bar:nth-child(2) {
  background-color: #CCCCCC;
  animation-delay: .075s;
}
.loading-bar:nth-child(3) {
  background-color: #ffffff;
  animation-delay: .15s;
}
.loading-bar:nth-child(4) {
  background-color: #CCCCCC;
  animation-delay: .255s;
}
.loading-bar:nth-child(5) {
  background-color: #999999;
  animation-delay: .30s;
}
@keyframes loading {
  0% { transform: scale(1); }
  20% { transform: scale(1, 2.2); }
  40% { transform: scale(1); }
}
#loader p {
  margin: 10px 0;
  text-align: center;
  font-size: 70%;
  color: #ffffff;
}
/* error --------------------*/
#error #error_area {
  width:100%;
  text-align: center;
}


#error #contents #error_area h2 {
  margin: 0 ;
  background: none;
  border-bottom: 1px solid #1A3688;
  padding: 10px 10px 10px 20px;
  font-size:150%;
  color: #1A3688;
}
#error #error_area img {
  width:80%
  ;margin:20px;
}
/* top --------------------*/
#top {
  padding-bottom: 50px;
  background: url("/img/front/unikou_img.png") repeat-x left bottom;
  background-size: 30%;
}
#top header {
  display: block;
  height: auto!important;
  padding: 15px 10px;
  background: none;
  color: #000000;
}
#top header h1 {
  display: flex;
  align-items: flex-start;
  width: 100%;
  margin: 0;
  text-align: left;
  line-height: 0;
}
#top header h1 img:last-child {
  margin-left: 10px;
  width: 30%;
}
#top #top_topics {
  overflow-x: scroll;
  height: 250px;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
}
#top_topics ul {
  display: inline-flex;
  overflow-x: auto;
  margin: 0 10px;
  padding: 0;
  list-style: none;
}
#top_topics ul li {
  float: left;
  width: 200px;
  padding-right: 10px;
}
#top_topics ul li:last-child { padding-right: 0; }
#top_topics ul li div {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
}
#top_topics ul li div img {
  max-width: 100%;
  max-height: 100%;
}
#top_topics ul li p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin: 5px 0;
  line-height: 1.2;
}
#top_topics p.non_topics {
  margin: 0;
  padding: 10px;
}
/* リンクカテゴリー */
#top_menu_2col {
  display: grid;
  grid-template-columns: 2fr 1fr;
  padding: 0 5px;
}
#top_menu_3col {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 0 5px;
}
#top_menu_2col section ,
#top_menu_3col section {
  height: 111px;
  margin: 5px 5px;
  border: 1px solid #C1CDE5;
  border-radius: 10px;
  line-height: 1.2;
  text-align: center;
}
#top_menu_2col section a ,
#top_menu_2col section div ,
#top_menu_3col section a {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  height: 100%;
}
#top_menu_2col section a p ,
#top_menu_2col section div p ,
#top_menu_3col section a p {
  margin: 5px 0;
  font-size: 92%;
}
#support_img img {
  width: 100%;
}
a.not_member {
  border: 1px solid #CCCCCC;
  border-radius: 10px;
  color: #FFFFFF;
}
/* ゴミカレンダー */
#gomi {
  display: grid;
  grid-template-columns: 0.5fr 1fr;
}
#gomi #gomi_oogata ,
#gomi #gomi_kanen ,
#gomi #gomi_sigen ,
#gomi #gomi_recycle ,
#gomi #gomi_sonota ,
#gomi #gomi_hunen ,
#gomi #gomi_none {
  display: block;
  overflow: hidden;
  height: auto;
  padding: 10px;
  color: #FFFFFF;
  border-radius: 0 10px 10px 0;
}
#gomi #gomi_oogata a ,
#gomi #gomi_kanen a ,
#gomi #gomi_sigen a ,
#gomi #gomi_recycle a ,
#gomi #gomi_sonota a ,
#gomi #gomi_hunen a ,
#gomi #gomi_none a {
  display: block;
  color: #FFFFFF;
}
/* 大型 */
#gomi #gomi_oogata { background: #00BB25; }
/* 可燃 */
#gomi #gomi_kanen { background: #FFB300; }
/* 資源・有害 */
#gomi #gomi_sigen { background: #40AC8B; }
/* リサイクルプラ */
#gomi #gomi_recycle { background: #E505A2; }
/* その他プラ */
#gomi #gomi_sonota { background: #0090FF; }
/* 不燃 */
#gomi #gomi_hunen { background: #FF6F00; }
/* ごみ回収なし */
#gomi #gomi_none { background: #214A99; }
/* ごみ地域登録なし */
#gomi #gomi_area_none {
  display: block;
  overflow: hidden;
  height: 100%;
  border-radius: 0 10px 10px 0;
  background: #CCCCCC;
}
p#gomi_name {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70%;
  margin: 0;
  padding: 0;
  font-size: 120% !important;
  font-weight: bold;
  line-height: 1;
}
p#gomi_name span {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}
#gomi #gomi_area_none p#gomi_name { font-size: 100%!important;}
p#tomorrow_gomi {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30%;
  margin: 0;
}
/* ゴミカレンダーアイコン */
#gomi_calendar {
  display: block;
  overflow: hidden;
  height: 100%;
  background: url("/img/front/gomi_calendar.png") top 10px center no-repeat;
  pointer-events: none;
}
/* #gomi_calendar:hover {
  background: url("/img/front/gomi_calendar_on.png") #214A99 top 10px center no-repeat;
  border-radius: 10px 0 0 10px;
  color: #FFFFFF;
} */
/* ゴミカレンダー2パターン目 */
#gomi #gomi_2rows { display: block !important; }
#gomi #gomi_2rows #gomi_oogata ,
#gomi #gomi_2rows #gomi_kanen ,
#gomi #gomi_2rows #gomi_sigen ,
#gomi #gomi_2rows #gomi_recycle ,
#gomi #gomi_2rows #gomi_sonota ,
#gomi #gomi_2rows #gomi_hunen ,
#gomi #gomi_2rows #gomi_none {
  display: block;
  overflow: hidden;
  box-sizing: border-box;
  height: 60%;
  padding: 10px 10px 5px 10px;
  color: #FFFFFF;
  border-radius: 0 10px 0 0;
}
#gomi #gomi_2rows p#gomi_name {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50%;
  margin: 0;
  padding: 0;
  font-size: 120% !important;
  font-weight: bold;
  line-height: 1;
}
#gomi #gomi_2rows p#gomi_name span {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
#gomi #gomi_2rows #community_gomi {
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  height: 40%;
  margin: 0;
  padding: 5px 10px;
  border-left: 1px solid #C1CDE5;
  border-radius: 0 0 10px 0;
  font-size: 120% !important;
  font-weight: bold;
  color: #000000;
}
#gomi #gomi_2rows #community_gomi a {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  align-items: center!important;
  height: auto;
}
/* 交流板 */
#bulletin_board a { background: url("/img/front/bulletin_board.png") top 10px center no-repeat; }
#bulletin_board:hover { border: none; }
#bulletin_board a:hover {
  background: url("/img/front/bulletin_board_on.png") #214A99 top 10px center no-repeat;
  border-radius: 10px;
  color: #FFFFFF;
}
/* 町内会 */
#community:hover { border: none; }
/* 庚午北町内会 */
#community a.community_1 { background: url("/img/front/community_1.png") top 10px center no-repeat; }
#community a.community_1:hover {
  background: url("/img/front/community_on.png") #FFA866 top 10px center no-repeat;
  border-radius: 10px;
  color: #FFFFFF;
}
/* 庚午中1丁目町内会 */
#community a.community_2 { background: url("/img/front/community_2.png") top 10px center no-repeat; }
#community a.community_2:hover {
  background: url("/img/front/community_on.png") #FF6666 top 10px center no-repeat;
  border-radius: 10px;
  color: #FFFFFF;
}
/* 庚午中2丁目町内会 */
#community a.community_3 { background: url("/img/front/community_3.png") top 10px center no-repeat; }
#community a.community_3:hover {
  background: url("/img/front/community_on.png") #FFFFA2 top 10px center no-repeat;
  border-radius: 10px;
  color: #FFFFFF;
}
/* 庚午中3丁目町内会 */
#community a.community_4 { background: url("/img/front/community_4.png") top 10px center no-repeat; }
#community a.community_4:hover {
  background: url("/img/front/community_on.png") #DAC5FF top 10px center no-repeat;
  border-radius: 10px;
  color: #FFFFFF;
}
/* 庚午中4丁目町内会 */
#community a.community_5 { background: url("/img/front/community_5.png") top 10px center no-repeat; }
#community a.community_5:hover {
  background: url("/img/front/community_on.png") #87CEFA top 10px center no-repeat;
  border-radius: 10px;
  color: #FFFFFF;
}
/* 町内会未参加の場合 */
#community a.not_member { background: url("/img/front/community_on.png") #CCCCCC top 10px center no-repeat; }
/* こども会 */
#child:hover { border: none; }
/* 庚午北１・４丁目こども会 */
#child a.child_1 { background: url("/img/front/child_1.png") top 10px center no-repeat; }
#child a.child_1:hover {
  background: url("/img/front/child_on.png") #90EE90 top 10px center no-repeat;
  border-radius: 10px;
  color: #FFFFFF;
}
/* 庚午北２・３丁目こども会 */
#child a.child_2 { background: url("/img/front/child_2.png") top 10px center no-repeat; }
#child a.child_2:hover {
  background: url("/img/front/child_on.png") #FFD5E6 top 10px center no-repeat;
  border-radius: 10px;
  color: #FFFFFF;
}
/* 庚午中１丁目こども会 */
#child a.child_3 { background: url("/img/front/child_3.png") top 10px center no-repeat; }
#child a.child_3:hover {
  background: url("/img/front/child_on.png") #FF6666 top 10px center no-repeat;
  border-radius: 10px;
  color: #FFFFFF;
}
/* 庚午中２丁目こども会 */
#child a.child_4 { background: url("/img/front/child_4.png") top 10px center no-repeat; }
#child a.child_4:hover {
  background: url("/img/front/child_on.png") #FFFFA2 top 10px center no-repeat;
  border-radius: 10px;
  color: #FFFFFF;
}
/* 庚午中３丁目こども会 */
#child a.child_5 { background: url("/img/front/child_5.png") top 10px center no-repeat; }
#child a.child_5:hover {
  background: url("/img/front/child_on.png") #DAC5FF top 10px center no-repeat;
  border-radius: 10px;
  color: #FFFFFF;
}
/* 庚午中４丁目こども会 */
#child a.child_6 { background: url("/img/front/child_6.png") top 10px center no-repeat; }
#child a.child_6:hover {
  background: url("/img/front/child_on.png") #87CEFA top 10px center no-repeat;
  border-radius: 10px;
  color: #FFFFFF;
}
/* こども会未参加の場合 */
#child a.not_member { background: url("/img/front/child_on.png") #CCCCCC top 10px center no-repeat; }

/* NEWバッチ */
#safety,
#community,
#child,
#group,
#shop,
#association,
#public,
#hohoemi {
  position: relative;
}
#safety.new-badge::before,
#community.new-badge::before,
#child.new-badge::before,
#group.new-badge::before,
#shop.new-badge::before,
#association.new-badge::before,
#public.new-badge::before,
#hohoemi.new-badge::before {
  pointer-events: none;
  width: 50px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  background-image: linear-gradient(225deg, #ad6d86 0 1.8rem, transparent 1.8rem);
  content: '';
  border-radius: 10px;
  z-index: 999;
}
#safety.new-safety-badge::before {
  width: 50px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  background-image: linear-gradient(225deg, #214a99 0 1.8rem, transparent 1.8rem);
  content: '';
  border-radius: 10px;
  z-index: 999;
}
#safety.new-badge::after,
#safety.new-safety-badge::after,
#community.new-badge::after,
#child.new-badge::after,
#group.new-badge::after,
#shop.new-badge::after,
#association.new-badge::after,
#public.new-badge::after,
#hohoemi.new-badge::after {
  position: absolute;
  top: 0.35rem;
  right: 0;
  color: white;
  font-size: 0.8rem;
  transform: rotate(45deg);
  text-transform: uppercase;
  text-align: center;
  content: 'new';
  z-index: 999;
}
/* 防災・安全 */
#safety a { background: url("/img/front/safety.png") top 10px center no-repeat; }
#safety a:hover {
  background: url("/img/front/safety_on.png") #214A99 top 10px center no-repeat;
  border-radius: 10px;
  color: #FFFFFF;
}
#safety a.bousai ,
#safety a.bousai:hover {
  background: url("/img/front/safety_on.png") #F30216 top 10px center no-repeat!important;
  border-radius: 10px;
  color: #FFFFFF;
}
#safety a.training ,
#safety a.training:hover {
  background: url("/img/front/safety.png") #FFE100 top 10px center no-repeat!important;
  border-radius: 10px;
  color: #214A99;
}
/* グループ */
#group a { background: url("/img/front/group.png") top 10px center no-repeat; }
#group a:hover {
  background: url("/img/front/group_on.png") #214A99 top 10px center no-repeat;
  border-radius: 10px;
  color: #FFFFFF;
}
/* 団体 */
#association a { background: url("/img/front/association.png") top 10px center no-repeat; }
#association a:hover {
  background: url("/img/front/association_on.png") #214A99 top 10px center no-repeat;
  border-radius: 10px;
  color: #FFFFFF;
}
/* 学校・公共 */
#public a { background: url("/img/front/public.png") top 10px center no-repeat; }
#public a:hover {
  background: url("/img/front/public_on.png") #214A99 top 10px center no-repeat;
  border-radius: 10px;
  color: #FFFFFF;
}
/* お店・会社 */
#shop a { background: url("/img/front/shop.png") top 10px center no-repeat; }
#shop a:hover {
  background: url("/img/front/shop_on.png") #214A99 top 10px center no-repeat;
  border-radius: 10px;
  color: #FFFFFF;
}
/* 庚午のまち */
#kogotown a { background: url("/img/front/kogotown.png") top 10px center no-repeat; }
#kogotown a:hover {
  background: url("/img/front/kogotown_on.png") #214A99 top 10px center no-repeat;
  border-radius: 10px;
  color: #FFFFFF;
}
/* ほほえみネット */
#hohoemi a { background: url("/img/front/hohoemi.png") top 10px center no-repeat; }
#hohoemi a:hover {
  background: url("/img/front/hohoemi_on.png") #214A99 top 10px center no-repeat;
  border-radius: 10px;
  color: #FFFFFF;
}
/* ほほえみ見守り中 */
.hohoemi_success {
  display: none;
  position: fixed;
  width: 80%;
  line-height: 3;
  background-color: #214A99;
  color: #fff;
  top: 10%;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  border-radius: 5px;
}



#hohoemi a.not_member { background: url("/img/front/hohoemi_on.png") #CCCCCC top 10px center no-repeat; }
#warning_off {
  display: flex;
  justify-content: end;
}
/* トップ広告枠 */
#advertising ul#advertising_list {
  margin: 0;
  padding: 10px 10px 0 10px;
  list-style: none;
}
#advertising ul#advertising_list {
  margin: 0;
  padding: 10px 10px 0 10px;
  list-style: none;
  font-size: 0; /* liに隙間ができるため */
}

#advertising ul#advertising_list li {
  margin-bottom: 10px;
  display: block;
  position: relative;
  border: 1px solid #C1CDE5;
}
#advertising ul#advertising_list li img {
  width: 100%;
}
#advertising ul#advertising_list li div {
  width: 45%;
  height: 45%;
  bottom: 0%;
  right: 0%;
  text-align: right;
  padding: 2% 0%;
  position: absolute;
  font-size: 0; /* div内aタグ隙間削除 */
}
#advertising ul#advertising_list li div a {
  width: 30%;
  height: 100%;
  display: inline-block;
}

/* header --------------------*/
header {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 54px;
  background: #214A99;
  color: #FFFFFF;
}
header a {
  display: block;
  position: absolute;
  left: 0;
  width: 50px;
  height: 50px;
  background: url("/img/front/back_arrow.png") center no-repeat;
  font-size: 0;
}
header p ,
header h1 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  width: calc(100% - 100px);
  margin: 0;
  padding: 0;
  font-weight: normal;
  font-size: 130%;
  line-height: 1.2;
  text-align: center;
}
h2 {
  margin: 0;
  padding: 10px 10px 10px 30px;
  background: #F6F8FE url("/img/front/h2_bg.png") left 10px center no-repeat;
  border-bottom: 1px solid #1A3688;
  font-size: 105%;
  color: #1A3688;
}
/* header_btn_area */
#header_btn_area {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 10px;
  background: #F5F5F5;
}
#header_btn_area p {
  margin: 0;
  padding: 0 10px;
}
#header_btn_area button {
  width: 100%;
  min-height: 40px;
  padding-right: 40px;
  border: 1px solid #214A99;
  border-radius: 6px;
  font-size: 90%;
}
/* ハンバーガーメニューボタン */
.openbtn {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  width: 35px;
  height:35px;
  background: #214A99;
  display: flex;
  justify-content: center;
}
.openbtn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  height: 3px;
  background-color: #FFFFFF;
  width: 60%;
}
.openbtn span:nth-of-type(1) { top:8px; }
.openbtn span:nth-of-type(2) { top:16px; }
.openbtn span:nth-of-type(3) { top:24px; }
/* ナビゲーション */
#g-nav {
  position: fixed;
  z-index: 500;
	top:0;
  right: -120%;
	width:100%;
  height: 100vh;
	background:#FFFFFF;
	transition: all 0.6s;
}
#g-nav.panelactive { right: 0; }
#g-nav.panelactive #g-nav-list {
  position: fixed;
  z-index: 500;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
/*ナビゲーション*/
#g-nav ul {
	list-style: none;
  margin: 0;
  padding: 0;
}
#g-nav li a {
	color: #333;
	text-decoration: none;
	padding: 10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
  border-bottom: 1px solid #214A99;
}
#g-nav p {
  margin: 0;
  padding: 10px;
}
/* メニュー内ヘッダー */
#g-nav #g-nav-header {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 54px;
  background: #214A99;
  color: #FFFFFF;
}
#g-nav #g-nav-header h1 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  width: calc(100% - 100px);
  margin: 0;
  padding: 0;
  font-weight: normal;
  font-size: 130%;
  line-height: 1.2;
  text-align: center;
}
#g-back-nav {
  display: block;
  position: absolute;
  left: 0;
  width: 50px;
  height: 50px;
  background: url("/img/front/back_arrow.png") center no-repeat;
  font-size: 0;
}
/* 広告枠 --------------------*/
#partnerB {
  justify-content: center;
  align-items: center;
}
#partnerC {
  position: fixed;
  bottom: 0;
  width: 100%;
}
#partnerB img ,
#partnerC img ,
#partnerD_menu img ,
#partnerE_menu img ,
#partnerF_menu img {
  width: 100%;
}
#partnerC img {
  position: absolute;
  bottom: 0;
  width: 100%;
}
/* 開閉式広告枠 */
#openwindow {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  overflow: hidden;
}
#toggle { display: none; }
#toggle_button {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  cursor: pointer;
}
#toggle_button span {
  display: block;
  color: #214A99;
}
#toggle:checked ~ #window_menu #toggle_button span { transform: rotate(3.142rad); }
#window_menu {
  height: 40px;
  background: #F6F8FE;
}
#toggle:checked ~ #window_menu {
  bottom: 0;
  height: auto;
}
#window_menu ul#partnerF_menu ,
#window_menu ul#partnerE_menu {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin: 0;
  padding: 10px 10px 20px 10px;
  list-style: none;
}
#window_menu ul#partnerD_menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0;
  padding: 10px;
  list-style: none;
}
#window_menu hr {
  margin: 0 13px;
  border: none;
  border-top: 1px dashed #cccccc;
}
#window_menu ul#partnerF_menu li ,
#window_menu ul#partnerD_menu li a ,
#window_menu ul#partnerE_menu li {
  display: flex;
  justify-content: center;
  align-items: center;
  /* height: 50px; */
  margin: 3px;
  background: #FFFFFF;
  border: 1px solid #214A99;
}
#window_menu ul#partnerD_menu li a {
  text-decoration: none;
  color: #000000;
}
/* contents --------------------*/
#contents {
  overflow: auto;
  padding: 0 10px;
  box-sizing: border-box;
}
#contents h2 {
  margin: 0;
  padding: 10px 10px 10px 20px;
  background: #FFFFFF url("/img/front/h2_bg2.png") left 5px center no-repeat;
  border-bottom: 2px solid #1A3688;
  font-size: 105%;
  color: #1A3688;
}
#contents h3.blue_title {
  margin: 0;
  padding: 5px 10px;
  background: #214A99;
  color: #FFFFFF;
  font-weight: normal;
  font-size: 120%;
}
#contents dl {
  margin: 10px 0 40px 0;
  padding: 0;
}
#contents dl dt {
  width: 100%;
  margin: 0;
  padding: 0 0 10px 0;
  font-weight: bold;
}
#contents dl dd {
  width: 100%;
  margin: 0 0 20px 0;
  padding: 0 0 20px 0;
  border-bottom: 1px dashed #214A99;
}
#contents dl.dl_bdr_none dd { border-bottom: none; }
#contents dl dd p.display_txt {
  margin: 0;
  font-size: 110%;
}
/* 検索 */
#post_search {
  overflow: hidden;
  margin-bottom: 10px;
}
#post_search input[type=search] {
  width: calc(100% - 120px - 1rem);
  margin: 0 10px;
}
#post_search .btn_search {
  width: 100px!important;
  min-height: 40px!important;
  background: #39B3E8!important;
  border: none!important;
  color: #FFFFFF!important;
}
/* リスト */
ul#list ,
ul#arrow_list ,
ul#arrow_list2 ,
ul#arrow_list3 ,
ul#arrow_list4 ,
ul#btn_list ,
ul#contact_group_list {
  margin: 10px 0 0 0;
  padding: 0;
  list-style: none;
  line-height: 0;
}
ul#arrow_list ,
ul#arrow_list2 ,
ul#arrow_list4 { margin-bottom: 70px; }
ul li a div .list_date {
  color: #000000;
  font-weight: normal!important;
}
/* 「＞」付きリスト */
ul#arrow_list li ,
ul#arrow_list2 li ,
ul#arrow_list3 li ,
ul#arrow_list4 li {
  padding: 10px;
  background: url("/img/front/list_arrow.png") center right 10px no-repeat #ffffff;
  border-bottom: 1px solid #214A99;
}
ul#arrow_list2 li.list_pickup { background: url("/img/front/list_arrow.png") center right 10px no-repeat #FFFEE1 !important; }
ul#arrow_list li a ,
ul#arrow_list2 li a {
  display: grid;
  grid-template-columns: 75px 1fr;
  box-sizing: border-box;
}
ul#arrow_list li a.safety_list {
  display: block;
  box-sizing: border-box;
}
ul#arrow_list3 li a {
  display: block;
  position: relative;
}
ul#arrow_list4 li a {
  display: block;
  padding: 10px 0;
}
ul#arrow_list li a div {
  overflow: hidden;
  position: relative;
}
ul#arrow_list2 li a div {
  overflow: hidden;
  display: flex;
  align-items: center;
}
ul#arrow_list li a div span {
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  width: 70px;
  color: #FF0004;
  text-align: center;
}
ul#arrow_list li a div span.status {
  display: block;
  position: absolute;
  top: 20%;
  right: 20px;
  width: 70px;
  color: #FF0004;
  text-align: center;
}
ul#arrow_list li a div span.answered {
  display: block;
  position: absolute;
  top: 70%;
  right: 20px;
  width: 70px;
  color: #214A99!important;
  text-align: center;
}
ul#arrow_list li a div span.not_answered {
  display: block;
  position: absolute;
  top: 70%;
  right: 20px;
  width: 70px;
  color: #FF0004!important;
  text-align: center;
}
ul#arrow_list li a div span.be_qa {
  display: block;
  position: absolute;
  top: 70%;
  right: 20px;
  width: 70px;
  color: #214A99!important;
  text-align: center;
}
ul#arrow_list li a div:first-child ,
ul#arrow_list2 li a div:first-child {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 10px 0 0;
}
ul#arrow_list li a div img ,
ul#arrow_list2 li a div img { width: 100%; }
ul#arrow_list li a div h3 {
  width: calc(100% - 100px);
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
  font-size: 100%;
}
ul#arrow_list li a div h4 {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
  font-size: 100%;
  line-height: 2;
}
ul#arrow_list2 li a div h3 {
  width: calc(100% - 20px);
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
  font-size: 100%;
}
ul#arrow_list3 li a h3 ,
ul#arrow_list4 li a h3 ,
ul#arrow_list3 li a p {
  width: calc(100% - 20px);
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  margin: 0;
  padding: 0;
  font-size: 100%;
  line-height: normal;
}
ul#arrow_list3.status_list li a h3 ,
ul#arrow_list3.status_list li a p {
  width: calc(100% - 110px);
}
#arrow_list3 li a p.contributor { font-size: 80%; }
#arrow_list3 li a span {
  display: inline-block;
  position: absolute;
  top: 10px;
  right: 30px;
  width: 4em;
  height: 20px;
  padding: 5px;
  text-align: center;
  line-height: 1.2em;
}
#arrow_list3 li a span.active {
  background: #BCF2FF;
  color: #000000;
}
#arrow_list3 li a span.stop {
  background: #EEEEEE;
  color: #000000;
}
#arrow_list3 li a span.important {
  background: #C81919;
  color: #FFFFFF;
}
ul#arrow_list li.unread a div h3 ,
ul#arrow_list2 li.unread a div h3 {
  font-weight: normal;
  color: #000000;
}
/* ボタン付きリスト */
ul#btn_list li {
  display: grid;
  grid-template-columns: 1fr 65px;
  box-sizing: border-box;
  padding: 10px 0;
  border-bottom: 1px solid #214A99;
}
ul#btn_list li a img { width: 100%; }
ul#btn_list li a {
  display: grid;
  grid-template-columns: 75px 1fr;
}
ul#btn_list li a div {
  display: flex;
  justify-content: center;
  align-items: center;
}
ul#btn_list li a h3 {
  margin: 10px;
  padding: 10px 0;
  font-size: 100%;
  line-height: 1em;
}
ul#btn_list li p { text-align: right; }
ul#btn_list li p a {
  display: flex;
  justify-content: center;
  align-items: center;
}
/* 連絡グループリスト */
ul#contact_group_list li a {
  display: grid;
  grid-template-columns: 75px 1fr 50px;
  align-items: center;
  box-sizing: border-box;
  padding: 10px;
  border-bottom: 1px solid #214A99;
}
ul#contact_group_list li div {
  position: relative;
  overflow: hidden;
}
ul#contact_group_list li a div img { width: 100%; }
ul#contact_group_list li a h3 {
  padding: 10px;
  font-size: 100%;
}
ul#contact_group_list li a div span {
  display: block;
  width: 24px;
  height: 24px;
  background: #D3364F;
  border-radius: 50%;
  color: #FFFFFF;
  text-align: center;
  line-height: 1.6;
}
/* 一覧NEWバッチ */
li#list {
  position: relative;
}
li#list.new-badge::before {
  pointer-events: none;
  width: 45px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  background-image: linear-gradient(225deg, #ad6d86 0 1.2rem, transparent 1.2rem);
  content: '';
  /* border-radius: 10px; */
  z-index: 999;
}
li#list.new-badge::after {
  position: absolute;
  top: 0.5rem;
  right: 0;
  color: white;
  font-size: 0.5rem;
  transform: rotate(45deg);
  text-transform: uppercase;
  text-align: center;
  content: 'new';
  z-index: 999;
}

li.new-badge {
  position: relative;
}
li.new-badge::before {
  pointer-events: none;
  width: 45px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  background-image: linear-gradient(225deg, #ad6d86 0 1.2rem, transparent 1.2rem);
  content: '';
  /* border-radius: 10px; */
  z-index: 999;
}
li.new-badge::after {
  position: absolute;
  top: 0.5rem;
  right: 0;
  color: white;
  font-size: 0.5rem;
  transform: rotate(45deg);
  text-transform: uppercase;
  text-align: center;
  content: 'new';
  z-index: 999;
}
/* 連絡グループ、グループ等　画像 */
#contact_group_img ,
#group_img { text-align: center; }
#contact_group_img img ,
#group_img img ,
#contact_img img ,
#news_img img ,
#circular_board_img img {
  max-width: 100%;
  max-height: 200px;
}
#contact_img ,
#news_img ,
#circular_board_img {
  display: grid;
  grid-template-columns: 1fr 1fr;
  text-align: center;
}
/* 下は4カラムの時 */
#contact_img div ,
#news_img div ,
#circular_board_img div {
  padding: 5px;
}
#icon_menu {
  margin: 10px 0;
}
/* 入力画面 添付ファイル */
span.file_item_img {
  display: flex;
  justify-content: center;
  width: 200px;
  margin: 0 auto;
}
span.file_item_img img {
  max-width: 100%;
  max-height: 200px;
}
/* main_data */
#main_data { padding: 25px 0 5px 0; }
#main_data #main_data_img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
#main_data #main_data_img .slide-items .slick-slide {
  display:flex!important;
  justify-content: center;
  align-items: center;
  height: 200px!important;
}
#main_data #main_data_img .slick-dotted.slick-slider {
  margin-bottom: 0px;
}
#main_data #main_data_img img {
  max-height: 200px;
  max-height: 200px;
}
#main_data #main_data_txt {
  clear: both;
  padding: 10px 0 0 0;
}
/* link_area */
#link_area { padding: 0 0 15px 0; }
#link_area p a {
  display: block;
  padding: 10px;
  background: #F1F5FF;
  border: 1px solid #214A99;
  border-radius: 6px;
  color: #214A99;
  font-size: 120%;
  font-weight: bold;
  text-align: center;
}
#link_area p a.public_tel span {
  padding-left: 30px;
  background: url("/img/front/icon_tel.png") left center no-repeat;
}
/* 回覧板、お知らせ、過去の記事タイトル */
#circular_board h3 ,
#news h3 ,
#old_news h3 {
  display: flex;
  align-items: center;
  position: relative;
  margin: 0;
  padding: 5px 10px;
  background: #214A99;
  color: #FFFFFF;
  font-weight: normal;
  font-size: 120%;
}
#circular_board span ,
#news span ,
#old_news span {
  display: inline-block;
  position: absolute;
}
span.see_all {
  right: 50px;
  font-size: 70%;
}
span.edit_mark {
  right: 0;
  width: 40px;
  height: 30px;
  background: url("/img/front/btn_new_edit_mark.png") center no-repeat;
}
span.see_all a ,
span.edit_mark a { color: #FFFFFF; }
span.edit_mark a {
  display: block;
  width: 40px;
  height: 30px;
}
/* 回覧板、お知らせ、過去の記事リスト */
#circular_board ul ,
#news ul ,
#old_news ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#circular_board ul li ,
#news ul li ,
#old_news ul li {
  position: relative;
  padding: 10px;
  /* border-bottom: 1px dashed #214A99; */
}
#circular_board ul li:first-child ,
#news ul li:first-child ,
#old_news ul li:first-child { border-top: 1px solid #214A99; }
#circular_board ul li:last-child ,
#news ul li:last-child ,
#old_news ul li:last-child { border-bottom: 1px solid #214A99; }
#circular_board ul li h4 ,
#circular_board ul li p ,
#news ul li h4 ,
#news ul li p {
  width: calc(100% - 4rem);
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
#circular_board ul li span.status,
#news ul li span.status {
  display: block;
  position: absolute;
  top: 10%;
  right: 10px;
  width: 70px;
  color: #FF0004;
  text-align: center;
}

#circular_board ul li span.answered,
#news ul li span.answered {
  display: block;
  position: absolute;
  top: 60%;
  right: 10px;
  width: 70px;
  color: #214A99!important;
  text-align: center;
}

#circular_board ul li span.not_answered,
#news ul li span.not_answered {
  display: block;
  position: absolute;
  top: 60%;
  right: 10px;
  width: 70px;
  color: #FF0004!important;
  text-align: center;
}
#circular_board ul li span.be_qa,
#news ul li span.be_qa {
  display: block;
  position: absolute;
  top: 60%;
  right: 10px;
  width: 70px;
  color: #214A99!important;
  text-align: center;
}

#old_news ul li a {
  display: grid;
  grid-template-columns: 75px 1fr 75px;
}
#old_news ul li a p.articles {
  text-align: right;
  color: #FF0004;
  font-size: 13px;
  padding-right: 20px;
}
#old_news ul li a div { overflow: hidden; }
#old_news ul li a div:first-child {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  margin-right: 10px;
  line-height: 0;
  box-sizing: border-box;
}
#old_news ul li a div h4 {
  margin: 0;
  padding: 0 0 5px 0;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
#old_news ul li a div p {
  margin: 0;
  font-size: 80%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  line-height: 2;
}
#old_news ul li a div img { width: 100%; }
#circular_board ul li span ,
#news ul li span {
  display: block;
  position: absolute;
  right: 10px;
  top: 26px;
  font-size: 90%;
}
/* 未読 */
.btn_area input.unread,
dl.unread,
ul li.unread { background-color: #E2E2E2!important; }
#circular_board ul li.unread h4 ,
#news ul li.unread h4 {
  margin: 0;
  padding: 0 0 5px 0;
  font-weight: normal;
  color: #000000;
}
#circular_board ul li.unread p ,
#news ul li.unread p {
  margin: 0;
  font-size: 80%;
  color: #000000;
}
/* 既読 */
ul li.already_read { background-color: #F1F9FF!important; }
#circular_board ul li.already_read h4 ,
#news ul li.already_read h4 {
  margin: 0;
  padding: 0 0 5px 0;
}
#circular_board ul li.already_read p ,
#news ul li.already_read p {
  margin: 0;
  font-size: 80%;
  font-weight: bold;
}
/* ほほえみネット、防災・安全のお知らせ */
#notice_area { margin-bottom: 10px; }
#notice_area h3 {
  display: flex;
  align-items: center;
  position: relative;
  margin: 0;
  padding: 5px 10px;
  background: #214A99;
  color: #FFFFFF;
  font-weight: normal;
  font-size: 120%;
  border-top: 1px solid #FFFFFF;
}
#notice_area span.see_all {
  display: inline-block;
  position: absolute;
  right: 10px;
  font-size: 70%;
}
#notice_area ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#notice_area ul li {
  position: relative;
  padding: 5px 10px;
  background: url(/img/front/list_arrow.png) center right 10px no-repeat;
  border-bottom: 1px dashed #214A99;
}
#notice_area ul li:last-child { border-bottom: 1px solid #214A99; }
#notice_area ul li h4 {
  width: calc(100% - 20px);
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  margin: 0;
}
#notice_area ul li p {
  width: calc(100% - 20px);
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  margin: 0;
  font-size: 80%;
  color: #000000;
}
#notice_area p#safety_notice_none {
  padding-bottom: 15px;
  border-bottom: 1px solid #214A99;
  text-align: center;
}
/* 見守り状況のtable */
#mimamori_tbl {
  margin: 10px 0;
  border-top: 1px solid #CCCCCC;
  border-left: 1px solid #CCCCCC;
  font-size: 90%;
}
#mimamori_tbl th {
  padding: 5px 10px;
  background: #F1F5FF;
  border-right: 1px solid #CCCCCC;
  color: #214a99;
  font-weight: bold;
}
#mimamori_tbl td { border-right: 1px solid #CCCCCC; }
#mimamori_tbl tr td p { margin: 0; }
#mimamori_tbl tr td span {
  display: inline-block;
  margin: 0 0 5px 0;
  padding: 0 3px;
}
#mimamori_tbl tr td span.active { background: #BCF2FF; }
#mimamori_tbl tr td span.important {
  background: #C81919;
  color: #FFFFFF;
}
/* 要確認の地図ボタン */
#mimamori_tbl a.important_map,
#emergency_board_tbl a.important_map {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4em;
  min-height: auto;
  padding: 5px;
  background: #C81919;
  border-radius: 6px;
  color: #FFFFFF;
}
.notice_off { background: #EEEEEE; }
.notice_off span.active ,
.notice_off span.important { background: #EEEEEE!important; }
div#status_active {
  width: 60%;
  margin: 50px auto 150px auto;
  padding: 10px;
  background: #C81919;
  text-align: center;
  color: #FFFFFF;
}
div#status_stop {
  width: 60%;
  margin: 50px auto 150px auto;
  padding: 10px;
  background: #CCCCCC;
  text-align: center;
  color: #FFFFFF;
}
div#status_active p ,
div#status_stop p {
  font-size: 120%;
  font-weight: bold;
}
/* GPSチェック */
#gps_check_area {
  margin: 20px 0 40px 0;
  text-align: center;
}
#idpass_display {
  margin: 20px auto;
  padding: 5%;
  background: #F6F8FE;
  font-weight: bold;
}
/* 詳細画面 */
#posting_data {
  display: grid;
  grid-template-columns: 1fr 3fr;
}
#posting_data p { margin: 10px 0; }
#post_date {
  text-align: right;
  font-size: 80%;
}
#posting_data #post_status {
  font-weight: bold;
  color: #FF0004;
}
#attachment_file {
  margin: 0 0 20px 0;
  padding: 10px;
  border-bottom: 1px dashed #CCCCCC;
}
#detail_text {
  padding: 10px 0;
  border-bottom: 1px dashed #CCCCCC;
}
/* 交流板詳細(コメント付き) */
#comment_area { margin: 40px 0; }
#comment_area h3 {
  margin: 0;
  color: #214A99;
  font-size: 110%;
}
#comment_area dl#comment_list dt h4 { margin: 0; }
#comment_area dl#comment_list dt p {
  margin: 0;
  font-weight: normal;
  font-size: 90%;
  text-align: right;
}
#comment_area dl#comment_list dd { font-size: 90%; }
#comment_area dl#comment_list a { float: right; }
#comment_area #comment_form table {
  width: 100%;
  margin: 10px 0 20px 0;
  border-top: 1px solid #CCCCCC;
  font-size: 90%;
}
#comment_area #comment_form table th {
  box-sizing: border-box;
  width: 8em;
}
#comment_area #comment_form table td input { margin: 0; }
#comment_area #comment_form table td textarea {
  height: 100px;
  margin: 0;
}
#comment_area #comment_form #comment_btn {
  padding: 0 10px;
  text-align: right;
}
#comment_area #comment_form #comment_btn button {
  width: 150px;
  min-height: 40px!important;
}
/* アンケート系 */
#qa_pagedata_area {
  margin: 20px 0;
  padding: 10px;
  background: #F6F8FE;
}
#qa_pagedata_area h3 {
  margin: 0 0 10px 0;
  color: #214A99;
  font-size: 105%;
}
#qa_pagedata_area p { margin: 0; }
.qa_area { margin: 20px 0; }
.qa_area h4 {
  margin-bottom: 10px;
  color: #214A99;
  font-size: 100%;
}
/* .qa_area h4::before {
  content: '■ ';
  color: #214A99;
} */
.qa_area p { margin: 10px 0;}
table.qa_table td img { width: 80px; }
table.qa_table td label { display: block; }
#qa_select {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#qa_select h3 {
  background: #214A99;;
  color: #ffffff;
}
.qa_choices {
  display: grid;
  grid-template-columns: 80px 1fr;
  justify-content: center;
  align-items: center;
}
.qa_choices img {
  max-width: 70px;
  max-height: 70px;
}
#end_date {
  margin: 0 0 20px 0;
  text-align: center;
}
#end_date input { margin-right: 10px; }
.qa_list_area dt { padding: 0!important; }
.qa_list_area dt h4 { margin: 20px 0 10px 0; }
.qa_list_area dd {
  padding: 10px 0!important;
  border-bottom: 1px solid #CCCCCC!important;
}
.qa_list_area dd p {
  margin: 0;
  padding-bottom: 10px;
}
/* アンケート回答一覧 */
.qa_data_list_area {
  background: #F6F8FE;
  margin: 10px 0 20px 0!important;
  padding: 10px!important;
}
.qa_data_list_area p { margin: 0 0 10px 0; }
.qa_data_list_area p strong { color: #214A99; }
.qa_data_list_area h3 {
  margin: 0 0 20px 0;
  padding: 5px 10px;
  background: #214A99;
  font-size: 100%;
  font-weight: normal;
  color: #FFFFFF;
}
.qa_data_list_area table {
  margin: 0;
  border-top: 1px solid #214A99;
  border-left: 1px solid #214A99;
}
.qa_data_list_area table th {
  width: 120px;
  border-bottom: 1px solid #FFFFFF;
  background: #214A99;
  color: #FFFFFF;
  box-sizing: border-box;
}
.qa_data_list_area table tr:last-child th { border-bottom: 1px solid #214A99; }
.qa_data_list_area table td {
  border-right: 1px solid #214A99;
  border-bottom: 1px solid #214A99;
  background: #FFFFFF;
  box-sizing: border-box;
}
.qa_data_list_area table td ul {
  margin: 0;
  padding-inline-start: 20px;
}
/* 閲覧者数付きリスト */
ul#viewing_list {
  margin: 0;
  padding: 0;
  list-style: none;
}
ul#viewing_list li {
  padding: 10px;
  background: url("/img/front/list_arrow.png") center right 10px no-repeat;
  border-bottom: 1px solid #214A99;
}
ul#viewing_list li a {
  display: grid;
  grid-template-columns: 70% 30%;
  align-items: center;
  box-sizing: border-box;
  padding-right: 20px;
}
ul#viewing_list li a div h3 {
  margin: 0;
  font-size: 100%;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
ul#viewing_list li a div p { text-align: left; }
ul#viewing_list li a p {
  margin: 0;
  text-align: center;
}
/* 閲覧確認リスト */
#viewing_confirm { margin-bottom: 40px; }
#viewing_confirm h2 { margin-bottom: 20px; }
#viewing_confirm ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#viewing_confirm ul li {
  display: grid;
  grid-template-columns: 1fr 100px;
  justify-content: center;
}
#viewing_confirm ul li p { padding: 0 10px;}
#viewing_confirm ul li p:last-child { text-align: center; }
#viewing_confirm ul li.already_read p {
  font-weight: bold;
  color: #214A99;
}
/* 防災・安全 */
.bousai { background: #F30216!important; }
.training {
  background: #FFE100!important;
  color: #000000;
}
#kogo_hinan,
#emergency_board,
#safety_member_edit {
  margin: 30px 0px 20px 0px;
}
#kogo_hinan a {
  display: block;
  min-height: 80px;
  background: url("/img/front/icon_kogohinan.png") center left 10px no-repeat #39B3E8!important;
  border-radius: 6px;
  color: #FFFFFF!important;
  box-sizing: border-box;
}
#kogo_hinan a p {
  margin: 0;
  padding: 0;
}
#kogo_hinan a p#kogo_hinan_title {
  font-size: 110%;
  font-weight: bold;
  text-align: center;
  padding-top: 10px;
}
#kogo_hinan a p#kogo_hinan_date {
  text-align: right;
  padding-top: 10px;
  padding-right: 10px;
}
#emergency_board a {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80px;
  background: url("/img/front/icon_emergency_board.png") center left 5px no-repeat #C81919!important;
  border-radius: 6px;
  font-size: 120%;
  font-weight: bold;
  color: #FFFFFF!important;
  box-sizing: border-box;
}
#emergency_board input {
  background: #C81919!important;
  border: none!important;
  color: #FFFFFF!important;
}
#safety_member_edit a {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80px;
  background:  #39B3E8!important;
  border-radius: 6px;
  font-size: 120%;
  font-weight: bold;
  color: #FFFFFF!important;
  box-sizing: border-box;
}
#bousai_info { padding: 20px 0 0 0; }
#bousai_info section {
  margin: 0 0 10px 0;
  border: 2px solid #214A99;
  border-radius: 6px;
}
#bousai_info section.bousai_chuui { border: 2px solid #FFD400; }
#bousai_info section.bousai_keihou { border: 2px solid #F30216; }
#bousai_info section a {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: center;
  padding: 10px 25px 10px 10px;
  background: url("/img/front/list_arrow.png") center right 5px no-repeat;
  color: #000000;
}
#bousai_info section a div:first-child {
  display: flex;
  align-items: center;
}
#bousai_info section a h3 {
  margin: 0;
  font-size: 120%;
}
#bousai_info section a p {
  margin: 0;
  text-align: right;
}
#bousai_info section a div span {
  display: inline-block;
  margin: 0 10px 0 0;
  padding: 2px 10px;
  font-size: 90%;
}
/* 避難情報 */
#bousai_info section#hinan span.hinanbasho {
  border: 2px solid #F30216;
  border-radius: 4px;
  font-weight: bold;
  color: #F30216;
}
/* 避難レベル */
#bousai_info section#hinan span.level2 {
  background: #FFD400;
  color: #000000;
}
#bousai_info section#hinan span.level3 {
  background: #F30216;
  color: #FFFFFF;
}
#bousai_info section#hinan span.level4 {
  background: #BC0CAE;
  color: #FFFFFF;
}
#bousai_info section#hinan span.level5 {
  background: #000000;
  color: #FFFFFF;
}
/* 地震情報 震度 */
#bousai_info section#jishin span.shindo-1 {
  background: #ECECEC;
  color: #000000;
}
#bousai_info section#jishin span.shindo-2 {
  background: #0097FF;
  color: #FFFFFF;
}
#bousai_info section#jishin span.shindo-3 {
  background: #0058E4;
  color: #FFFFFF;
}
#bousai_info section#jishin span.shindo-4 {
  background: #F7EA41;
  color: #000000;
}
#bousai_info section#jishin span.shindo-5minus {
  background: #FFC32E;
  color: #000000;
}
#bousai_info section#jishin span.shindo-5plus {
  background: #FF962A;
  color: #000000;
}
#bousai_info section#jishin span.shindo-6minus {
  background: #F91F1C;
  color: #FFFFFF;
}
#bousai_info section#jishin span.shindo-6plus {
  background: #C60036;
  color: #FFFFFF;
}
#bousai_info section#jishin span.shindo-7 {
  background: #C20086;
  color: #FFFFFF;
}
/* 警報・注意報 */
/* 特別警報 */
#bousai_info section#keihou_chuuihou span.tokubetu {
  background: #000000;
  color: #FFFFFF;
}
/* 警報 */
#bousai_info section#keihou_chuuihou span.keihou {
  background: #F30216;
  color: #FFFFFF;
}
/* 注意報 */
#bousai_info section#keihou_chuuihou span.chuui {
  background: #FFD400;
  color: #000000;
}
/* 防災・安全　安否掲示板の安否情報 */
#safety_info_area { margin-bottom: 10px; }
#safety_info_area h3 {
  display: flex;
  align-items: center;
  position: relative;
  margin: 0;
  padding: 5px 10px;
  background: #214A99;
  color: #FFFFFF;
  font-weight: normal;
  font-size: 120%;
  border-top: 1px solid #FFFFFF;
}
#safety_info_area span.see_all {
  display: inline-block;
  position: absolute;
  right: 10px;
  font-size: 70%;
}
#safety_info_area ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#safety_info_area ul li {
  position: relative;
  padding: 5px 10px;
  border-bottom: 1px dashed #214A99;
}
#safety_info_area ul li:last-child { border-bottom: 1px solid #214A99; }
#safety_info_area ul li h4 { margin: 0; }
#safety_info_area ul li p {
  margin: 0;
  font-size: 80%;
  color: #000000;
}
/* 安否掲示板　家族情報のtable */
#emergency_board_tbl {
  margin: 10px 0;
  border-top: 1px solid #CCCCCC;
  border-left: 1px solid #CCCCCC;
  font-size: 90%;
}
#emergency_board_tbl th {
  padding: 5px 10px;
  background: #F1F5FF;
  border-right: 1px solid #CCCCCC;
  color: #214a99;
  font-weight: bold;
}
#emergency_board_tbl td { border-right: 1px solid #CCCCCC; }
#emergency_board_tbl td span {
  display: block;
  padding: 5px;
  text-align: center;
  background: #C81919;
  color: #FFFFFF;
}
#emergency_board_tbl td input[type=text] { margin-bottom: 0; }
/* #emergency_board_tbl td .btn_delete { width: 3em ;} */
#ichijouhou_area {
  margin: 30px 0;
  text-align: center;
}
/* 避難場所一覧 */
ul#safety_place_list ,
ul#safety_place_list_manager {
  margin: 10px 0 0 0;
  padding: 0;
  list-style: none;
  line-height: 0;
}
ul#safety_place_list li {
  display: grid;
  grid-template-columns: 1fr 100px;
  align-items: center;
  padding: 10px;
  border-bottom: 1px solid #214A99;
}
ul#safety_place_list_manager li.no_safety_list ,
ul#safety_place_list_manager li a {
  display: grid;
  grid-template-columns: 1fr 100px;
  align-items: center;
  padding: 10px 30px 10px 10px;
  background: url("/img/front/list_arrow.png") center right 5px no-repeat;
  border-bottom: 1px solid #214A99;
}
ul#safety_place_list_manager li.no_safety_list {
  padding: 10px;
  background: none;
}
ul#safety_place_list li div h3 ,
ul#safety_place_list_manager li div h3 {
  margin: 0;
  padding: 0;
  font-size: 100%;
  line-height: normal;
}
ul#safety_place_list li div span ,
ul#safety_place_list_manager li div span {
  display: block;
  height: 1em;
  margin-bottom: 5px;
  padding: 8px 5px;
  border-radius: 4px;
  text-align: center;
  line-height: 1em;
  font-size: 90%;
}
ul#safety_place_list li div span:last-child ,
ul#safety_place_list_manager li div span:last-child { margin-bottom: 0; }
/* 開設中 */
ul#safety_place_list li div span.open ,
ul#safety_place_list_manager li div span.open {
  border: 2px solid #F30216;
  font-weight: bold;
  color: #F30216;
}
/* 準備中 */
ul#safety_place_list li div span.preparation ,
ul#safety_place_list_manager li div span.preparation { background: #EEEEEE; }
/* 空きあり */
ul#safety_place_list li div span.empty ,
ul#safety_place_list_manager li div span.empty {
  background: #00b6ff;
  color: #FFFFFF;
}
/* やや空き */
ul#safety_place_list li div span.little_empty ,
ul#safety_place_list_manager li div span.little_empty {
  background: #00bb25;
  color: #FFFFFF;
}
/* 普通 */
ul#safety_place_list li div span.usually ,
ul#safety_place_list_manager li div span.usually {
  background: #ffb300;
  color: #FFFFFF;
}
/* やや混雑 */
ul#safety_place_list li div span.little_crowded ,
ul#safety_place_list_manager li div span.little_crowded {
  background: #ff6f00;
  color: #FFFFFF;
}
/* 混雑 */
ul#safety_place_list li div span.crowded ,
ul#safety_place_list_manager li div span.crowded {
  background: #c81919;
  color: #FFFFFF;
}
/* DOBOXからの避難場所一覧 */
ul#arrow_list li.dobox_info_list {
  background: none!important;
  border-bottom: 1px solid #214A99!important;
}
ul#arrow_list li.dobox_info_list h3 {
  line-height: 1.2em;
}
/* 防災士側 */
#bousai_manage_btn {
  margin: 10px;
  text-align: right;
}
#mode_change_area {
  justify-items: center;
  margin: 20px 0;
}
#mode_change_area input[type="radio"] + label {
  margin-left: 10px;
  padding: 5px 10px;
}
#mode_change_area input[type="radio"]#usually_mode:checked + label {
  background: #214a99;
  color: #FFFFFF;
}
#mode_change_area input[type="radio"]#bousai_mode:checked + label {
  background: #F30216;
  color: #FFFFFF;
}
#mode_change_area input[type="radio"]#training_mode:checked + label {
  background: #FFE100;
  color: #000000;
}
.manager_btn_area {
  width: 60%;
  margin: 40px auto;
  text-align: center;
}
/* slide --------------------*/
.slide-items {
  margin: 0;
  padding: 0 0 25px 0;
  width: 100%;
  height: 100%;
}
.slick-slide {
  display:flex!important;
  justify-content: center;
  align-items: center;
  height: 300px!important;
}
.slick-dotted .slick-slider { margin-bottom: 0; }
.slide-items img {
  max-width: 100%;
  max-height: 300px;
  object-fit: cover;
}
.slick-dots {
  position: absolute;
  bottom: 0;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}
.slick-dots li button:before { font-size: 26px!important; }
.slick-prev:before,
.slick-next:before { color: #000000; }
.slick-dots li button:before {
  font-size: 18px;
  top: 6px;
}
.slick-prev,
.slick-next { display: none!important; }
/* 利用規約 */
#terms_area {
  margin: 0 0 40px 0;
  text-align: center;
}
#terms_area a { margin: 0 20px; }
/* 防災・安全　AEDマップ */
#aed_map {
  width: 100%!important;
  height: 500px!important;
  margin-top: 10px;
}
/* ほほえみネットマップ */
#hohoeminet_map,
#emergency_map {
  width: 100%!important;
  height: calc(100vh - 54px)!important;
}
/* 共通 --------------------*/
/* button */
.button ,
button {
  width: 100%;
  min-height: 60px;
  background: #FFFFFF;
  border: 1px solid #707070;
  border-radius: 6px;
  color: #000000;
}
a.button {
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn_blue {
  background: #39B3E8!important;
  border: none!important;
  color: #FFFFFF!important;
}
.btn_add {
  background: #214A99!important;
  border: none!important;
  color: #FFFFFF!important;
  min-height: 50px!important;
  line-height: 3;
}
.btn_white {
  background: #ffffff!important;
  color: #000000!important;
}
.btn_red {
  background: #C81919!important;
  border: none!important;
  color: #FFFFFF;
}
dd .btn_blue,
dd .btn_red {
  width: 80px;
  min-height: 40px;
}

.btn_area { margin: 20px 10px 20px 10px; }
.login_btn_area { margin: 0 10px 100px 10px; }
.btn_area p button { margin-bottom: 10px; }
.btn_area p a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 60px;
  margin-bottom: 10px;
  border-radius: 6px;
  font-size: 110%;
}
.btn_exit {
  width: 65px;
  min-height: 30px;
  background: #214A99;
  border: none!important;
  color: #FFFFFF;
}
.btn_delete {
  width: 65px;
  min-height: 30px;
  background: #C81919;
  border: none!important;
  color: #FFFFFF;
  white-space: nowrap;
}
.btn_approval {
  width: 65px;
  min-height: 30px;
  background: #39B3E8;
  border: none!important;
  color: #FFFFFF;
  white-space: nowrap;
}
.btn_unapproved {
  width: 65px;
  min-height: 30px;
  background: #C81919;
  border: none!important;
  color: #FFFFFF;
  white-space: nowrap;
}
.btn_manage {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 40px;
  background:#39B3E8 url("/img/front/btn_manage.png") center left 10px no-repeat;
  border-radius: 6px;
  box-sizing: border-box;
  color: #FFFFFF!important;
}
.btn_manage:first-child { margin-bottom: 10px; }
a.btn_new_post ,
a.btn_qa_list ,
a.btn_group_create ,
a.btn_group_partake ,
a.btn_edit {
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  min-height: 40px;
  padding-right: 40px;
  background: #FFFFFF;
  border: 1px solid #707070;
  border-radius: 6px;
  font-size: 97%;
  color: #000000;
}
/* 新規投稿 */
a.btn_new_post { background:#FFFFFF url("/img/front/btn_new_post.png") right no-repeat; }
/* アンケート回答一覧 */
a.btn_qa_list { background:#FFFFFF url("/img/front/btn_qa_list.png") right no-repeat; }
/* グループ作成 */
a.btn_group_create { background:#FFFFFF url("/img/front/btn_group_create.png") right no-repeat; }
/* グループ参加 */
a.btn_group_partake { background:#FFFFFF url("/img/front/btn_group_partake.png") right no-repeat; }
/* 編集 */
a.btn_edit { background:#FFFFFF url("/img/front/btn_edit.png") right no-repeat; }
/* オンオフボタン */
.switch_area {
  display: inline-block;
  line-height: 31px;
  letter-spacing: 0;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  position: relative;
  width: 81px;
}
.switch_area input[type="checkbox"] { display: none; }
.switch_area label {
  display: block;
  box-sizing: border-box;
  height: 34px;
  background: #FFFFFF;
  border: 2px solid #999999;
  border-radius: 17px;
}
.switch_area input[type="checkbox"] +label { margin-left: 0; }
.switch_area input[type="checkbox"]:checked +label {
  background: #FFFFFF;
  border-color: #214A99;
}
.switch_area label span:after {
  content: "OFF";
  padding: 0 0 0 20px;
  color: #999999;
}
.switch_area input[type="checkbox"]:checked + label span:after {
  content: "ON";
  padding: 0 20px 0 0;
  color: #214A99;
}
.switch_area .circle_img {
  position: absolute;
  width: 26px;
  height: 26px;
  background: #999999;
  top: 4px;
  left: 4px;
  border-radius: 13px;
  transition: .2s;
}
.switch_area input[type="checkbox"]:checked ~ .circle_img {
  transform: translateX(47px);
  background: #214A99;
}
/* ファイル選択ボタン */
.file_button ,
.file_button_s {
  display: block;
  margin: 0;
  padding: 15px 10px;
  background: #39B3E8!important;
  border: none;
  border-radius: 6px;
  color: #FFFFFF;
  cursor: pointer;
  text-align: center;
}
.file_button input[type="file"] ,
.file_button_s input[type="file"] { display: none; }
.file_button_s {
  width: 50%;
  margin: 0 auto;
}
.btn_file_clear {
  min-height: 40px;
  margin: 10px 0 0 0;
}
/* はい、いいえボタン */
.yes_no_btn_area {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 20px;
}
.yes_no_btn_area p {
  margin: 10px;
  font-size: 100%!important;
}
.yes_no_btn_area p a {
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn_area_2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 10px;
}
.btn_area_2col p {
  margin: 0;
  padding: 0 10px;
  font-size: 100%!important;
}
.btn_area_2col p button {
  width: 100%;
  min-height: 60px;
  border: 1px solid #214A99;
  border-radius: 6px;
}
/* コピー関連 */
.copy_success {
  display: none;
  position: fixed;
  width: 80%;
  line-height: 3;
  background-color: #214A99;
  color: #fff;
  top: 10%;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  border-radius: 5px;
}
/* Tooltip */
.tooltip::after {
  width: 13rem;
  content: '個人IDをコピーしました。';
  background: #214A99;
  display: inline-block;
  color: #FFFFFF;
  border-radius: .4rem;
  position: absolute;
  left: 50%;
  top: -50px;
  transform: translate(-50%, 0);
  padding: 10px;
  animation: fade-tooltip .5s 1s 1 forwards;
}
/* Animation */
@keyframes fade-tooltip {
  to { opacity: 0; }
}
/* カラム */
.grid_2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.grid_3col {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.grid_3col label { margin-bottom: 10px; }
.checkbox_area div { margin: 10px 0; }
.plural_radio div { margin-bottom: 20px; }
.plural_radio div:last-child { margin-bottom: 0; }
/* margin 余白 */
/* 右 */
.mr-10 { margin-right: 10px!important; }
.mr-20 { margin-right: 20px!important; }
.mr-30 { margin-right: 30px!important; }
.mr-40 { margin-right: 40px!important; }
.mr-60 { margin-right: 60px!important; }
/* 上 */
.mt-10 { margin-top: 10px!important; }
.mt-40 { margin-top: 40px!important; }
/* 下 */
.mb-10 { margin-bottom: 10px!important; }
.mb-20 { margin-bottom: 20px!important; }
.mb-40 { margin-bottom: 40px!important; }
.mb-80 { margin-bottom: 80px!important; }
.mb-120 { margin-bottom: 120px!important; }
/* 幅 ％ */
.w-50 { width: 50%; }
/* 幅 px */
.w-80 { width: 80px; }
.w-100 { width: 100px; }
.w-200 { width: 200px; }
.w-220 { width: 220px; }
.w-250 { width: 250px; }
.w-300 { width: 300px; }
.w-350 { width: 350px; }
.w-400 { width: 400px; }
.w-480 { width: 480px; }
.w-max { width: 100%; }
/* テキスト系 */
.txt_red { color:#FF0004; }
.txt_right { text-align: right; }
.txt_center { text-align: center; }
.error_message { color: #FF0004; }
.required {
  font-size: 80%;
  color: #FF0004;
}
.fb {
  font-weight: bold;
}
/* 空白 */
.blank { padding-left: 3em; }
/* アンケート背景 */
#qa_area {padding: 10px!important;}
.file_button_area,
.qa_button { margin: 30px 0; }
.file_button_area a,
.qa_button a {
  display: block;
  border-radius: 6px;
  padding: 10px 0;
  min-height: 0;
  text-align: center;
}
.file_button_area a:first-child,
.qa_button a:first-child {margin-bottom: 10px;}
dt p {
  font-weight: normal!important;
  margin: 5px 0;
}
#qa_select {
  background: #214A99;
  color: #ffffff;
  padding: 2%;
  border-radius: 6px;
}
#qa_area h3 {
  background: #214A99;
  color: #ffffff;
  padding: 2%;
  border-radius: 6px;
}
#qa_sum_area {
  background: #F6F8FE;
  margin: 10px 0 20px 0 !important;
  padding: 10px !important;
}
#qa_sum_area .title {
  color: #214A99;
}
#qa_sum_area p.text {
  margin: 0;
}
#qa_sum_area span.choice {
  margin-right: 1%;
}