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

div.modal {
	position: relative;
	display:none;
	z-index:999;
	text-align:center;
}
div.modal .pr_box {
	position:fixed;
	width:100vw;
	height:100vh;
	text-align:center;
	margin:auto;
	color:#fff;
	/* box-shadow:0px 0px 12px rgba(0,0,0,0.4);
	padding:40px;
	background:#FFFFFF; */
}

div.modal .pr_box a{
	color:#fff;
}

div.modal .pr_box .inner{
	width:80%;
	max-width:1000px;
	margin:auto;
	position:absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	text-align:center;
}

div.modal .pr_box .inner dt{
	max-width:450px;
	margin:0 auto;
}

/* div.modal .pr_box .inner dt:after{
	content:"×";
	display:block;
	font-size:120px;
	font-weight:100;
	line-height:1;
	margin-top:-40px;
} */
	
div.modal .pr_box .inner dd h1{
	font-size:80px;
	font-weight:300;
}



div.modal .pr_box .inner ol{
	margin:50px auto 50px;
}

div.modal .pr_box .inner ol li{
	display:inline-block;
	margin-left:12px;
	vertical-align:middle;
	color:#fff;
	font-size:30px;
	font-weight:normal;
}

@media only screen and (max-width:945px) { 
div.modal .pr_box .inner dt img{
	max-width:350px;
	width:100%;
}

div.modal .pr_box .inner dd{
	font-size:50px;
}

}






















/*.close_modal{
	display: block;
	 border:1px solid #fff;
	width: 150px;
	padding: 8px 0;
	margin:auto;
	letter-spacing:1px;
}
 .close_modal:hover {
	text-decoration: none;
	display: inline-table;
	color: #018ad1;
	border: 2px solid #018ad1;
	background: #fff;
}
.close_modal_no{
	display: block;
	width: 180px;
	line-height:50px;
	display: inline-table;
	-webkit-transition: all 200ms linear;
	-moz-transition: all 200ms linear;
	-o-transition: all 200ms linear;
	transition: all 200ms linear;
	-webkit-transition: all 300ms linear;
	-moz-transition: all 300ms linear;
	-o-transition: all 300ms linear;
	transition: all 300ms linear;
	color: #fff;
	border: 2px solid #60cfff;
	background: #60cfff;
	*display: inline;
	*zoom: 1;
}
.close_modal_no:hover {
	text-decoration: none;
	display: inline-table;
	color: #018ad1;
	border: 2px solid #60cfff;
	background: #fff;
}
 */


/*
ボタン
------------------------------------------------------------------------------------*/

button{
  position: relative;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  margin: 20px auto;
  border:1px solid #7e7e7e;
  background:none;
  /* border: none; */
  /* background: rgba(252,252,252,0.06); */
}
button span{
  display: block;
  padding: 15px 0;
  width:150px;
  letter-spacing:1px;
}
button::before, button::after{
  content:"";
  width: 0;
  height: 1px;
  position: absolute;
  transition: all 0.2s linear;
  background: #fff;
}

button span::before, span::after{
  content:"";
  width:1px;
  height:0;
  position: absolute;
  transition: all 0.2s linear;
  background: #fff;
}
button:hover::before, button:hover::after{
  width: 100%;
}
button:hover span::before, button:hover span::after{
  height: 100%;
}
/*----- button 1 -----*/
.btn-1::before, .btn-1::after{
  transition-delay: 0.2s;
}
.btn-1 span::before, .btn-1 span::after{
  transition-delay: 0s;
}
.btn-1::before{
  right: 0;
  top: 0;
}
.btn-1::after{
  left: 0;
  bottom: 0;
}
.btn-1 span::before{
  left: 0;
  top: 0;
}
.btn-1 span::after{
  right: 0;
  bottom: 0;
}
.btn-1:hover::before, .btn-1:hover::after{
  transition-delay: 0s;
}
.btn-1:hover span::before, .btn-1:hover span::after{
  transition-delay: 0.2s;
}


/* Reset */
/* @import url(//codepen.io/chrisdothtml/pen/ojLzJK.css);
.animate, .btn, .btn-border-o:before, .btn-border-o:after, .btn-border:before, .btn-border:after {
  transition: all 0.3s;
}

.btn {
  display: inline-block;
  line-height: 35px;
  margin: 8px;
  padding: 0 15px;
  font-size: 15px;
  position: relative;
  opacity: .999;
  border-radius: 3px;
}

.btn-border-o {
  background-color: transparent;
  border: 1px solid #d0d0d0;
}
.btn-border-o:before, .btn-border-o:after {
  content: '';
  border-style: solid;
  position: absolute;
  z-index: 5;
  border-radius: 3px;
  box-sizing: content-box;
}
.btn-border-o:before {
  width: 0;
  height: 100%;
  border-width: 1px 0 1px 0;
  top: -1px;
  left: 0;
  transition-delay: 0.05s;
}
.btn-border-o:after {
  width: 100%;
  height: 0;
  border-width: 0 1px 0 1px;
  top: 0;
  left: -1px;
}
.btn-border-o:hover:before {
  width: 100%;
}
.btn-border-o:hover:after {
  height: 100%;
}
.btn-border-o.btn-navy:before, .btn-border-o.btn-navy:after {
  border-color: #000;
}
.btn-border-o.btn-navy:hover {
  color: #ccc;
}

.btn-border {
  background-color: #e5e5e5;
  border: 1px solid #e5e5e5;
  color: #a6a6a6;
}
.btn-border:before, .btn-border:after {
  content: '';
  border-style: solid;
  position: absolute;
  z-index: 5;
  border-radius: 3px;
  box-sizing: content-box;
}
.btn-border:before {
  width: 0;
  height: 100%;
  border-width: 1px 0 1px 0;
  top: -1px;
  left: 0;
  transition-delay: 0.05s;
}
.btn-border:after {
  width: 100%;
  height: 0;
  border-width: 0 1px 0 1px;
  top: 0;
  left: -1px;
}
.btn-border:hover {
  background-color: transparent;
}
.btn-border:hover:before {
  width: 100%;
}
.btn-border:hover:after {
  height: 100%;
}
.btn-border.btn-navy:before, .btn-border.btn-navy:after {
  border-color: #34495e;
}
.btn-border.btn-navy:hover {
  color: #34495e;
} */