@charset "UTF-8";
@import url(html5reset-1.6.1.css);
/*------------------------------------------------------------
base
------------------------------------------------------------*/
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  /*-webkit-tap-highlight-color: rgba(0,0,0,0);*/
}

html {
  font-size: 62.5%;
}

body {
  width: 100%;
  font-family: "Roboto","游ゴシック","YuGothic","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ","Meiryo",sans-serif;
  font-size: 1rem;
  line-height: 140%;
  color: #242415;
}

a {
  text-decoration: none;
}

ul li {
  list-style: none;
}

/*------------------------------------------------------------
header
------------------------------------------------------------*/
header {
  width: 100%;
  height: 52px;
  background: #8cc400;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
}

/* 縦長
header h1 {
	width: 70px;
	height: 70px;
	position: absolute;
	top: 10px;
	left: 10px;
	display: block;
	background: $h1_back;
	text-align: center;
	padding: 4px 4px 0;
}
header h1 img {
	width: 100%;
}
 */
/* 横長 */
header h1 {
  width: 190px;
  height: 32px;
  position: absolute;
  top: 10px;
  left: 10px;
  display: block;
}

header h1 img {
  max-width: 100%;
  max-height: 100%;
}

header h1 a {
  color: #fff;
  font-size: 20px;
  line-height: 32px;
  font-family: "Times New Roman", 游明朝, YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", メイリオ, Meiryo, serif;
}

.headerBtn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 0;
}

.headerBtn li {
  display: inline-block;
  vertical-align: top;
}

.headerBtn li:first-child a {
  width: 32px;
  height: 32px;
  padding: 8px;
  background: #575748;
  border-radius: 50%;
  display: block;
}

.headerBtn li a img {
  width: 16px;
  height: 16px;
}

#panel-btn {
  width: 56px;
  height: 32px;
  margin-left: 10px;
  color: #242415;
  font-size: 2rem;
  font-weight: 500;
  background: #fff;
  overflow: hidden;
  position: relative;
  display: block;
}

#panel-btn-icon {
  position: absolute;
  top: 2px;
  left: 9px;
  transition: .2s;
  display: block;
}

#panel-btn-icon:before {
  display: block;
  content: "探す地図";
  transition: .3s;
  line-height: 1.5;
}

#panel-btn .close {
  background: transparent;
}

#panel-btn .close:before {
  transform: translateY(-30px);
  -webkit-transform: translateY(-30px);
}

/*------------------------------------------------------------
contents
------------------------------------------------------------*/
#contents {
  width: 100%;
  margin: 52px 0 0 0;
  position: relative;
}

/*------------------------------------------------------------
map
------------------------------------------------------------*/
#mapWrap {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

#map_canvas {
  width: 100%;
}

.mapControl {
  width: 100%;
  position: fixed;
  left: 0;
  bottom: 0;
  background: #fff;
  overflow: hidden;
}

.mapControl li {
  width: 25%;
  height: 52px;
  padding: 18px 0;
  float: left;
  text-align: center;
  display: block;
}

.mapControl img {
  width: 16px;
  height: 16px;
}

/* .mapType {
	border-top: 1px solid #bdbdae;
	position: absolute;
	top: 130px;
	left: 10px;
}
.mapType li {
	border-left: 1px solid #bdbdae;
	border-right: 1px solid #bdbdae;
	border-bottom: 1px solid #bdbdae;
	position: relative;
}
.mapType li input {
	width: 100%;
	height: 100%;
	margin: 0;
	position: absolute;
	top: 0;
	opacity: 0;
}
.mapType li input[type="radio"] + span {
	width: 36px;
	height: 36px;
	background-color: #fff;
	background-size: 16px;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	display: block;
}
.mapType li input[type="radio"]:checked + span {
	background-color: #ddd;
}
.mapType li:first-child input[type="radio"] + span,
.mapType li:first-child input[type="radio"]:checked + span {
	background-image: url(../image/type_pale.png);
}
.mapType li:nth-child(2) input[type="radio"] + span,
.mapType li:nth-child(2) input[type="radio"]:checked + span {
	background-image: url(../image/type_std.png);
}
.mapType li:last-child input[type="radio"] + span,
.mapType li:last-child input[type="radio"]:checked + span {
	background-image: url(../image/type_google.png);
} */
#live, #no_live {
  width: 100px;
  height: 34px;
  font-size: 1.4rem;
  line-height: 34px;
  text-align: center;
  position: absolute;
  top: 10px;
  right: 10px;
  display: none;
  -webkit-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.8);
  -moz-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.8);
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.8);
}

