@charset "UTF-8";

/* Infomation 
---------------------------------------------------------------------
File Name :  byod.css
Create date :  2025/10/09

// Braek Points
// PC
@media screen and (max-width: 1099px) {
}
@media screen and (max-width: 979px) {
}
// Tablet
@media screen and (max-width: 767px) {
}
// Phone
@media screen and (max-width: 580px) {
}
---------------------------------------------------------------------
*/

/* --------------------------------
	contentsArea
-------------------------------- */
.ind-box-01 {
	text-align: center;
}
.ind-box-01 p {
	display: inline-block;
	margin: 20px auto 0 auto;
	padding: 0 40px;
	background-image:
		url(../images/byod/index/06_01.svg),
		url(../images/byod/index/06_02.svg);
	background-position:
		left center,
		right center;
	background-repeat: no-repeat, no-repeat;
	background-size: contain, contain;
}
.ind-bg-color-01 {
	background-color: #fffbc7 !important;
}
@media screen and (max-width: 767px) {
	.ind-box-01 p {
		display: block;
		width: 100%;
		margin: 10px auto 0 auto;
		padding: 0 20px;
		background-image:
			url(../images/byod/index/06_01@sp.svg),
			url(../images/byod/index/06_02@sp.svg);
	}
}

