@charset "UTF-8";
/*.js_modalBtnWrap {
  width: 300px;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}*/
.info_modal {
  opacity: 0;
  z-index: -1;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.info_modal.active {
  animation: modalOpen 0.3s ease forwards;
}
.info_modal.active2 {
  animation: modalClose 0.3s ease forwards;
}
.info_modal_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}
.info_modal_inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 90%;
  max-width: 860px;
  background-color: #fff;
  /*max-height: 600px;*/
  padding: 40px;
}
.m_content {
  overflow-y: scroll;
  /*max-height: 520px;*/
}
.m_content .title {
  font-size: 1.6rem;
	font-weight: 600;
	text-align: center;
	color: #d60d0d;
	margin-bottom: 20px;
}
.m_content .text {
  margin-top: 10px;
	text-align: center;
}
.m_content .text_link {
  text-decoration: underline;
	padding-left: 1em;
	position: relative;
}
.m_content .text_link::before {
  content: "";
	display: block;
	width: 0.5em;
	height: 0.5em;
	border-right: 1px solid #232323;
	border-bottom: 1px solid #232323;
	position: absolute;
	left: 0;
	top: 0.3em;
	transform: rotate(-45deg);
}
.m_content .text_link:hover {
  text-decoration: none;
}
.m_content .about_old {
  padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: 1px solid #cccccc;
}
.m_content .oldsystem_link {
  display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.m_content .oldsystem_link li {
  margin: 10px 10px 0;
}
.btn_modalclose {
  display: block;
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  overflow: hidden;
  cursor: pointer;
  z-index: 1001;
}
.btn_modalclose::before,
.btn_modalclose::after {
  content: "";
  background-color: #232323;
  position: absolute;
  top: 0;
  right: 10px;
  width: 1px;
  height: 20px;
}
.btn_modalclose::before {
  transform: rotate(45deg);
}
.btn_modalclose::after {
  transform: rotate(-45deg);
}
@keyframes modalOpen {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    z-index: 1000;
  }
}
@keyframes modalClose {
  0% {
    opacity: 1;
    z-index: 1000;
  }
  100% {
    opacity: 0;
  }
}
@media screen and (max-width: 768px) {
	.info_modal_inner {
		padding: 30px;
	}
	.m_content .title {
		font-size: 1.5rem;
	}
	.m_content .text {
		text-align: left;
	}
	.m_content .text.text_center {
		text-align: center;
	}
}