#live {
  color: #fff;
  background: #8cc400;
}

#live:after {
	width: 14px;
	height: 16px;
	margin-left: 4px;
	content: "";
	background-image: url(../image/live.gif);
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-size: 14px 16px;
	vertical-align: middle;
	display: inline-block;
}

@keyframes live {
  0% {
    background-image: url(../image/live1.png);
  }
  25% {
    background-image: url(../image/live2.png);
  }
  50% {
    background-image: url(../image/live3.png);
  }
  75% {
    background-image: url(../image/live4.png);
  }
  100% {
    background-image: url(../image/live1.png);
  }
}
@-moz-keyframes live {
  0% {
    background-image: url(../image/live1.png);
  }
  25% {
    background-image: url(../image/live2.png);
  }
  50% {
    background-image: url(../image/live3.png);
  }
  75% {
    background-image: url(../image/live4.png);
  }
  100% {
    background-image: url(../image/live1.png);
  }
}
@-webkit-keyframes live {
  0% {
    background-image: url(../image/live1.png);
  }
  25% {
    background-image: url(../image/live2.png);
  }
  50% {
    background-image: url(../image/live3.png);
  }
  75% {
    background-image: url(../image/live4.png);
  }
  100% {
    background-image: url(../image/live1.png);
  }
}
#no_live {
  color: #444;
  background: #ffbf00;
}

/*------------------------------------------------------------
menu
------------------------------------------------------------*/
#menuWrap {
  width: 100%;
  height: 120%;
  background: #fff;
  position: fixed;
  top: 52px;
  left: 0;
  z-index: 30;
  display: none;
}

#menuContents {
  width: 100%;
  height: 90%;
  height: -webkit-calc(100% - 52px);
  height: calc(100% - 52px);
  overflow: scroll;
  -webkit-overflow-scrolling: touch;
  position: fixed;
  top: 52px;
  left: 0;
  z-index: 11;
}

#menuContents #mapList li {
  width: 100%;
  height: 62px;
  line-height: 62px;
  font-size: 1.6rem;
  border-bottom: 1px solid #cecebf;
  overflow: hidden;
  position: relative;
}

#menuContents #mapList li.checked {
  background: #f0f0e1;
  color: #acac9d;
}

#menuContents #mapList li div {
  width: 100%;
  overflow: hidden;
}

#menuContents #mapList li img {
  width: 46px;
  margin: 8px 10px 0 8px;
  float: left;
}

#menuContents #mapList li span {
  float: left;
  max-width: 10em;
  /* 最大 */
  white-space: nowrap;
  /* 改行を半角スペースに置き換える */
  overflow: hidden;
  /* はみだした部分を削除する */
  text-overflow: ellipsis;
  /* 末尾に「…」を付加する */
}

#menuContents #mapList li.checked img {
  opacity: 0.5;
}

/*------------------------------------------------------------
  メニュー欄トグルスイッチ
------------------------------------------------------------*/
.tgl {
  display: none;
}

.tgl,
.tgl:after,
.tgl:before,
.tgl *,
.tgl *:after,
.tgl *:before,
.tgl + .tgl-btn {
  box-sizing: border-box;
}

.tgl::-moz-selection,
.tgl:after::-moz-selection,
.tgl:before::-moz-selection,
.tgl *::-moz-selection,
.tgl *:after::-moz-selection,
.tgl *:before::-moz-selection,
.tgl + .tgl-btn::-moz-selection {
  background: none;
}

.tgl::selection,
.tgl:after::selection,
.tgl:before::selection,
.tgl *::selection,
.tgl *:after::selection,
.tgl *:before::selection,
.tgl + .tgl-btn::selection {
  background: none;
}

