@charset "utf-8";
/* CSS Document */

a{
 outline: none;
 text-decoration: none;
}

.modal.show .modal-dialog{
padding-bottom: 140px;
}

  .modal{
   /* padding-bottom: 70px; */
  }
  
  .modal-content {
				display: flex;
				flex-direction: column;
				width: 100%;
				pointer-events: auto;
    position: relative;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #999;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 6px;
    outline: 0;
    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
    box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
   /* margin-top: 50px; 必要な場合は別classで設定する*/
}
  
  /* 作業後に消す ここまで */
  
 .modal-dialog {
   max-width: 600px;
  width: auto;
} 
  
  .modal-content  .post_list a{
   display: block;
   outline: none;
  }
  
   .modal-content  .post_list img{
   margin: 0;
  }
  
  .modal-body .post_head img{
   width: 100%;
   margin-bottom: 15px;
  }
  
  .modal-content{
   overflow: hidden;
   border: none;
  }
  
  .modal-content .post_list{
   margin-bottom: 85px;
   padding: 0;
  }
  
  .modal-content .post_list span.thumbnail{
   position: relative;
   padding: 0;
   border-radius: 7px;
   overflow: hidden;
   background: none;
  }
  
  .modal-content .post_list .list_title{
   width: 100%;
   display: block;
   position: absolute;
   left: 0;
   bottom: 0;
   background: linear-gradient(to bottom,transparent 0%,rgba(0,0,0,1) 100%);
   padding: 15px 2px 2px;
  }
  
  .modal-content .post_list .list_title .p_title{
   color: #fff;
  }
  
		.modal-content .post_list .list_title .date2 {
   color: #fff;
   text-align: left;
   margin: 7px 10px 10px;
   padding: 0;
   font-size: 12px;
}
  
  .modal-content .post_content{
   padding-bottom: 70px;
  }
  
  .modal-content .post_content a{
  color: #FF5722;
  }
  
  .modal-content .post_content a.bt_red1{
   color: #fff;
  }
  
  .modal-content .post_head h1 {
   margin: 10px 0;
   padding: 0 15px;
   font-size: 18px;
   line-height: 1.4;
   border: none;
   background: none;
}
  
 .modal-content .post_head .meta{/* コンテンツを消していいかも */
  display: none;
 }
  
  .ml_close{
   width: 40px;
   height: 40px;
   border-radius: 50%;
   background: #333;
   position: fixed;
   display: block;
   float: none;
   opacity: 1;
   bottom: 10px;
   left: 50%;
   margin-left: -20px;
   z-index: 9999;
   filter: none;
  }
  
  .ml_close span {
    position: absolute;
    height: 2px;
    background-color: #fff;
    border-radius: 2px;
    left: 25%;
    width: 50%;
}
  
  .ml_close span:nth-of-type(1) {
    -webkit-transform: translateY(8px) rotate(-45deg);
    transform: translateY(8px) rotate(-45deg);
    top: 11px;
}

.ml_close span:nth-of-type(2) {
    -webkit-transform: translateY(-10px) rotate(45deg);
    transform: translateY(-10px) rotate(45deg);
    bottom: 9px;
}
  
.ml_close_wrap {
    width: 100%;
    background: #222;
    position: fixed;
    padding-bottom: 60px;
    left: 0;
    bottom: 0;
    z-index: 1;
}

.ml_close_wrap .inner{
 padding: 0 10px;
}












/* bootstrapから */

.fade {
  opacity: 0;
		transition: opacity .15s linear;
}

.fade.show {
  opacity: 1;
}

.fade.in {
  opacity: 1;
}

.close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: .5;
}

.close:hover, .close:focus {
  color: #000;
  text-decoration: none;
  opacity: .75;
}

.close:not(:disabled):not(.disabled) {
  cursor: pointer;
}

button.close {
	padding: 0;
	border: 0;
	-webkit-appearance: none;
}

.modal-open {
  overflow: hidden;
}
.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}

.modal-dialog{
  -webkit-transition: -webkit-transform .3s ease-out;
       -o-transition:      -o-transform .3s ease-out;
          transition:         transform .3s ease-out;
}

