@import url("https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css");
@import url("https://fonts.googleapis.com/css?family=Zen Kaku Gothic New");
* {
    font-family: "Zen Kaku Gothic New";
}
a {
    text-decoration: none;
}
article {
	margin-top: 20px;
	padding: 20px;
	border-radius: 10px;
	background: #eeeeee;
}
article.reply {
    position: relative;
    margin-top: 15px;
    margin-left: 30px;
}
article.reply::before {
    position: absolute;
    top: -10px;
    left: 20px;
    display: block;
    content: "";
    border-top: none;
    border-left: 7px solid #f7f7f7;
    border-right: 7px solid #f7f7f7;
    border-bottom: 10px solid #fff;
}
.info {
	margin-bottom: 10px;
}
.info h2 {
	display: inline-block;
	margin-right: 10px;
	color: #222;
	line-height: 1.6em;
	font-size: 86%;
}
.info time {
	color: #999;
	line-height: 1.6em;
	font-size: 72%;
}
.info p {
	display: inline-block;
	line-height: 1.6em;
	font-size: 86%;
}
article p {
	color: #666;
	font-size: 86%;
	line-height: 1.6em;
}
.dli-clock {
	display: inline-block;
	vertical-align: middle;
	color: #aeaeae;
	line-height: 1;
	position: relative;
	width: 1em;
	height: 1em;
	border: 0.1em solid currentColor;
	border-radius: 50%;
	box-sizing: content-box;
	margin-right: 0.5em;
}
.dli-clock::before, .dli-clock::after {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 50%;
	background: currentColor;
	border-radius: 0.1em;
	transform: translate(-0.05em, 0.05em);
}
.dli-clock::before {
	width: 0.1em;
	height: 0.4em;
}
.dli-clock::after {
	width: 0.35em;
    height: 0.1em;
}
.tab-4 {
    display: flex;
    flex-wrap: wrap;
    max-width: 100%;
}

.tab-4 > label {
    flex: 1 1;
    order: -1;
    position: relative;
    min-width: 70px;
    padding: .7em 1em;
    background-color: #fafafa;
    color: #999;
            font-weight: 600;
    font-size: .9em;
    text-align: center;
    cursor: pointer;
}

.tab-4 > label:hover,
.tab-4 label:has(:checked) {
    background-color: #56ec4b;
    color: #fff;
}

.tab-4 label:has(:checked)::before {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 9px;
    background-color: #56ec4b;
    content: '';
    clip-path: polygon(0 0, 100% 0, 50% 100%);
}

.tab-4 input[type="radio"] {
    display: none;
}

.tab-4 > div {
    display: none;
    width: 100%;
    padding: 1.5em 1em;
}

.tab-4 label:has(:checked) + div {
    display: block;
}