.tgl + .tgl-btn {
  position: absolute;
  top: 15px;
  right: 10px;
  outline: 0;
  display: block;
  width: 4em;
  height: 32px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.tgl + .tgl-btn:after,
.tgl + .tgl-btn:before {
  position: relative;
  display: block;
  content: "";
  width: 50%;
  height: 30px;
}

.tgl + .tgl-btn:after {
  left: 0;
}

.tgl + .tgl-btn:before {
  display: none;
}

.tgl:checked + .tgl-btn:after {
  left: 50%;
}

.tgl-light + .tgl-btn {
  background: #8cc400;
  border-radius: 2em;
  padding: 1px;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.tgl-light + .tgl-btn:after {
  border-radius: 50%;
  background: #fff;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

.tgl-light:checked + .tgl-btn {
  background: #999;
}

/*------------------------------------------------------------
modal-window
------------------------------------------------------------*/
.remodal {
  font-size: 1.6rem;
}

.remodal h3 {
  margin-bottom: 10px;
  text-align: left;
  font-size: 1.8rem;
}

.remodal h3 img {
  height: 36px;
  display: inline-block;
  vertical-align: top;
  background: #fff;
}

.remodal h3 span {
  width: calc(100% - 60px);
  display: inline-block;
  line-height: 35px;
}

.imgarea {
  height: 250px;
  margin-bottom: 10px;
  background: url(../image/loading.gif) no-repeat 50% 50%;
  background-size: 24px 24px;
}

.imgarea img {
  width: 100%;
  display: block;
  margin-top: 10px;
}

/*
.remodal > img {
	width: 100%;
	margin-bottom: 10px;
	display: block;
}
*/
.remodal div {
  text-align: left;
}

.remodal dl {
  margin-bottom: 10px;
  text-align: left;
  overflow: hidden;
  font-size: 1.4rem;
  line-height: 1.6;
}

.remodal dl dt {
/*  width: 5em;
  float: left;
  clear: left;*/
  color: #C49868;
}

.remodal dl dd {
  margin-left: 1em;
}

.remodal .comment {
  margin-top: 10px;
}

.remodal .comment > span {
  display: block;
}
.remodal .comment > span:last-of-type {
  margin-bottom: 10px;
}

.linkbtn {
  width: 100%;
  height: 40px;
  line-height: 40px;
  text-align: center;
}

.linkbtn a {
  color: #fff;
  text-decoration: none;
  background-color: #575748;
  background-image: url(../image/link.png);
  background-repeat: no-repeat;
  background-position: right 10px top 50%;
  background-size: 12px 10px;
  display: block;
}

.remodal.info {
  padding: 20px;
}

.remodal.info h3 + p a {
  color: #8cc400;
  text-decoration: underline;
}

.remodal.info h3 {
  margin-bottom: 15px;
}

.remodal.info p {
  text-align: left;
  font-size: 1.4rem;
  line-height: 1.6;
}

.remodal.info > div ul {
  margin-top: 15px;
  font-size: 0;
}

.remodal.info > div ul li {
  width: 100%;
  display: inline-block;
}

.remodal.info > div ul li + li {
  margin-top: 10px;
}

.remodal.info > div ul li img {
  width: 100%;
  vertical-align: bottom;
}

.info_link {
  color: #8cc400 !important;
  text-decoration: underline;
}

@media screen and (min-width: 600px) {
  .remodal.info > div ul li {
    width: 50%;
  }

  .remodal.info > div ul li + li {
    margin-top: 0;
  }

  .remodal.info > div ul li:first-child {
    padding-right: 5px;
  }

  .remodal.info > div ul li:last-child {
    padding-left: 5px;
  }
}
#infoWindow {
  font-size: 1.6rem;
}

/*------------------------------------------------------------
　現在地・パルス風
------------------------------------------------------------*/
@-moz-keyframes pulsate {
  from {
    -moz-transform: scale(0.35);
    opacity: 1.0;
  }
  95% {
    -moz-transform: scale(1.3);
    opacity: 0;
  }
  to {
    -moz-transform: scale(0.4);
    opacity: 0;
  }
}
@-webkit-keyframes pulsate {
  from {
    -webkit-transform: scale(0.35);
    opacity: 1.0;
  }
  95% {
    -webkit-transform: scale(1.3);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(0.4);
    opacity: 0;
  }
}
#map div[title="現在地"] {
  -moz-animation: pulsate 1.5s ease-in-out infinite;
  -webkit-animation: pulsate 1.5s ease-in-out infinite;
  border: 1pt solid #fff;
  /* make a circle */
  -moz-border-radius: 51px;
  -webkit-border-radius: 51px;
  border-radius: 51px;
  /* multiply the shadows, inside and outside the circle */
  -moz-box-shadow: inset 0 0 5px #27a530, inset 0 0 5px #27a530, inset 0 0 5px #27a530, 0 0 5px #27a530, 0 0 5px #27a530, 0 0 5px #27a530;
  -webkit-box-shadow: inset 0 0 5px #27a530, inset 0 0 5px #27a530, inset 0 0 5px #27a530, 0 0 5px #27a530, 0 0 5px #27a530, 0 0 5px #27a530;
  box-shadow: inset 0 0 5px #27a530, inset 0 0 5px #27a530, inset 0 0 5px #27a530, 0 0 5px #27a530, 0 0 5px #27a530, 0 0 5px #27a530;
  /* set the ring's new dimension and re-center it */
  height: 51px !important;
  margin: -15px 0 0 -15px;
  width: 51px !important;
}

#map div[title="現在地"] img {
  display: none;
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (device-width: 768px) {
  #map div[title="現在地"] {
    margin: -7px 0 0 -7px;
  }
}
.route-link a {
  background: #8cc400;
  color: #fff;
  text-decoration: none;
  background-image: url(../image/link.png);
  background-repeat: no-repeat;
  background-position: right 10px top 50%;
  background-size: 12px 10px;
  display: block;
}