.modal.fade .modal-dialog { 
  -webkit-transform: translate(0, 5%);
      -ms-transform: translate(0, 2%);
       -o-transform: translate(0, 5%);
          transform: translate(0, 5%);
    padding-bottom: 140px;
}

.modal.show .modal-dialog {
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0,  0);
       -o-transform: translate(0,  0);
          transform: translate(0,  0);
}

.modal-dialog-centered {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (0.5rem * 2));
}


/* 
.modal.fade .modal-dialog {下からふわっと出す時はここ
  -webkit-transition: -webkit-transform .3s ease-out;
       -o-transition:      -o-transform .3s ease-out;
          transition:         transform .3s ease-out;
  -webkit-transform: translate(0, 5%);
      -ms-transform: translate(0, 2%);
       -o-transform: translate(0, 5%);
          transform: translate(0, 5%);
}
.modal.show .modal-dialog {
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0,  0);
       -o-transform: translate(0,  0);
          transform: translate(0,  0);
} */
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0 !important;
}
.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}
.modal-content {
  position: relative;
  background-color: #fff;
		background-clip: padding-box;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, .2);
  border-radius: 6px;
  outline: 0;
		box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
}
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
  background-color: #000;    
}

.modal-backdrop.fade {
  opacity: 0;
}

.modal-backdrop.show {
  opacity: 0.8;
}

.modal-backdrop.in {
  filter: alpha(opacity=50);
  opacity: .8;
}
.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0.3rem;
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
}
.modal-header .close {
  padding: 1rem;
  margin: -2px -1rem -1rem auto;
}

.modal-title {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 1rem;
  border-top: 1px solid #e9ecef;
  margin: 0;
  line-height: 1.5;
}

.modal-footer > :not(:first-child) {
  margin-left: .25rem;
}

.modal-footer > :not(:last-child) {
  margin-right: .25rem;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}




.modal-body {
  position: relative;
}
.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}
.modal-footer .btn + .btn {
  margin-bottom: 0;
  margin-left: 5px;
}
.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}
.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}
.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 576px) {
  .modal-dialog {
   /* max-width: 500px;*/
    margin: 1.75rem auto;
  }
  .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .modal-sm {
    max-width: 300px;
  }
}

@media (min-width: 992px) {
  .modal-lg {
    max-width: 800px;
  }
}


@media screen and (min-width:641px) {
 
 .ml_close_wrap .inner [class*="btn_list"]{
  width: 750px;
  margin: 0 auto;
}
 
 }

@media (min-width: 768px) {
  .modal-dialog {
    width: 600px;
    margin: 30px auto;
  }
  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
            box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
  }
  .modal-sm {
    width: 300px;
  }
}
@media (min-width: 992px) {
  .modal-lg {
    width: 900px;
  }
}

.modal-header:before,
.modal-header:after,
.modal-footer:before,
.modal-footer:after {
  display: table;
  content: " ";
}


.modal-header:after,
.modal-footer:after {
  clear: both;
}

/* bootstrap ここまで */

/* お知らせモーダル内 */

.info_mdl_inner{
padding: 0 20px 20px;
text-align: left;
}

.info_mdl_inner h3{
text-align: center;
margin-top: 20px;
font-size: 16px;
color: #0a3070;
background: #ffffcc;
border:1px solid #f9e877;
border-radius: 3px;
margin-bottom: 25px;
padding: 15px;
font-family: 游ゴシック体, "Yu Gothic", YuGothic, "メイリオ", meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", Arial, Helvetica, sans-serif;
overflow: hidden;
}

.info_mdl_inner h3 i{
position: relative;
left: -5px;
}

.info_mdl_inner p{
margin: 20px 0 0!important;
font-size: 16px;
}

@media screen and (min-width:641px) {
.info_mdl_inner{
padding: 0 30px 30px;
text-align: left;
}

.info_mdl_inner h3{
margin: 30px 0 0!important;
font-size: 18px;
}

.info_mdl_inner p{
margin: 30px 0 0!important;
font-size: 16px;
}
}

