
ul.dot {
	padding-left: 2em;
	margin-top: 1em;
	margin-bottom: 1em;
}

ul.dot li:before {
	content: '●';
	margin-right: 0.5em;
	color: #004679;
}

ol.num {
	list-style: none;
	counter-reset: my-counter;
	padding-left: 2em;
	margin-top: 1em;
	margin-bottom: 1em;
}

ol.num li {
	counter-increment: my-counter;
	position: relative;
	padding-left: 1.5rem; 
}

ol.num li::before {
	content: counter(my-counter) ".";
	position: absolute;
	left: 0;
	top: 0;
	font-weight: bold;
	color: #004679;
}

.office-wrap {
	margin-top: 2em;
	margin-bottom: 2em;
}
.office-wrap .titlewrap {
	margin-bottom: 1em;
}

.detail {
	margin-top: 1em;
	display: flex;
	justify-content: flex-end;
}

.detail a {
	display: inline-block;
	position: relative;
	padding: 12px 30px 12px 45px;
	color: #fff;
	font-weight: bold;
	text-decoration: none;
	background: linear-gradient(to bottom, #2ea3f2, #115fb2);
	border-radius: 6px;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4), 0 2px 4px rgba(0, 0, 0, 0.2);
	text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.3);
}


.detail a:hover {
	background: linear-gradient(to bottom, #3ab3ff, #146cc7);
}

.detail a::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 20px;
	transform: translateY(-50%);
	border-style: solid;
	border-width: 5px 0 5px 7px;
	border-color: transparent transparent transparent #ffffff;
}

.flex-box {
	display: flex;

	align-items: center;
	gap: 30px;
	margin: 1em 0;
}
.flex-box .image {
	width: 45%;
}
.flex-box .image img {
	width: 100%;
}

@media only screen and (max-width: 1024px) {
	.flex-box {
		gap: 10px;
	}
	ol.num { 
		width: auto;
	}
	.flex-box .image {
		width: auto;
	}
}
@media only screen and (max-width: 768px) {
	.flex-box {
		flex-wrap: wrap;
		margin-bottom: 2em;
	}
	ol.num { 
		margin-bottom: 0.5em;
	}
	.flex-box .image {
		width: 100%;
		display: flex;
		justify-content: center;
	}
	.flex-box .image img {
		width: 80%;
	}
}
