<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/* CSS Document */

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.23);
  
}

.modal-box {
    background-color: #fff;
    margin: 100px auto 10%;
    max-width: 640px;
    width: 90%;
    animation-name: modalopen;
    animation-duration: 1s;
    position: relative;
    padding: 20px 20px 40px 20px;
  }

.modalClose{
  position: absolute;
  bottom: 0px;
  right: 0;
	left: 0;
}
.modalOpen{
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	font-size: 0.9rem;
	color: var(--blue);
	position: relative;
	padding-left: 25px;
	border: none;
	background-color: var(--white);
	text-decoration: underline;
	text-underline-offset: 6px;
}
.modalOpen:before{
	position: absolute;
	content: '';
	top: 1px;
	left:0;
	display: block;
	width: 20px;
	height: 20px;
	background-image: url("../images/icon_info.svg");
	background-size: contain;
	background-repeat: no-repeat;
}

/*モーダル内*/
.modal_title_box{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	margin-bottom: 24px;
}
.modal_title_box img{
	width: 100px;
	height: 100px;
}
.modal_title{
	margin-top: 16px;
	margin-left: 16px;
}
.modal_title_box p{
	margin-bottom: 6px;
}
.modal_text{
	margin-bottom: 24px;
	font-size: 0.95rem;
	letter-spacing: 0.075em;
	line-height: 1.8;
}
.modalClose{
	position: relative;
	padding-left: 24px;
	font-family: zeitung-micro, sans-serif;
	font-weight: 400;
	font-style: italic;
	font-size: 1rem;
	letter-spacing: 0.05em;
	color: var(--blue);
	display: table;
	margin-left: auto;
	margin-right: auto;
	border: none;
	background-color: var(--white);
}
.modalClose:before{
	position: absolute;
	content: '';
	top: 6px;
	left:0;
	display: block;
	width: 14px;
	height: 14px;
	background-image: url("../images/icon_close.svg");
	background-size: contain;
	background-repeat: no-repeat;
}</pre></body></html>