/* ==========================================================================
   Remodal's necessary styles
   ========================================================================== */

/* Hide scroll bar */

html.remodal-is-locked {
  overflow: hidden;

  touch-action: none;
}

/* Anti FOUC */

.remodal,
[data-remodal-id] {
  display: none;
}

/* Necessary styles of the overlay */

.remodal-overlay {
  position: fixed;
  z-index: 9999;
  top: -5000px;
  right: -5000px;
  bottom: -5000px;
  left: -5000px;

  display: none;
}

/* Necessary styles of the wrapper */

.remodal-wrapper {
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;

  display: none;
  overflow: auto;

  text-align: center;

  -webkit-overflow-scrolling: touch;
	background-color: rgba(0,0,0,0.8);
}

.remodal-wrapper:after {
  display: inline-block;

  height: 100%;
  margin-left: -0.05em;

  content: "";
}

/* Fix iPad, iPhone glitches */

.remodal-overlay,
.remodal-wrapper {
  backface-visibility: hidden;
}

/* Necessary styles of the modal dialog */

.remodal {
  position: absolute;
	top: 100px;
	left: 0;
	right: 0;
	margin: 0 auto;
  outline: none;
	width: 900px;
  text-size-adjust: 100%;
}
.remodal .remodal_box {
	position: relative;
	width: 900px;
	margin: 0 auto;
	background-color: #a3a3a3;
	padding: 44px 30px 30px 30px;
	opacity: 1;
}

.remodal .remodal_box1 {
	background-color: #e6b422;
}

.remodal .remodal_box2 {
	background-color: #a3a3a3;
}

.remodal-is-initialized {
  /* Disable Anti-FOUC */
  display: inline-block;
}

.remodal .remodal_box h3 {
	text-align: center;
	margin: 0 0 23px 0;
}

.remodal .remodal_box p {
	font-size: 14px;
	text-align: left;
	background-color: #FFF;
	padding: 40px 40px 60px 40px;
}
.remodal .remodal_box .remodal-close {
	width: 50px;
	height: 50px;
	position: absolute;
	right: 5px;
	top: -76px;
	cursor: pointer;
}
.remodal.remodal_cooperation{
  border: solid 1px #fff;
  background: #fff;
  padding: 0;
  width: 958px;
}
.remodal .cooperation_box{
  padding: 0 0 40px 0;
  width: 100%;
  background: #fff;
}
.remodal.remodal_cooperation h3 {
	text-align: center;
	margin: 0 0 38px 0;
  background: #cb0e0e;
  color: #fff;
  font-size: 18px;
  padding: 20px 0;
}
.remodal.remodal_cooperation ul{
  width: 96%;
  margin: 0 auto;
}
.remodal.remodal_cooperation ul:after{
  content: "";
  clear: both;
  display: block;
}
.remodal.remodal_cooperation ul li{
  float: left;
  width:33.3%;
  margin: 10px 0%;
  text-align: center;
}
.remodal.remodal_cooperation ul li a:hover {
	opacity: 0.8;
}
.remodal.remodal_cooperation ul li img{
  max-width: 100%;
	max-height: 80px;
}
