/*------------------------------------------

	アクセス

------------------------------------------*/
.sec1-box .box {
	padding-right: 30px;
	padding-left: 30px;
}
.sec1-box .txt-box {
	width: calc(100% - 60px);
	border-right: #c9c9c9 1px solid;
	border-left: #c9c9c9 1px solid;
	padding-top: 5px;
	padding-bottom: 10px;
	padding-right: 30px;
	padding-left: 30px;
	margin-right: auto;
	margin-left: auto;
	position: relative;
}
.sec1-box .txt-box::before,
.sec1-box .txt-box::after {
    content: "";
    width: 19px;
    height: 27px;
    background-size: contain;
    position: absolute;
}
/* webp */
.webp .sec1-box .txt-box::before,
.webp .sec1-box .txt-box::after {
    background-image: url(../images/common/quo.png.webp);
}
/* no-webp */
.no-webp .sec1-box .txt-box::before,
.no-webp .sec1-box .txt-box::after {
    background-image: url(../images/common/quo.png);
}
.sec1-box .txt-box::before {
    top: -20px;
    left: -10px;
}
.sec1-box .txt-box::after {
    bottom: -20px;
    right: -10px;
	transform: rotate(180deg);
}
.sec1-box .tit {
	color: #3f9aeb;
	margin-right: 61px;
	margin-left: 61px;
}

/*PC*/
@media screen and (min-width: 768px) {
}/*END*/


/*Smartphone*/
@media screen and (max-width: 767px) {
	.sec1-box .box {
		padding-right: 2%;
		padding-left: 2%;
	}
	.sec1-box .txt-box {
		width: 94%;
		padding-right: 2%;
		padding-left: 2%;
	}
	.sec1-box .txt-box::before,
	.sec1-box .txt-box::after {
		width: 14px;
		height: 20px;
	}
	.sec1-box .txt-box::before {
		top: -14px;
		left: -7px;
	}
	.sec1-box .txt-box::after {
		bottom: -14px;
		right: -7px;
	}
	.sec1-box .tit {
		margin-right: calc(4% + 1px);
		margin-left: calc(4% + 1px);
	}
}/*END*/