.comment {
  line-height: 1.5;
  margin-bottom: 12px;
}

.times {
  border-top: 1px dotted #333;
  border-bottom: 1px dotted #333;
}

.t_small {
  font-size: 1.2rem;
}

p.nenban a {
  display: block;
  height: 40px;
  line-height: 40px;
  background: #940808;
  margin-bottom: 5px;
  text-align: center;
  color: #fff;
  background-image: url(../image/link.png);
  background-repeat: no-repeat;
  background-position: right 10px top 50%;
  background-size: 12px 10px;
}

.sns {
  position: absolute;
  /* top: 40px; */
  top: 10px;
  left: 10px;
  overflow: hidden;
}

.sns li {
  margin-bottom: 1px;
}

.sns li a {
  width: 38px;
  height: 38px;
  display: block;
}

.pc {
  display: none;
}

.sp a {
  height: 40px;
  line-height: 40px;
  margin-bottom: 10px;
  text-align: center;
  color: #fff;
  background: #393732;
  color: #fff;
  text-decoration: none;
  display: block;
}

.tel {
  margin-top: 10px;
}

.comment h4 {
  text-align: center;
  margin-top: 8px;
  font-weight: bold;
}

.fixed-icon {
  position: relative;
  width: 44px;
  height: 44px;
  display: block;
  overflow: hidden;
  margin-bottom: 10px;
}

.fixed-icon img {
  width: 60px;
  height: 60px;
  position: absolute;
  top: -12px;
  bottom: 0;
  left: -12px;
  right: 0;
}

.fixed-icon + h3 {
  margin-bottom: 10px;
  text-align: left;
  font-size: 1.8rem;
  position: absolute;
  top: 28px;
  left: 60px;
}

.tgl-info {
  background: #f5f2eb;
}

/* バナー広告欄 */
#btm_bnr_sponsor {
  display: none;
/* 2017.10.10 上野天神バナー
  width: 204px;
  height: 64px;
*/
  width: 164px;
  height: auto;
  overflow: hidden;
  border: 1px solid #fff;
  position: absolute;
/* bottom: 67px; */
  bottom: 78px;
  right: 10px;
  z-index: 10;
}

#btm_bnr_sponsor ul li {
  border: 1px solid #ccc;
  border-collapse: collapse;
}
#btm_bnr_sponsor ul li img,
#btm_bnr_sponsor ul li a {
  width: 100%;
  height: auto;
  display: block;
}

