@charset "UTF-8";

/* 1日1回ポップアップ */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@700&display=swap');



#important_Modal .modal {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  align-items: center;
  display: none;
}
#important_Modal .modal.is_active {
  display: flex;
	background: none;
}
#important_Modal .modal_bg {
  background-color: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
}
#important_Modal .modal_wrap {
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  z-index: 10000;
  position: relative;
  top: 0px;
}
#important_Modal .modal_wrap .modal_readtext{
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  color: #fff;
  text-align: center;
  font-size: 2rem;
  margin-bottom: 0;
}
#important_Modal .modal_inner {
  max-width: 950px;
  margin: auto;
	background-color: #fff;
  padding: 2rem;
	display: flex;
	flex-wrap: wrap;
}
#important_Modal .modal_inner a{
	display: block;
	border: 3px solid #ff3a3a;
	padding: .75em .75em .5em;
	color: #05004a;
	margin: 1rem .5rem;
	width: calc( 50% - 1rem );
	box-sizing: border-box;
	font-size: 1.05em;
	font-weight: bold;
  text-align: center;
}
#important_Modal .modal_inner a span.update{
	background: #f00;
	color: #fff;
	font-size: .75rem;
	font-weight: normal;
	padding: 0 5px;
	position: absolute;
	top: -13px;
	left: -10px;
	box-shadow: 2px 2px 0 0 #900505;
}
#important_Modal .modal_inner a:hover{
	background: #ff3a3a;
	color: #fff;
}
#important_Modal .modal_close {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 14px;
  position: absolute;
  top: 75px;
  right: 35px;
  z-index: 99999;
}
#important_Modal .modal_close::after,
#important_Modal .modal_close::before{
  content: '';
  width: 65px;
  height: 6px;
  background: #fff;
  position: absolute;
  top: -35px;
  right: -10px;
}
#important_Modal .modal_close::after{
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform:rotate(-45deg);
}
#important_Modal .modal_close::before{
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform:rotate(45deg);
}

@media screen and (max-width:480px) {
	#important_Modal .modal_inner{
    padding: 1rem;
	}
	#important_Modal .modal_inner a{
		width: 100%;
    margin: .75rem 0;
		font-size: 0.95em;
		line-height: 1.5;
    font-size: 0.8rem;
	}
	#important_Modal .modal_wrap .modal_readtext{
		font-size: 1.5rem;
	}
}
