@charset "utf-8";
/* CSS Document */
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
.content {
	margin: 0 auto;
	padding: 40px;
}
.modal {
	display: none;
	height: 100vh;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 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: 60%;
}
.access_modalbox {
    width: 80%;
    text-align: left;
    margin: auto;
}
.modal_txt01 {
	font-size: 20px;
	line-height: 35px;
	font-weight: bold;
}
.modal_txt01::before {
	content: "";
	width: 18px;
	height: 18px;
	background: #BC272D;
	display: inline-block;
	margin-right: 5px;
}
.modal_txt02 {
	font-size: 14px;
	line-height: 25px;
	font-weight: normal;
	margin-left: 25px;
	margin-top:10px;
	margin-bottom: 10px;
}
.modal_txt03 {
	font-size: 15px;
	line-height: 25px;
	font-weight: bold;
	margin-left: 25px;
	margin-top:10px;
	margin-bottom: 10px;
}
.modal_txt03::before {
	content: "";
	width: 18px;
	height: 2px;
	background: #BC272D;
	display: inline-block;
	margin-right: 5px;
	margin-bottom: 4px;
}
.modal_txt04 {
	font-size: 13px;
	line-height: 25px;
	font-weight: normal;
	margin-left: 48px;
	position: relative;
	margin-bottom: 30px;
}
.modal_txt04::before {
	content: '';
	position: absolute;
	left: 5px;
	bottom: -20px;
	width: 10px;
	height: 10px;
	border-top: solid 1px currentColor;
	border-right: solid 1px currentColor;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
	color: #000;
}
.modal_txt04::after {
	content: '';
	color: #000;
	position: absolute;
	margin-left: 10px;
	margin-top: 2px;
	width: 1px;
	height: 16px;
	background-color: currentColor;
	left: 0px;
	bottom: -20px;
}
.modal_txt05 {
	font-size: 13px;
	line-height: 25px;
	font-weight: normal;
	margin-left: 48px;
}
.batu_btn {
	display: inline-block;
	width: 50px;
	height: 50px;
	position: absolute;
	cursor: pointer;
	right:20px;
	top:20px;
}
.batu_btn span::before, .batu_btn span::after {
	display: block;
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 84%;
	height: 1px;
	margin: -8% 0 0 -42%;
	background: #333;
}
.batu_btn span::before {
	transform: rotate(-45deg);
}
.batu_btn span::after {
	transform: rotate(45deg);
}

@media screen and (max-width: 1024px) {
	
.modal__content {
    width: 80%;
}
}

@media screen and (max-width: 768px) {
	
.modal__content {
    overflow-y: scroll;
	height: 80%;
}
.access_modalbox {
    width: 100%;
    text-align: left;
    margin: auto;
}
::-webkit-scrollbar {
    width: 8px;
}
/*スクロールバーの軌道*/
::-webkit-scrollbar-track {
  border-radius: 8px;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, .1);
}
/*スクロールバーの動く部分*/
::-webkit-scrollbar-thumb {
  background-color: rgba(10, 20, 60, .5);
  border-radius: 8px;
  box-shadow:0 0 0 1px rgba(255, 255, 255, .3);
}
}

@media screen and (max-width: 480px) {

.modal_txt02 {
    margin-left: 0;
}
.modal_txt03 {
    margin-left: 0;
}
.modal_txt04 {
    margin-left: 0;
}
.modal_txt04::before {
    left: 25px;
}
.modal_txt04::after {
    left: 20px;
}
.modal_txt05 {
    margin-left: 0;
}
.batu_btn {
    width: 30px;
    height: 30px;
    right: 8px;
    top: 8px;
}
.batu_btn span::before, .batu_btn span::after {
    width: 64%;
}
}