.info h4 {
  margin: 0 0 3px 0;
}

.info dt {
  width: 10em !important;
}

.info dd {
  margin: 0 0 0 10em !important;
}

.underline {
  padding-bottom: 15px;
  border-bottom: 1px dotted #000;
}

#btm_bnr_unready,
#btm_bnr_end {
  display: none;
  width: calc( 100% - 20px );
  height: auto;
  overflow: hidden;
  position: absolute;
  bottom: 75px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

#btm_bnr_unready img,
#btm_bnr_end img {
  width: 100%;
  height: auto;
}



#profile_container {
	z-index: 2;
}
/* 交通規制表示ボタン修正 2017.08.03 fukazawa */
#area_btn {
  width: 100px;
  line-height: 26px;
  border: 2px solid rgba(255,0,0,.8);
  background: rgba(255,0,0,.35);
  color: rgba(255,0,0,1);
  text-shadow: 0 0 2px rgba(255,255,255,.8);
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  padding: 2px;
  position: absolute;
  top: 54px;
  right: 10px;
  cursor: pointer;
  z-index: 1;
}
#area_btn.off {
  border: 2px solid rgba(87,87,71,.8);
  background-color: rgba(87,87,71,.5);
  color: rgba(87,87,71,1);
}
#area_btn span {
  width: 26px;
  height: 26px;
  background: #fff;
  font-size: 9px;
  line-height: 10px;
  display: inline-block;
  padding: 4px 3px 3px 3px;
  position: relative;
  top: 2px;
  left: 4px;
}
/* 2017.08.25 kobayashi */
#area_btn img {
  width: 100%;
}
#area_btn.off img {
  display: none;
}
/* 交通規制表示詳細 2017.08.29 fukazawa */
#area_btn + div {
  width: 100px;
  background: rgba(255,255,255,.8);
  text-align: center;
  position: absolute;
  top: 122px;
  right: 10px;
}
#area_btn + div > span {
  width: 100px;
  height: 30px;
  line-height: 30px;
  color: rgba(255,0,0,1);
  font-size: 11px;
  font-weight: bold;
  background: rgba(255,255,255,.8);
  display: block;
  cursor: pointer;
  position: absolute;
  top: -30px;
  right: 0;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
}
#area_btn.off + div {
  display: none;
}
#area_btn + div > span:before,
#area_btn + div > span:after {
  content: "";
  height: 2px;
  background: rgba(255,0,0,1); 
  display: block;
  -webkit-transition: all .5s ease;
  transition: all .5s ease;
  position: absolute;
}
#area_btn.off + div > span:before,
#area_btn.off + div > span:after {
  background: rgba(87,87,71,.8);
}
#area_btn + div.open > span:before,
#area_btn + div.open > span:after {
  width: 12px;
  top: 15px;
  right: 4px;
}
#area_btn + div.open > span:before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
#area_btn + div.open > span:after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
#area_btn + div.close > span:before,
#area_btn + div.close > span:after {
  width: 9px;
  top: 13px;
}
#area_btn + div.close > span:before {
  right: 10px;
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
}
#area_btn + div.close > span:after {
  right: 4px;
  -webkit-transform: rotate(-225deg);
          transform: rotate(-225deg);
}
#area_btn + div > div {
  padding: 4px;
}
#area_btn + div dl {
  margin-bottom: 5px;
}
#area_btn + div dt {
  font-size: 13px;
}
#area_btn + div dt span {
  font-size: .5em;
}
#area_btn + div dd {
  font-size: 13px;
}
#area_btn + div li {
  font-size: 10px;
  position: relative;
  font-weight: bold;
  padding: 4px 0 2px;
}
#area_btn + div li + li {
  margin-top: 5px;
}
#area_btn + div li span {
}
#area_btn + div ul li:first-child{
  background: rgba(255,0,0,.1);
  border: 2px solid rgba(255,0,0,.5);
}
#area_btn + div ul li:nth-child(2){
  background: rgba(255,165,0,.2);
  border: 2px solid rgba(255,165,0,.8);
}
#area_btn + div ul li:nth-child(3){
  background: rgba(255,255,0,.3);
  border: 2px solid rgba(255,165,0,.5);
}

