/*------------------------------------------------
reset
------------------------------------------------ */
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul ,li {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}


/*------------------------------------------------
　初期設定
------------------------------------------------ */
html {
  height: 100%;
  font-size: 62.5%;
}
body {
  width: 100%;
  height: 100%;
  background: #fff;
  font-size: 1.6rem;
  -webkit-text-size-adjust: 100%;
  font-family: Roboto, "Droid Sans", Meiryo, "Hiragino Sans", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", sans-serif;
  line-height: 1.5;
  color: #323232;
}
main {
  display: block;
}
img {
  width: auto;
  height: auto;
  max-width: 100%;
  border: none;
  vertical-align: top;
}
a {
  text-decoration: none;
  outline: none;
  transition: all .2s ease-in-out;
}
.pc {
  display: none;
}
.clearfix::after {
	display: block;
  content: "";
  clear: both;
}
@media screen and (min-width: 768px) {
  .pc {
    display: block;
  }
  .sp {
    display: none;
  }
}
@media screen and (min-width: 960px) {
  a:hover {
    text-decoration: none;
    opacity: 0.7;
  }
}


/* ------------------------------
   災害情報
------------------------------ */
#linfo_banner {
  position: relative;
  margin: 0 auto!important;
  width: 990px;
  z-index: 100;
}
body#top #linfo_banner {
	position: relative;
	margin: 0 auto;
	width: 990px;
	z-index: 100;
}
#disaster_banner {
	position: relative;
	margin: 0 auto 0 !important;
	z-index: 100;
}
.hinan_area {
  margin-bottom: 0 !important;
}
#nol_header #nol_emergencyNews .nol_emergencyNews_inner {
  max-width:990px !important;
}
@media screen and (max-width: 640px) {
  body#top #linfo_banner {
    width: 100%;
  }
}


/*------------------------------------------------
mediaアイコン
------------------------------------------------ */
.mod_media01 {
  display: inline-block;
  vertical-align: middle;
  width: 39px;
  height: 14px;
  margin-right: 6px;
  background: url(/osaka/common/img/icon_none.gif) no-repeat left top;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.mod_media01.gtv {
  background-image: url(/osaka/common/img/icon_wave_gtv.gif);
}
.mod_media01.etv {
  background-image: url(/osaka/common/img/icon_wave_etv.gif);
}
.mod_media01.bs1 {
  background-image: url(/osaka/common/img/icon_wave_bs1.gif);
}
.mod_media01.bsp {
  background-image: url(/osaka/common/img/icon_wave_bsp.gif);
}
.mod_media01.r1 {
  background-image: url(/osaka/common/img/icon_wave_r1.gif);
}
.mod_media01.r2 {
  background-image: url(/osaka/common/img/icon_wave_r2.gif);
}
.mod_media01.fm {
  background-image: url(/osaka/common/img/icon_wave_fm.gif);
}


/*------------------------------------------------
mod_btn ボタン
------------------------------------------------ */
.mod_btn01 a {
  position: relative;
  display: block;
  border-radius: 3px;
  padding: 15px;
  text-align: center;
  font-size: 1.6rem;
}
.mod_btn01 a::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -3px;
  width: 6px;
  height: 6px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
/* 青 */
.mod_btn01.blue a {
  background: #005baa;
  color: #fff;
}
.mod_btn01.blue a::after {
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
}
/* 白 */
.mod_btn01.white a {
  background: #fff;
  border: 1px solid #005baa;
  color: #005baa;
}
.mod_btn01.white a::after {
  border-top: solid 2px #005baa;
  border-right: solid 2px #005baa;
}
/* 戻る */
.mod_btn01.back a::after {
  display: none;
}
.mod_btn01.blue.back a::before {
  content: '';
  width: 6px;
  height: 6px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(225deg);
  position: absolute;
  top: 50%;
  left: 20px;
  margin-top: -3px;
}
.mod_btn01.white.back a::before {
  content: '';
  width: 6px;
  height: 6px;
  border-top: solid 2px #005baa;
  border-right: solid 2px #005baa;
  -webkit-transform: rotate(45deg);
  transform: rotate(225deg);
  position: absolute;
  top: 50%;
  left: 20px;
  margin-top: -3px;
}

@media screen and (min-width: 640px) {
  .mod_btn01 a {
    box-sizing: border-box;
    transition-duration: 0.3s;
  }
  /* 青 */
  .mod_btn01.blue a {
    border: 1px solid #005baa;
  }
}