@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;
}

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

div.modal .pr_box h1{
	width:25%;
	max-width:180px;
	position:absolute;
	right:3%;
	top:3%;
}

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 h2{
	font-size:100px;
	font-weight:100;
}

div.modal .pr_box .inner h2:after{
	content:"";
	display:block;
	border-bottom:1px solid #fff;
	margin:30px auto;
	max-width:500px;
}

div.modal .pr_box .inner dt{
	font-size:25px;
	margin-bottom:20px;
}
	
div.modal .pr_box .inner dd{
	font-size:17px;
	line-height:2;
}

@media only screen and (max-width:640px) { 
div.modal .pr_box .inner{
	width:90%;
}    
div.modal .pr_box .inner h2{
	font-size:50px;
}

div.modal .pr_box .inner dt{
	font-size:18px;
}
div.modal .pr_box .inner dd{
	font-size:15px;
}
}

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

button{
  position: relative;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  margin: 50px auto 0;
  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;
} */