.g-button {
	display: inline-flex;
	align-items: center;
	padding: 0.85rem 1.4rem;
	color: var(--g-color-red);
	font-family: var(--g-font-mincho);
	font-size: 0.95rem;
	text-decoration: none;
	cursor: pointer;
}

.g-button--outline {
	background: transparent;
	color: var(--g-color-text);
}

/* テキスト + 右に丸矢印 */
.g-button--round {
	gap: 0.65rem;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--g-color-gold);
	font-size: 2.3rem;
	transition: transform 0.25s ease;
}

.g-button--round:hover {
	transform: translateX(0.35rem);
}

.g-button--round .g-button__arrow {
	display: inline-grid;
	place-items: center;
	width: 2.75rem;
	height: 2.75rem;
	border-radius: 50%;
	padding: .5rem;
	background: var(--g-color-gold);
	color: var(--g-color-white);
	font-size: .9rem;
	line-height: 1;
}

.g-button__arrow {
	font-family: var(--g-font-latin);
	font-style: normal;
}

.g-button__icon {
	display: block;
	flex: 0 0 auto;
	width: 2rem;
	height: 2rem;
}
