@charset "UTF-8";
/************************************************************
 * UTF-8で保存してください。
 ************************************************************/

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
.content{
    margin: 0 auto;
    padding: 40px;
}
.modal{
    display: none;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}
.modal__bg{
    background: rgba(0,0,0,0.8);
    height: 100vh;
    position: absolute;
    width: 100%;
}
.modal__content{
    background: #fff;
    left: 50%;
    padding: 40px;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 940px;
    height: 80vh;
	overflow: auto;
}


#proContents .modal__inner{
	text-align: justify;
	font-size: 14px;
}
#proContents .modal__inner h3{
	font-size: 24px;
	line-height: 1.5;
	font-weight: bold;
	color: #c1272d;
	margin: 20px auto 0;
}
#proContents .modal__inner h3 span{
	font-size: 14px;
}
#proContents .modal__inner ul{
	padding-bottom: 60px;
	margin-bottom: 60px;
	border-bottom: 1px solid #b3b3b3;
}
#proContents .modal__inner ul.last{
	padding-bottom: 0;
	border-bottom: 0;
}
#proContents .modal__inner ul li{
	margin-top: 40px;
}
#proContents .modal__inner ul li h4{
	background: #595757;
	padding: 0 0 0 7px;
	font-weight: bold;
	font-size: 14px;
	margin-bottom: 10px;
	line-height: 1.8;
	color: #ffffff;
}
#proContents .modal__inner ul li span{
	font-size: 10px;
	line-height: 1.5;
}

#proContents .btn-mod,
#proContents a.btn-mod{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 4px 13px;
    color: #fff;
    background: rgba(34,34,34, .9);
    border: 2px solid transparent;
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 2px;
     
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
     
    -webkit-transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000);  
    -moz-transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000); 
    -o-transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000);
    -ms-transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000); 
    transition: all 0.2s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}
#proContents .btn-mod:hover,
#proContents .btn-mod:focus,
#proContents a.btn-mod:hover,
#proContents a.btn-mod:focus{
    font-weight: 400;
    color: rgba(255,255,255, .85);
    background: rgba(0,0,0, .7);
    text-decoration: none;
    outline: none;
}
#proContents .btn-mod:active{
    cursor: pointer !important;
}

#proContents .btn-mod.btn-large{
    padding: 12px 45px;
    font-size: 13px;
}
#proContents .btn-mod.btn-gray{
    color: #777;
    background: #e5e5e5;
}
#proContents .btn-mod.btn-gray:hover,
#proContents .btn-mod.btn-gray:focus{
    color: #444;
    background: #d5d5d5;
}
#proContents .btn-mod.btn-circle{
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
}
#proContents .btn-mod.btn-round{
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
}

#proContents .modal__closeButton{
	position: absolute;
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	justify-content: center;
	top: 0;
	right: 0;
	width: 50px;
	height: 50px;
	font-size: 30px;
	text-transform: uppercase;
	text-decoration: none;
	color: #777;
	background: #e5e5e5;
}
#proContents .modal__closeButton:hover,
#proContents .modal__closeButton:focus,
#proContents a.modal__closeButton:hover,
#proContents a.modal__closeButton:focus{
	color: #444;
	background: #d5d5d5;
	text-decoration: none;
	outline: none;
}
#proContents .modal__closeButton:active{
	cursor: pointer !important;
}