/* 探す拡張暫定 2017.08.02 kobayashi */
#tab_menu {
  list-style: none;
  overflow: hidden;
}
#tab_menu li {
  width: 50%;
  float: left;
  line-height: 40px;
  background: #eee;
  text-align: center;
}
#tab_menu li.active {
  background: #8cc400;
  color: #fff;
}

#tab_box  > div {
  display: none;
}
#tab_box > div.active {
  display: block;
}

.view_all {
  text-align: center;
  font-size: 1.2rem;
}
.view_all span {
  margin-left: 5px;
  font-size: 1.6rem;
}
.view_all a {
  width: 80%;
  height: 40px;
  line-height: 40px;
  border: 1px solid #8cc400;
  color: #8cc400;
  display: block;
  margin: 10px auto;
}

.filter {
  width: 80%;
  list-style: none;
  overflow: hidden;
  margin: 0 auto 10px;
}
.filter li {
  width: 33.33%;
  float: left;
  text-align: center;
}
.filter li a {
  display: block;
  background: #575748;
  color: #fff;
  border-right: 1px solid #fff;
  line-height: 40px;
}
.filter li a.active {
  background: #929278;
}
.filter li:last-child a {
  border: none;
}

.list_area {
  border-bottom: 1px solid #cecebf;
}
.list_area li {
  width: 100%;
  height: 62px;
  line-height: 62px;
  /*font-size: 1.6rem;*/
  overflow: hidden;
  position: relative;
}
.list_area li + li {
  border-top: 1px solid #cecebf;
}
.list_area li:first-child {
  border-top: 1px solid #cecebf;
}


.list_area li.checked {
  background: #f0f0e1;
  color: #acac9d;
}

.list_area li div {
  width: 100%;
  overflow: hidden;
}

.list_area li img {
  width: 46px;
  margin: 8px 10px 0 8px;
  float: left;
}

.list_area li span {
  float: left;
  max-width: 10em;
  /* 最大 */
  white-space: nowrap;
  /* 改行を半角スペースに置き換える */
  overflow: hidden;
  /* はみだした部分を削除する */
  text-overflow: ellipsis;
  /* 末尾に「…」を付加する */
}

.list_area li.checked img {
  opacity: 0.5;
}

.list_area li.noView {
  display: none;
}
.list_area li.hide {
	display: none;
}

#menuContents {
  font-size: 1.6em;
}
#menuContents #mapList li {
  border-bottom: none;
}

/* リアルタイムメッセージウィンドウ暫定 2017.08.09 kobayashi */
/*------------------------------------------------------------
　msgWindow
------------------------------------------------------------*/
/* 2017.08.31 ちょっと変更 fukazawa */
#msg_wrap {
  max-width: calc(90% - 30px);
  position: fixed;
  right: 0;
  bottom: 55px;
  z-index: 9;
}
#msg_wrap.msg-none {
  display: none;
}
#msg_window {
  max-height: calc(100vh - 365px);
  background: rgba(255,255,255,0.95);
  color: #8cc400;
  padding: 10px;
  overflow: auto;
  display: none;
  -webkit-transition: all .3s;
          transition: all .3s;
}
#msg_btn {
  width: 30px;
  height: 50px;
  background: #242415;
  border-radius: 6px 0 0 6px;
  position: absolute;
  top: 0px;
  left: -30px;
  cursor: pointer;
  position: absolute;
}
#msg_btn:after {
  content: "";
  width: 20px;
  height: 20px;
  background: url(../image/message.png) center center no-repeat;
  background-size: contain;
  position: absolute;
  top: 15px;
  left: 5px;
}
#msg_window dl {
  line-height: 1.2;
}
#msg_window dt {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 3px;
}
#msg_window dt:before {
  content: "●";
}
#msg_window dd {
  font-size: 1.2rem;
}
#msg_window dd + dt {
  margin-top: 15px;
}
#msg_window dd.msg-d {
  text-align: right;
  display: none;
}
#msg_window dd a {
  color: #8cc400;
  text-decoration: underline;
}
