/* Journey: SOMEWHERE TODAY ― 今日どこかで開いている旅の時計 */
.vayu-journey-world-wrap{
	position:relative;
	z-index:3;
	margin-top:20px;
	max-width:min(100%,358px);
}
.vayu-journey-world-kicker{
	margin:0 0 8px;
	font-family:"Josefin Sans",sans-serif;
	font-size:10px;
	letter-spacing:.25em;
	color:#7a9278;
}
.vayu-journey-world{
	--jw-paper:#fafdff;
	--jw-line:rgba(95,139,158,.42);
	--jw-ink:#3f5b66;
	--jw-accent:#4f7787;
	display:flex;
	flex-direction:column;
	gap:6px;
	width:100%;
	padding:14px 18px;
	border:1px solid var(--jw-line);
	border-radius:26px 12px 26px 12px;
	background:linear-gradient(135deg,#dcedf5,var(--jw-paper));
	color:var(--jw-ink);
	text-decoration:none;
	box-shadow:0 14px 34px rgba(64,80,68,.11);
	transition:transform .32s ease,box-shadow .32s ease;
}
.vayu-journey-world:hover{
	transform:translateY(-3px) rotate(-1deg);
	box-shadow:0 12px 24px rgba(64,90,100,.14);
	color:var(--jw-ink);
}

.vjw-row1{
	display:flex;
	align-items:center;
	gap:13px;
	width:100%;
}

.vjw-clock{
	position:relative;
	flex:none;
	width:33px;
	height:33px;
	border:1px solid var(--jw-line);
	border-radius:50%;
	background:#fff;
}
.vjw-clock__h,.vjw-clock__m{
	position:absolute;
	left:50%;
	bottom:50%;
	background:var(--jw-accent);
	border-radius:2px;
	transform-origin:bottom center;
	transform:translateX(-50%) rotate(0deg);
}
.vjw-clock__h{width:2.5px;height:8px}
.vjw-clock__m{width:2px;height:11.5px}

.vjw-city{
	flex:none;
	font-family:"Josefin Sans",sans-serif;
	font-size:12.5px;
	font-weight:600;
	letter-spacing:.14em;
	white-space:nowrap;
	color:#3f5b46;
}
.vjw-time{
	flex:none;
	font-family:Georgia,serif;
	font-size:13px;
	letter-spacing:.02em;
	color:var(--jw-accent);
	white-space:nowrap;
}
.vjw-weather{
	display:flex;
	align-items:center;
	gap:5px;
	margin-left:auto;
	white-space:nowrap;
}
.vjw-weather__icon{
	flex:none;
	width:17px;
	height:17px;
	display:inline-block;
	color:var(--jw-ink);
}
.vjw-weather__icon svg{width:100%;height:100%;display:block}
.vjw-weather__temp{
	font-family:"Zen Kaku Gothic New",sans-serif;
	font-size:12px;
	font-weight:600;
	color:#334951;
}
.vjw-arrow{
	flex:none;
	font-size:13px;
	color:var(--jw-soft,#8ba7b3);
}

.vjw-linktext{
	margin-left:46px;
	font-family:"Zen Kaku Gothic New",sans-serif;
	font-size:10.5px;
	letter-spacing:.03em;
	color:#5d7a6a;
}

@media(max-width:600px){
	.vayu-journey-world-wrap{max-width:100%}
	.vayu-journey-world{padding:9px 12px;gap:8px;border-radius:999px}
	.vjw-row1{gap:8px}
	.vjw-clock{width:22px;height:22px}
	.vjw-clock__h{width:2px;height:6px}
	.vjw-clock__m{width:1.5px;height:9px}
	.vjw-city{font-size:10px}
	.vjw-time{font-size:11px}
	.vjw-weather__icon{width:14px;height:14px}
	.vjw-weather__temp{font-size:11px}
	.vjw-linktext{display:none}
}

@media(prefers-reduced-motion:reduce){
	.vayu-journey-world{transition:none}
}
