/**
 * Riri Theme Skin presentation entry point.
 */

.riri-store {
	background: #ebebeb;
	color: #2c2c2c;
	padding: calc(7.5rem + 1.5rem) 0 clamp(2rem, 5vw, 4rem);
}

/* Store first view, scoped FAQ, and persistent CTA. */
.riri-store-fv {
	display: grid;
	grid-template-columns: minmax(0, 1.35fr) minmax(18rem, 0.8fr);
	min-height: 31rem;
	margin-bottom: clamp(2.5rem, 6vw, 5rem);
	background: #f5f6f2;
	overflow: hidden;
}

.riri-store-fv__media {
	position: relative;
	min-height: 31rem;
}

.riri-store-fv__image {
	position: absolute;
	inset: 0;
	margin: 0;
}

.riri-store-fv__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.riri-store-fv__media--multiple .riri-store-fv__image--1 {
	right: 32%;
}

.riri-store-fv__media--multiple .riri-store-fv__image--2 {
	left: 68%;
	bottom: 50%;
}

.riri-store-fv__media--multiple .riri-store-fv__image--3 {
	left: 68%;
	top: 50%;
}

.riri-store-fv__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: clamp(2rem, 5vw, 5rem);
}

.riri-store-fv__area {
	margin: 0 0 0.75rem;
	color: #3aaf90;
	font-weight: 700;
	letter-spacing: 0.12em;
}

.riri-store-fv__title {
	margin: 0;
	font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Noto Serif JP", serif;
	font-size: clamp(2rem, 3.5vw, 3.75rem);
	font-weight: 500;
	line-height: 1.35;
}

.riri-store-fv__lead {
	margin: 1.5rem 0 0;
	font-size: 1rem;
	line-height: 1.9;
}

.riri-store-fv__cta {
	align-self: flex-start;
	margin-top: 1.75rem;
	padding: 0.9rem 1.6rem;
	border: 1px solid #3aaf90;
	background: #3aaf90;
	color: #fff;
	font-weight: 700;
	text-decoration: none;
}

.riri-store-faq__list {
	display: grid;
	gap: 0.75rem;
}

.riri-store-faq__item {
	border: 1px solid #dce7e2;
	background: #fff;
}

.riri-store-faq__item summary {
	cursor: pointer;
	padding: 1rem 1.25rem;
	font-weight: 700;
	line-height: 1.6;
}

.riri-store-faq__item summary > span,
.riri-store-faq__answer-mark {
	color: #3aaf90;
	font-family: "Cormorant", serif;
	font-size: 1.4em;
}

.riri-store-faq__answer {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: 0.75rem;
	padding: 0 1.25rem 1.25rem;
}

.riri-store-cta {
	position: fixed;
	right: 1rem;
	bottom: 1rem;
	z-index: 900;
	width: min(25rem, calc(100vw - 2rem));
}

.riri-store-cta__expanded {
	position: relative;
	padding: 1.5rem;
	border: 1px solid rgba(58, 175, 144, 0.35);
	border-radius: 0.75rem;
	background: #fff;
	box-shadow: 0 1rem 2.5rem rgba(20, 48, 40, 0.2);
}

.riri-store-cta__close {
	position: absolute;
	top: 0.5rem;
	right: 0.5rem;
	width: 2.5rem;
	height: 2.5rem;
	border: 0;
	border-radius: 50%;
	background: #f1f4f2;
	font-size: 1.5rem;
	cursor: pointer;
}

.riri-store-cta__eyebrow {
	margin: 0 2.5rem 0.4rem 0;
	color: #3aaf90;
	font-weight: 700;
}

.riri-store-cta__title {
	margin: 0 2.5rem 1rem 0;
	font-size: 1.35rem;
	line-height: 1.45;
}

.riri-store-cta__description {
	margin: 0 0 1rem;
}

.riri-store-cta__link,
.riri-store-cta__minimized {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 3rem;
	padding: 0.7rem 1rem;
	border: 0;
	border-radius: 0.35rem;
	background: #3aaf90;
	color: #fff;
	font-weight: 700;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
}

.riri-store-cta__minimized {
	gap: 0.75rem;
	box-shadow: 0 0.6rem 1.5rem rgba(20, 48, 40, 0.2);
}

.riri-store-cta button:focus-visible,
.riri-store-cta a:focus-visible {
	outline: 3px solid #173f34;
	outline-offset: 3px;
}

@media (max-width: 74.9375rem) {
	.riri-store-fv {
		grid-template-columns: 1fr;
	}

	.riri-store-fv__media,
	.riri-store-fv {
		min-height: auto;
	}

	.riri-store-fv__media {
		aspect-ratio: 16 / 9;
	}
}

@media (max-width: 64rem) {
	.riri-store {
		padding-top: calc(5rem + 1rem);
	}
}

@media (max-width: 47.9375rem) {
	.riri-store-fv__media {
		aspect-ratio: 4 / 3;
	}

	.riri-store-fv__media--multiple .riri-store-fv__image--1 {
		right: 0;
	}

	.riri-store-fv__media--multiple .riri-store-fv__image--2,
	.riri-store-fv__media--multiple .riri-store-fv__image--3 {
		display: none;
	}

	.riri-store-fv__content {
		padding: 1.5rem;
	}

	.riri-store-fv__cta {
		align-self: stretch;
		text-align: center;
	}

	.riri-store-cta {
		right: 0.5rem;
		bottom: 0.5rem;
		width: calc(100vw - 1rem);
	}

	.riri-store-cta__expanded {
		max-height: min(23rem, calc(100vh - 5rem));
		overflow: auto;
		padding: 1.25rem;
	}
}

@media (max-width: 30rem) {
	.riri-store {
		padding-top: calc(4rem + 1rem);
	}
}

.riri-store__layout {
	display: grid;
	gap: clamp(2rem, 5vw, 4rem);
	grid-template-columns: minmax(0, 1fr);
	margin-inline: auto;
	max-width: 1200px;
	padding-inline: 1rem;
}

.riri-store__main,
.riri-store__article,
.riri-store-card__body {
	min-width: 0;
}

.riri-store__main,
.riri-skin-sidebar {
	background: #fff;
	padding: clamp(1rem, 3vw, 2rem);
}

.riri-store__header,
.riri-store__section,
.riri-store__content {
	margin-block-end: 2rem;
}

.riri-store__thumbnail {
	margin: 1.5rem 0 0;
}

.riri-store__thumbnail-image {
	display: block;
	height: 21.875rem;
	max-width: 100%;
	object-fit: cover;
	width: 100%;
}

.riri-store__title {
	color: #3aaf90;
	font-size: 2rem;
	line-height: 1.6;
	text-align: center;
}

.riri-store__section-title,
.riri-store__archive-title {
	border-bottom: 1px solid #252525;
	font-size: clamp(1.4rem, 3vw, 1.8rem);
	line-height: 1.4;
	margin-bottom: 1.875rem;
	padding: 0.625rem 0 1.875rem;
	text-align: center;
}

.riri-store__detail-list {
	margin: 0;
}

.riri-store__detail-row {
	border-block-start: 1px solid #ececec;
	display: grid;
	gap: 0;
}

.riri-store__detail-row:last-child {
	border-block-end: 1px solid #ececec;
}

.riri-store__detail-row dt {
	background: #ecffe7;
	font-weight: 700;
	padding: 1rem;
}

.riri-store__detail-row dd {
	margin: 0;
	padding: 1rem;
}

.riri-store__feature-list,
.riri-store__links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.riri-store__feature {
	align-items: center;
	background: #fff;
	border: 1px solid #d8e8e0;
	border-radius: 0.75rem;
	display: flex;
	justify-content: center;
	min-height: 4rem;
	padding: 0.75rem 1rem;
	text-align: center;
}

.riri-store__link,
.riri-store-card__more {
	border: 1px solid #3aaf90;
	color: #3aaf90;
	display: inline-flex;
	justify-content: center;
	padding: 0.75rem 1.25rem;
	text-decoration: none;
}

.riri-store__map-frame {
	aspect-ratio: 16 / 9;
}

.riri-store__map-frame iframe {
	border: 0;
	height: 100%;
	width: 100%;
}

.riri-store__cards {
	display: grid;
	gap: 1.5rem;
}

.riri-store-card {
	border: 0;
	display: grid;
	gap: 0;
}

.riri-store-card__thumbnail img {
	display: block;
	height: 13.75rem;
	object-fit: cover;
	width: 100%;
}

.riri-store-card__body {
	padding: 1rem;
}

.riri-store-card__title,
.riri-store-card__excerpt,
.riri-store-card__address {
	border-bottom: 1px solid #7b7b7b;
	padding-bottom: 0.75rem;
}

@media (min-width: 48rem) {
	.riri-store__detail-row {
		grid-template-columns: minmax(8rem, 12rem) minmax(0, 1fr);
	}

	.riri-store__cards {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 30rem) {
	.riri-store__thumbnail-image {
		height: 15rem;
	}

	.riri-store__feature {
		flex: 1 1 calc(50% - 0.75rem);
	}
}

@media (min-width: 75rem) {
	.riri-store__layout--with-sidebar {
		grid-template-columns: minmax(0, 1fr) minmax(16rem, 20rem);
	}
}

/* Riri site chrome compatibility. */
body {
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, sans-serif;
	font-size: 1rem;
	line-height: 1.5;
}

.site-header {
	background: transparent;
	border-bottom: 3px solid #3aaf90;
	left: 0;
	position: fixed;
	right: 0;
	top: 0;
	transition: background-color 0.2s ease;
	z-index: 99;
}

.site-header[data-riri-scrolled],
.site-header.is-navigation-open {
	background: #fff;
}

.admin-bar .site-header {
	top: 32px;
}

.riri-nav-overlay {
	background: rgba(51, 51, 51, 0.8);
	border: 0;
	bottom: 0;
	cursor: pointer;
	left: 0;
	opacity: 0;
	padding: 0;
	pointer-events: none;
	position: fixed;
	right: 0;
	top: 0;
	transition: opacity 0.6s ease;
	visibility: hidden;
	z-index: 98;
}

.riri-nav-overlay.is-active {
	opacity: 1;
	pointer-events: auto;
	visibility: visible;
}

@media (min-width: 64.0625rem) {
	.site-header {
		border-bottom-width: 3px;
	}

	.site-header__inner {
		align-items: center;
		display: flex;
		gap: 0;
		height: 7.5rem;
		justify-content: space-between;
		margin-inline: 0;
		padding: 0;
		width: 100%;
	}

	.site-branding {
		align-items: center;
		display: flex;
		flex: 1 1 auto;
		gap: 1rem;
		min-width: 0;
		padding-inline: 1.875rem;
	}

	.site-branding::after {
		color: #2c2c2c;
		content: "志木・新座の\Aパーソナルジム\A Riri";
		font-size: 0.9rem;
		font-weight: 700;
		line-height: 1.5;
		white-space: pre;
	}

	.site-logo img {
		max-height: 5.625rem;
		max-width: 19.25rem;
	}

	.site-nav {
		align-self: stretch;
		flex: 0 0 auto;
		min-width: 0;
	}

	.site-nav__list {
		align-items: center;
		gap: 0;
		flex-wrap: nowrap;
		height: 7.5rem;
		margin: 0;
	}

	.site-nav__list > li {
		height: 7.5rem;
		position: relative;
	}

	.site-nav__list > li > a {
		align-items: center;
		display: flex;
		font-size: 1rem;
		font-weight: 400;
		height: 7.5rem;
		justify-content: center;
		letter-spacing: normal;
		line-height: 1.5rem;
		overflow: hidden;
		padding: 0 0.9375rem;
		position: relative;
		text-align: center;
		transition: color 0.2s ease;
		z-index: 0;
	}

	.site-nav__list > li > a::before {
		background: #3aaf90;
		content: "";
		inset: 0;
		position: absolute;
		transform: scaleY(0);
		transform-origin: bottom;
		transition: transform 0.4s ease;
		z-index: -1;
	}

	.site-nav__list > li:hover > a,
	.site-nav__list > li:focus-within > a {
		color: #fff;
	}

	.site-nav__list > li:hover > a::before,
	.site-nav__list > li:focus-within > a::before {
		transform: scaleY(1);
		transform-origin: top;
	}

	.site-nav__list .sub-menu {
		background: rgba(58, 175, 144, 0.94);
		border: 0;
		display: none;
		left: 0;
		list-style: none;
		margin: 0;
		min-width: 11.25rem;
		padding: 0;
		position: absolute;
		top: 100%;
		z-index: 20;
	}

	.site-nav__list li:focus-within > .sub-menu,
	.site-nav__list li:hover > .sub-menu {
		display: block;
	}

	.site-nav__list .sub-menu li {
		border-bottom: 1px dotted #fff;
		height: 2.5rem;
	}

	.site-nav__list .sub-menu a {
		color: #fff;
		display: block;
		font-size: 0.9rem;
		font-weight: 400;
		letter-spacing: normal;
		line-height: 2.5rem;
		padding: 0 0.9375rem;
		text-decoration: none;
		white-space: nowrap;
	}

	.site-nav__list .sub-menu a:hover,
	.site-nav__list .sub-menu a:focus-visible {
		background: #fff;
		color: #3aaf90;
	}

	.site-nav__list > li:last-child > a {
		background: #3aaf90;
		color: #fff;
		min-width: 12.5rem;
		padding: 0 0.9375rem;
		text-decoration: none;
	}
}

@media (min-width: 64.0625rem) and (max-width: 74.9375rem) {
	.site-branding {
		flex-basis: 12rem;
		padding-inline: 1rem;
	}

	.site-branding::after {
		display: none;
	}

	.site-logo img {
		max-width: 10rem;
	}

	.site-nav__list > li > a {
		font-size: 0.8rem;
		padding-inline: 0.45rem;
	}

	.site-nav__list > li:last-child > a {
		min-width: 7.5rem;
		padding-inline: 0.6rem;
	}
}

@media (max-width: 64rem) {
	.site-header {
		background: #fff;
	}

	.site-header__inner {
		align-items: center;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		padding-block: 0.6875rem;
	}

	.site-nav-toggle {
		border-color: #3aaf90;
		color: #3aaf90;
		display: inline-flex;
		position: relative;
		z-index: 300;
	}

	.variable-thema-navigation-ready .site-nav {
		display: none;
		width: 100%;
	}

	.variable-thema-navigation-ready .site-header.is-navigation-open .site-nav {
		display: block;
		max-height: 100dvh;
		overflow-y: auto;
	}

	.site-header.is-navigation-open .site-nav {
		background: #3aaf90;
		height: 100vh;
		height: 100dvh;
		padding-top: 3.75rem;
		position: fixed;
		right: 0;
		top: 0;
		width: min(18.75rem, 86vw);
		z-index: 200;
	}

	.site-nav__list {
		display: grid;
		gap: 0;
		margin-top: 1rem;
	}

	.site-nav__list > li {
		border-bottom: 1px dotted #fff;
		background: #3aaf90;
	}

	.site-nav__list a {
		color: #fff;
		display: block;
		font-size: 1rem;
		font-weight: 600;
		letter-spacing: normal;
		line-height: 1.5;
		padding: 0.625rem 0.9375rem;
		text-decoration: none;
	}

	.site-nav__list > li > a::before {
		content: "▶︎";
		margin-right: 0.25rem;
	}

	.site-nav__list .sub-menu {
		list-style: none;
		margin: 0 0 0.9375rem;
		padding-inline-start: 1.5625rem;
	}

	.site-nav__list .sub-menu a {
		font-weight: 300;
	}

	.site-nav__list .sub-menu a::before {
		content: "→ ";
	}
}

@media (max-width: 48.875rem) {
	.admin-bar .site-header {
		top: 46px;
	}
}

@media (max-width: 30rem) {
	.site-logo img {
		display: block;
		height: auto;
		max-height: 3.25rem;
		max-width: min(11rem, 50vw);
		object-fit: contain;
		width: auto;
	}
}

/* Production Home compatibility. All selectors are isolated to the Skin Home. */
.riri-home {
	--riri-home-accent: #3aaf90;
	--riri-home-dark: #30302f;
	--riri-home-tint: #ebebeb;
	color: var(--riri-home-dark);
}

body.home {
	background: var(--riri-home-tint, #ebebeb);
}

/* Fixed-page compatibility for legacy Gutenberg pattern class names. */
.riri-page .site-main__inner {
	margin: 0;
	padding: 0;
	width: 100%;
}

.riri-page .vt-page-header--hero {
	background: #fff;
	border: 0;
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	height: 21.25rem;
	margin: 0;
	padding: 0;
	position: relative;
}

.riri-page .vt-page-header__media {
	grid-column: 1;
	grid-row: 1;
	height: 21.25rem;
	margin: 0;
}

.riri-page .vt-page-header__image {
	display: block;
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.riri-page .vt-page-header__overlay {
	background: rgba(0, 0, 0, 0.6);
	grid-column: 1;
	grid-row: 1;
	z-index: 1;
}

.riri-page .vt-page-header__inner {
	align-items: center;
	display: flex;
	grid-column: 2;
	grid-row: 1;
	padding: 10%;
}

.riri-page .vt-page-header__title {
	color: #3aaf90;
	font-family: "Cormorant", serif;
	font-size: 2.5rem;
	font-weight: 600;
	line-height: 3rem;
}

.riri-page__breadcrumb {
	background: #ebebeb;
	padding-block: 2rem;
}

.riri-page__breadcrumb .vt-breadcrumb {
	box-sizing: border-box;
	margin: 0 auto;
	max-width: 75rem;
	padding-inline: 2%;
}

.riri-page .vt-entry--page {
	background: #ebebeb;
	margin: 0;
}

.riri-page .vt-entry__content {
	color: #2c2c2c;
	font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, sans-serif;
	font-size: 1rem;
	line-height: 1.5;
}

.riri-page .vt-entry__content .fullwide_sec {
	align-self: stretch;
	box-sizing: border-box;
	margin-inline: 0;
	max-width: none;
	padding: 1.875rem 0 1.25rem;
	width: 100%;
}

.riri-page .vt-entry__content .container {
	box-sizing: border-box;
	margin-inline: auto;
	max-width: 75rem;
	padding: 2%;
	width: 96%;
}

/*
 * Core Group blocks add an inner layout wrapper that did not exist when the
 * legacy pattern CSS was authored. Keep that wrapper from re-constraining the
 * full-width section and its container.
 */
.riri-page .vt-entry__content :where(.fullwide_sec, .container) > .wp-block-group__inner-container {
	box-sizing: border-box;
	max-width: none;
	width: 100%;
}

.riri-page .vt-entry__content .container > :where(.wp-block-columns, .wp-block-group, .wp-block-table) {
	max-width: none;
	width: 100%;
}

.riri-page .page-box {
	box-sizing: border-box;
	padding: 1% 4% 1.25rem;
}

.riri-page .vt-entry__content h2.wp-block-heading:not(.green_under):not(.fulsec_title),
.riri-page .single-h2,
.riri-page .sidetitle {
	border-left: 10px solid #3aaf90;
	font-weight: 600;
	padding: 0.625rem;
}

.riri-page .vt-entry__content h3.wp-block-heading,
.riri-page .single-h3 {
	border-bottom: 1px solid #252525;
	font-weight: 400;
	padding: 0.625rem;
}

.riri-page .single-h4 {
	color: #3aaf90;
	font-weight: 400;
	padding: 0.625rem;
	text-align: center;
}

.riri-page .special-txt {
	color: #3aaf90;
	font-weight: 700;
	padding: 0.625rem;
	text-align: center;
	text-decoration: none;
}

.riri-page .fulsec_title {
	color: #fff;
	font-family: "Cormorant", serif;
	font-size: 8.8rem;
	font-weight: 700;
	line-height: 1.5rem;
	margin: 4.375rem 0 6.25rem;
	position: relative;
	text-align: center;
}

.riri-page .fulsect_capt {
	color: #3aaf90;
	display: block;
	font-family: "Cormorant", serif;
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 2.2rem;
	position: absolute;
	top: 150%;
	width: 100%;
}

.riri-page .sec_caption {
	margin: 0 auto 3.125rem;
	width: 80%;
}

.riri-page .capcenter {
	text-align: center;
}

.riri-page .green_under {
	border: 0;
	font-family: "Cormorant", serif;
	font-size: 1.4rem;
	line-height: 2rem;
	margin-bottom: 3.75rem;
	padding: 0;
	position: relative;
	text-align: center;
}

.riri-page .green_under::before {
	background: #3aaf90;
	border-radius: 2px;
	bottom: -0.9375rem;
	content: "";
	height: 5px;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	width: 3.75rem;
}

.riri-page .trial_feat {
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 0 5px rgba(200, 200, 200, 0.8);
	box-sizing: border-box;
	padding: 2%;
}

.riri-page .flatbtn {
	background: #3aaf90;
	color: #fff;
	display: block;
	margin: 2rem auto;
	max-width: 40rem;
	padding: 1rem;
	text-align: center;
	text-decoration: none;
}

.riri-page .flatbtn_min,
.riri-page .bigin-button {
	border: 1px solid #3aaf90;
	color: #3aaf90;
	display: block;
	font-weight: 500;
	margin: 1.25rem auto;
	padding: 0.75rem 1rem;
	text-align: center;
	text-decoration: none;
}

.riri-page .fullwide_sec.whit_blk {
	background: #fff;
	padding-bottom: 0;
}

.riri-page .fullwide_sec.grd_blk {
	background: linear-gradient(to bottom, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.riri-page .fullwide_sec.std_blk {
	background: #ebebeb;
}

.riri-page .fullwide_sec.trl_blk {
	background-color: #ebebeb;
	background-image: url("../images/common/landing01.png");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

@media (min-width: 64.0625rem) {
	.riri-page .vt-entry__content .container {
		box-sizing: content-box;
	}

	.riri-page .fullwide_sec.std_blk {
		background-color: #ebebeb;
		background-image: url("../images/common/wave.png");
		background-position: center bottom;
		background-repeat: no-repeat;
	}
}

.riri-page .trl_blk .green {
	color: #3aaf90;
}

.riri-page .trl_blk .ping-container {
	background: #fff;
	border-radius: 8px;
	box-sizing: border-box;
	margin: 0 auto 1.875rem;
	max-width: 61.25rem;
	padding: 3%;
	width: 100%;
}

.riri-page .trl_blk .ping-container img {
	display: block;
	height: auto;
	width: 100%;
}

.riri-page .trial_list {
	counter-reset: riri-trial-number;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
	list-style: none;
	margin: 0 auto;
	max-width: 62.5rem;
	padding: 0;
	width: 100%;
}

.riri-page .trial_list li {
	border-right: 1px solid #525252;
	box-sizing: border-box;
	height: auto;
	margin: 0 0 1.875rem;
	padding-inline: 2%;
	width: 29%;
}

.riri-page .trial_list li:last-child {
	border-right: 0;
	width: 61%;
}

.riri-page .trial_list .trtitle {
	color: #525252;
	font-size: 0.9rem;
	font-weight: 400;
	height: 2.5rem;
	margin: 0 0 0.625rem;
	width: 100%;
}

.riri-page .trial_list .trtitle::before {
	background: #525252;
	border-radius: 50%;
	color: #fff;
	content: counter(riri-trial-number);
	counter-increment: riri-trial-number;
	font-weight: 600;
	margin-right: 0.625rem;
	padding: 0.5rem;
	text-align: center;
}

.riri-page .trial_list img {
	display: block;
	height: auto;
	width: 100%;
}

.riri-page .trial_list li:last-child img {
	margin-inline: auto;
	width: 49%;
}

.riri-page .trial_list .tr_disc {
	font-size: 0.9rem;
	font-weight: 400;
}

.riri-page .map_blk iframe {
	display: block;
	margin: 0;
	max-width: 100%;
	padding: 0;
}

.riri-page .centerflx_box {
	display: flex;
	justify-content: space-evenly;
	padding-top: 2.5rem;
	width: 100%;
}

.riri-page .artic_box {
	margin-inline: 1%;
	max-width: 48%;
	min-width: 28%;
	width: 45%;
}

.riri-page .artic_box img,
.riri-page .artic_box .clumimg {
	display: block;
	height: auto;
	margin-inline: auto;
	width: 100%;
}

.riri-page .biginer_clum,
.riri-page .taiken_clum {
	width: 100%;
}

.riri-page .biginer_clum {
	counter-reset: riri-pattern-card;
}

.riri-page .biginer_clum .card,
.riri-page .taiken_clum .card {
	border: 1px solid #ececec;
	border-radius: 10px;
	padding: 1.5%;
}

.riri-page .biginer_clum .card {
	counter-increment: riri-pattern-card;
}

.riri-page .biginer_clum .card::before {
	align-items: center;
	background: linear-gradient(90deg, #a8ffb1, #25b864);
	background-clip: text;
	color: transparent;
	content: "0" counter(riri-pattern-card);
	display: flex;
	font-size: 2rem;
	font-weight: 700;
	height: 3.125rem;
	justify-content: center;
	text-align: center;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	width: 100%;
}

.riri-page .biginer_clum .card h4,
.riri-page .taiken_clum .card h4 {
	color: #3aaf90;
}

.riri-page .biginer_clum .card p,
.riri-page .taiken_clum .card p {
	font-size: 0.8rem;
}

.riri-page .biginer_clum .card .bigin-button {
	align-items: center;
	background: #41b883;
	border: 0;
	border-radius: 20px;
	color: #fff;
	display: flex;
	font-size: 0.8rem;
	justify-content: center;
	min-height: 2.5rem;
	width: 96%;
}

.riri-page .biginer_flex {
	align-items: stretch;
	display: flex;
	width: 100%;
}

.riri-page .before_title {
	align-items: center;
	background: linear-gradient(90deg, #a8ffb1, #25b864);
	background-clip: text;
	color: transparent;
	display: flex;
	font-size: 2rem;
	font-weight: 700;
	justify-content: center;
	margin: 0;
	padding: 3%;
	text-align: center;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.riri-page .before_element {
	border-left: 1px solid #242424;
	padding: 1% 3%;
}

.riri-page .trl_blk .trial-container {
	box-sizing: border-box;
	display: flex;
	margin: 1.875rem auto 0;
	max-width: 60rem;
	width: 100%;
}

.riri-page .trl_blk .leftdisc {
	margin-right: 2%;
	width: 78%;
}

.riri-page .trl_blk .rightpic {
	width: 20%;
}

.riri-page .trl_blk .rightpic img {
	display: block;
	height: auto;
	width: 100%;
}

.riri-page .riritable {
	border-collapse: collapse;
	margin-inline: auto;
	width: 100%;
}

.riri-page .riritable th {
	background: #3aaf90;
	border: 1px solid #fff;
	color: #fff;
	padding: 1%;
}

.riri-page .riritable td {
	border: 1px dotted #2c2c2c;
	padding: 1%;
}

.riri-page .riritable tbody tr:nth-child(odd) td {
	background: #e5fff8;
}

.riri-page .hikakuhyou {
	overflow-x: auto;
	width: 100%;
}

.riri-page .hikakuhyou .riritable {
	background: #fff;
	min-width: 200%;
}

.riri-page .hikakuhyou .riritable td {
	padding: 0.5%;
	text-align: center;
}

.riri-page .hikakuhyou .riritable th {
	padding: 0.5%;
}

.riri-page .hikakuhyou .riritable th:first-child {
	width: 8.75rem;
}

.riri-page .pricedirection {
	align-items: flex-end;
	display: flex;
}

.riri-page .pricedirection dl {
	border-right: 1px solid #b8b8b8;
	margin: 0;
	width: 33.333%;
}

.riri-page .pricedirection dl:last-child {
	border-right: 0;
}

.riri-page .pricedirection dt {
	background: #77d5bc;
	box-sizing: content-box;
	color: #fff;
	font-size: 1.6rem;
	font-weight: 600;
	height: 3.125rem;
	line-height: 3.125rem;
	padding: 0.625rem;
	text-align: center;
}

.riri-page .pricedirection dl:first-child dt {
	background: #3aaf90;
}

.riri-page .pricedirection dl:first-child dt,
.riri-page .pricedirection dl:last-child dt {
	font-size: 1.4rem;
	height: 1.875rem;
	line-height: 1.875rem;
}

.riri-page .pricedirection dl:last-child dt {
	background: #1f6754;
}

.riri-page .pricedirection dd {
	background: #fff;
	margin: 0;
	min-height: 18.75rem;
	padding: 4%;
}

.riri-page .pricedirection .price,
.riri-page .pricedirection .time-dicri,
.riri-page .pricedirection .onetime-price {
	border-bottom: 1px solid #000;
	padding: 1% 4%;
	text-align: center;
}

.riri-page .pricedirection .price {
	color: #be6b58;
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.8rem;
}

.riri-page .pricedirection .time-dicri {
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1rem;
}

.riri-page .pricedirection .onetime-price {
	color: #e08b8b;
	font-size: 1.8rem;
	font-weight: 600;
	line-height: 1rem;
}

.riri-page .pricedirection .moment,
.riri-page .pricedirection .little {
	color: #000;
	font-size: 0.7rem;
	font-weight: 200;
}

.riri-page .pricedirection .moment {
	font-size: 0.6rem;
}

.riri-page .pricedirection .little {
	margin-right: 1.875rem;
}

@media (max-width: 64rem) {
	.riri-page .vt-page-header--hero {
		display: block;
		height: auto;
	}

	.riri-page .vt-page-header__media {
		height: 18.75rem;
	}

	.riri-page .vt-page-header__overlay {
		display: none;
	}

	.riri-page .vt-page-header__inner {
		background: #fff;
		display: block;
		padding: 1.5rem 5%;
	}

	.riri-page .vt-page-header__title {
		font-size: 1.4rem;
		line-height: 2.2rem;
		margin: 0;
		text-align: center;
	}

	.riri-page .vt-entry__content .container {
		width: 100%;
	}

	.riri-page .pricedirection {
		justify-content: center;
	}

	.riri-page .pricedirection dl {
		width: 31%;
	}

	.riri-page .pricedirection .price {
		padding-block: 2% 6%;
	}

	.riri-page .pricedirection .time-dicri {
		padding-block: 2%;
	}

	.riri-page .pricedirection .onetime-price {
		padding-block: 2% 8%;
	}

	.riri-page .pricedirection .little {
		display: block;
		line-height: 2rem;
	}

	.riri-page .trial_feat {
		margin-inline: auto;
		width: 90%;
	}

	.riri-page .trial_list {
		width: 90%;
	}
}

@media (min-width: 30.0625rem) and (max-width: 64rem) {
	.riri-page .centerflx_box,
	.riri-page .slide_block {
		align-items: stretch;
		flex-direction: row;
		overflow-x: visible;
		padding-bottom: 0;
		padding-top: 0;
	}

	.riri-page .artic_box {
		margin-inline: 1%;
		max-width: 48%;
		min-width: 28%;
		text-align: initial;
		width: auto;
	}

	.riri-page .trl_blk .trial-container {
		align-items: stretch;
		flex-direction: row;
		padding-inline: 2%;
	}

	.riri-page .trl_blk .leftdisc {
		margin-right: 2%;
		width: 73%;
	}

	.riri-page .trl_blk .rightpic {
		width: 25%;
	}

	.riri-page .trl_blk .ping-container {
		width: 90%;
	}
}

@media (max-width: 30rem) {
	.riri-page .centerflx_box,
	.riri-page .slide_block {
		align-items: flex-start;
		flex-direction: column;
		overflow-x: auto;
		padding-bottom: 3%;
	}

	.riri-page .artic_box {
		margin-inline: auto;
		max-width: none;
		min-width: 90%;
		text-align: center;
		width: auto;
	}

	.riri-page .trl_blk .trial-container {
		align-items: center;
		flex-direction: column;
		width: 84%;
	}

	.riri-page .trl_blk .leftdisc,
	.riri-page .trl_blk .rightpic {
		margin-right: 0;
		width: 100%;
	}

	.riri-page .trl_blk .ping-container {
		width: 90%;
	}

	.riri-page .fulsec_title {
		font-size: 3rem;
		margin: 1.25rem 0 5.625rem;
	}

	.riri-page .fulsect_capt {
		font-size: 1.3rem;
		line-height: 1.6rem;
	}

	.riri-page .sec_caption {
		margin-bottom: 2.5rem;
		padding-top: 1.875rem;
		width: 90%;
	}

	.riri-page .flatbtn_min,
	.riri-page .bigin-button {
		padding: 3%;
		width: 80%;
	}

	.riri-page .pricedirection {
		align-items: center;
		flex-direction: column;
	}

	.riri-page .pricedirection dl {
		border-right: 0;
		width: 90%;
	}

	.riri-page .hikakuhyou .riritable {
		min-width: 500%;
	}

	.riri-page .trial_list {
		flex-direction: column;
	}

	.riri-page .trial_list li,
	.riri-page .trial_list li:last-child {
		border: 0;
		margin: 0 4% 1.875rem;
		padding: 0;
		width: 92%;
	}

	.riri-page .trial_list li:last-child img {
		width: 100%;
	}
}

.riri-home img {
	display: block;
	height: auto;
	max-width: 100%;
}

.riri-home__container {
	box-sizing: border-box;
	margin-inline: auto;
	max-width: 75rem;
	padding-inline: clamp(1rem, 4vw, 2rem);
}

.riri-home__section {
	padding-block: 1.875rem 1.25rem;
}

.riri-home__section--tint,
.riri-home__section--trial {
	background: var(--riri-home-tint);
}

.riri-home__section--light,
.riri-home__section--program,
.riri-home__prefooter {
	background: #fff;
}

.riri-home__section-title {
	color: #e5e8e6;
	font-family: "Cormorant", serif;
	font-size: 8.8rem;
	font-weight: 700;
	letter-spacing: normal;
	line-height: 1.5rem;
	margin-block: 4.375rem 6.25rem;
	position: relative;
	text-align: center;
}

.riri-home__section-title span {
	color: var(--riri-home-accent);
	display: grid;
	font-family: inherit;
	font-size: 1.5rem;
	font-weight: 700;
	letter-spacing: normal;
	line-height: 2.2rem;
	place-items: center;
	position: absolute;
	inset: 150% 0 auto;
	transform: none;
}

.riri-home__trial-link {
	margin: 5rem 0 0;
	max-width: 34.375rem;
}

.riri-home__trial-link a {
	color: #464646;
	display: block;
	font-size: 2rem;
	font-weight: 400;
	line-height: 1.45;
	height: 5rem;
	padding: 0 5rem 0 0;
	position: relative;
	text-decoration: none;
}

.riri-home__trial-link a::before {
	background: #9b9b9b;
	bottom: 0.5rem;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	width: 100%;
}

.riri-home__trial-link a::after {
	border-bottom: 1px solid #9b9b9b;
	bottom: 0.5rem;
	content: "";
	height: 3rem;
	position: absolute;
	right: 0;
	transform: rotate(35deg);
	transform-origin: right bottom;
	width: 7rem;
}

.riri-home__trial-link span {
	display: block;
	font-size: 1rem;
	font-weight: 200;
	line-height: 2rem;
}

.riri-home__section--tint .riri-home__section-title {
	color: #fff;
}

.riri-home__lead {
	line-height: 2;
	margin: 1.5rem auto;
	max-width: 52rem;
	text-align: center;
}

.riri-home__hero {
	display: grid;
	min-height: 0;
}

.riri-home__hero-image,
.riri-home__hero-content {
	min-width: 0;
}

.riri-home__hero-photo {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.riri-home__hero-content {
	align-content: center;
	background-position: right center;
	background-repeat: no-repeat;
	background-size: auto 100%;
	display: grid;
	gap: 2rem;
	padding: clamp(2rem, 6vw, 5rem);
}

.riri-home__hero-content h1 {
	color: var(--riri-home-accent);
	font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Noto Serif JP", serif;
	font-size: clamp(2rem, 5vw, 4.25rem);
	line-height: 1.45;
	margin: 0;
}

.riri-home__proof-list {
	display: flex;
	gap: 2.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.riri-home__proof-list li {
	align-items: center;
	background: rgba(58, 175, 144, 0.8);
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	flex: 0 0 9.375rem;
	height: 9.375rem;
	justify-content: center;
	padding: 0;
	position: relative;
	text-align: center;
}

.riri-home__proof-list strong,
.riri-home__proof-list span,
.riri-home__proof-list small {
	display: block;
}

.riri-home__proof-label {
	color: #fff;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.2rem;
}

.riri-home__proof-list strong {
	color: #ffe280;
	font-family: "Kaisei Decol", serif;
	font-size: 2.5rem;
	font-weight: 800;
	line-height: 3rem;
	text-shadow: 3px 3px 6px rgba(40, 44, 34, 0.8);
}

.riri-home__proof-list strong .riri-home__proof-unit {
	display: inline;
	font-size: 1.2rem;
	line-height: 2rem;
}

.riri-home__proof-list small {
	color: #2c2c2c;
	font-size: 0.9rem;
	left: 0;
	position: absolute;
	text-shadow: none;
	top: calc(100% + 0.5rem);
	width: 100%;
}

.riri-home__primary-button,
.riri-home__button {
	background: transparent;
	border: 1px solid var(--riri-home-accent);
	border-radius: 0;
	color: var(--riri-home-accent);
	display: inline-flex;
	font-weight: 700;
	justify-content: center;
	min-width: min(100%, 26rem);
	padding: 0.8rem 1.5rem;
	text-align: center;
	text-decoration: none;
}

.riri-home__primary-button {
	background: var(--riri-home-accent);
	color: #fff;
}

.riri-home__primary-button:hover,
.riri-home__primary-button:focus-visible,
.riri-home__button:hover,
.riri-home__button:focus-visible {
	background: var(--riri-home-dark);
	color: #fff;
}

.riri-home__map {
	height: 28.125rem;
	margin-block: 2rem;
}

.riri-home__map iframe {
	border: 0;
	height: 100%;
	width: 100%;
}

.riri-home__details {
	margin: 2rem 0 0;
}

.riri-home__details div {
	border-block-start: 1px solid #e2e2e2;
	display: grid;
	gap: 0;
}

.riri-home__details div:last-child {
	border-block-end: 1px solid #cad8d4;
}

.riri-home__details dt {
	background: #eaf9e6;
	font-weight: 700;
	padding: 1rem;
}

.riri-home__details dd {
	margin: 0;
	padding: 1rem;
}

.riri-home__card-grid,
.riri-home__program-grid {
	display: grid;
	gap: 1.5rem;
}

.riri-home__program-switcher {
	display: grid;
	gap: 1.5rem;
	margin-top: 1.875rem;
}

.riri-home__program-options input {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	white-space: nowrap;
}

.riri-home__program-options label {
	align-items: center;
	border-bottom: 1px solid #2c2c2c;
	cursor: pointer;
	display: flex;
	gap: 1rem;
	justify-content: space-between;
	padding: 1.25rem 0;
}

.riri-home__program-options label span,
.riri-home__program-options label strong {
	display: block;
}

.riri-home__program-options label strong {
	color: #3aaf90;
	font-size: 1.4rem;
	margin-bottom: 0.35rem;
}

.riri-home__program-options label i {
	align-items: center;
	background: #3aaf90;
	border-radius: 50%;
	color: #fff;
	display: inline-flex;
	flex: 0 0 2.25rem;
	font-style: normal;
	height: 2.25rem;
	justify-content: center;
}

.riri-home__program-options input:focus-visible + label {
	outline: 2px solid #3aaf90;
	outline-offset: 3px;
}

.riri-home__program-images {
	display: grid;
}

.riri-home__program-image {
	display: none;
	grid-area: 1 / 1;
}

.riri-home__program-image:first-child,
.riri-home__program-switcher:has(#riri-program-0:checked) [data-riri-program-image="0"],
.riri-home__program-switcher:has(#riri-program-1:checked) [data-riri-program-image="1"],
.riri-home__program-switcher:has(#riri-program-2:checked) [data-riri-program-image="2"] {
	display: block;
}

.riri-home__program-switcher:has(#riri-program-1:checked) [data-riri-program-image="0"],
.riri-home__program-switcher:has(#riri-program-2:checked) [data-riri-program-image="0"] {
	display: none;
}

.riri-home__program-image img {
	aspect-ratio: 7 / 5;
	height: auto;
	object-fit: cover;
	width: 100%;
}

.riri-home__feature-heading {
	color: #3aaf90;
	font-size: 1.4rem;
	font-weight: 600;
	margin: 2.5rem 0 1.25rem;
	text-align: center;
}

.riri-home__feature-grid {
	display: grid;
	gap: 2rem;
}

.riri-home__card,
.riri-home__post-card,
.riri-home__program {
	background: #fff;
	border: 0;
	padding: 1rem;
}

.riri-home__post-card {
	padding: 0;
}

.riri-home__card img,
.riri-home__post-card img,
.riri-home__program img {
	object-fit: cover;
	width: 100%;
}

.riri-home__section--future .riri-home__card img {
	height: auto;
	margin-inline: auto;
	max-width: 9.375rem;
	object-fit: contain;
}

.riri-home__section--features .riri-home__card img {
	box-shadow: 5px 5px 0 #7a7a7a;
}

.riri-home__section--future .riri-home__card-grid {
	background: #fff;
	padding: clamp(1rem, 3vw, 2.5rem);
}

.riri-home__check::before {
	color: var(--riri-home-accent);
	content: "✓ ";
	font-weight: 700;
}

.riri-home__post-card a {
	color: inherit;
	text-decoration: none;
}

.riri-home__post-card h3,
.riri-home__post-card p,
.riri-home__text-link {
	border-bottom: 1px solid #7b7b7b;
	display: block;
	margin: 0;
}

.riri-home__post-card h3 {
	font-size: 1.1rem;
	line-height: 1.4rem;
	padding: 0.9375rem;
}

.riri-home__post-card p {
	font-size: 0.9rem;
	height: 5.5375rem;
	line-height: 1.2rem;
	overflow: hidden;
	padding: 0.9375rem;
}

.riri-home__text-link {
	padding: 0.625rem;
	text-align: center;
}

.riri-home__text-link {
	color: var(--riri-home-accent);
	font-weight: 700;
}

.riri-home__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 1rem;
	justify-content: center;
	margin-block: 2rem 0;
}

.riri-home__line-cta > img {
	margin: 1.5rem auto;
	max-width: 60rem;
	width: 80%;
}

.riri-home__line-cta .riri-home__button {
	background: #292929;
	border-color: #292929;
	border-radius: 999px;
	color: #fff;
	min-width: min(100%, 20rem);
}

.riri-home__table-wrap {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.riri-home__table-wrap table {
	border-collapse: collapse;
	min-width: 56rem;
	width: 100%;
}

.riri-home__table-wrap th,
.riri-home__table-wrap td {
	border: 1px solid #cad8d4;
	padding: 0.75rem;
	text-align: start;
}

.riri-home__faq-item {
	border-block-end: 1px solid #cad8d4;
	padding-block: 1.5rem;
}

.riri-home__faq-item h3 {
	align-items: center;
	color: var(--riri-home-accent);
	display: flex;
	gap: 0.75rem;
	margin-block-start: 0;
}

.riri-home__faq-item h3 > span,
.riri-home__faq-item > div::before {
	align-items: center;
	border-radius: 50%;
	color: #fff;
	display: inline-flex;
	flex: 0 0 3.125rem;
	height: 3.125rem;
	justify-content: center;
	width: 3.125rem;
}

.riri-home__faq-item h3 > span {
	background: var(--riri-home-accent);
}

.riri-home__faq-item > div {
	align-items: flex-start;
	display: flex;
	gap: 0.75rem;
}

.riri-home__faq-item > div::before {
	background: #888;
	content: "A";
}

.riri-home__faq-item > div > :not(.screen-reader-text) {
	flex: 1;
}

.riri-home__trial-grid,
.riri-home__trial-images {
	display: grid;
	gap: 1.5rem;
}

.riri-home__prefooter-grid {
	display: grid;
	gap: 0;
}

.riri-home__prefooter {
	padding-block: 0;
}

.riri-home__prefooter .riri-home__container {
	max-width: none;
	padding-inline: 0;
}

.riri-home__prefooter a {
	background: #f5f3ed;
	color: inherit;
	display: grid;
	gap: 0.75rem;
	min-height: 18.5625rem;
	padding: 2rem 5%;
	place-content: center;
	position: relative;
	text-align: center;
	text-decoration: none;
}

.riri-home__prefooter strong {
	color: #775b2f;
	font-size: 1.5rem;
}

.riri-home__prefooter-arrow {
	background: #99782f;
	border-radius: 50%;
	display: block;
	height: 1.8rem;
	margin: 0.75rem auto 0;
	position: relative;
	width: 1.8rem;
}

.riri-home__prefooter-arrow::before {
	border-color: transparent transparent transparent #fff;
	border-style: solid;
	border-width: 0.4rem 0 0.4rem 0.55rem;
	content: "";
	left: 55%;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
}

.riri-home__prefooter a + a {
	border-left: 1px solid #c5c5c5;
}

.site-footer {
	background: #fff;
	border-top: 0;
}

.site-footer__copyright {
	background: #2c2c2c;
	color: #fff;
	font-size: 0.8rem;
	margin: 0;
	padding: 0.3125rem 1rem;
	text-align: center;
}

.riri-site-footer__inner {
	box-sizing: border-box;
	margin-inline: auto;
	max-width: 75rem;
	min-height: 26.25rem;
	padding: 2%;
	width: 96%;
}

.riri-site-footer__logo {
	display: block;
	height: auto;
	margin: 0 auto 1.5rem;
	width: 10rem;
}

.riri-site-footer__columns {
	display: flex;
}

.riri-site-footer__company,
.riri-site-footer__navigation {
	width: 50%;
}

.riri-site-footer__company p {
	margin-top: 0;
}

.riri-site-footer .footer-nav__list {
	display: block;
	list-style: disc;
	margin: 0;
	padding-left: 2.5rem;
}

.riri-site-footer__social {
	display: flex;
	gap: 1.25rem;
	margin-top: 1rem;
	padding-left: 2.5rem;
}

.riri-site-footer__social img {
	display: block;
	height: auto;
	width: 3.75rem;
}

@media (min-width: 48rem) {
	.riri-home__details div {
		grid-template-columns: minmax(8rem, 12rem) 1fr;
	}

	.riri-home__card-grid,
	.riri-home__trial-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.riri-home__program-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.riri-home__program-switcher {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	}

	.riri-home__feature-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.riri-home__section--future .riri-home__card-grid--three,
	.riri-home__prefooter-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.riri-home__section--customers .riri-home__card-grid--three,
	.riri-home__section--articles .riri-home__card-grid--three {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.riri-home__trial-images {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.riri-home__section--features .riri-home__card img,
	.riri-home__program img {
		height: 10rem;
	}

	.riri-home__feature-grid .riri-home__card img {
		height: 13.75rem;
		margin-inline: auto;
		max-width: 100%;
		object-fit: cover;
		width: auto;
	}

	.riri-home__post-card img {
		height: 18.75rem;
	}
}

@media (min-width: 30.0625rem) {
	.riri-home__hero {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 64.0625rem) {
	.riri-home__container {
		padding-inline: 0;
	}

	.riri-home__hero {
		height: 46.875rem;
		min-height: 0;
		overflow: hidden;
	}

	.riri-home__card-grid--three {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.riri-home__section--customers .riri-home__card-grid--three,
	.riri-home__section--articles .riri-home__card-grid--three {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}

	.riri-home__hero-content h1 {
		color: var(--riri-home-accent);
		font-size: clamp(2.5rem, 3vw, 3.25rem);
		line-height: 1.35;
		max-width: 13em;
	}

	.riri-home__section--features .riri-home__card img,
	.riri-home__post-card img,
	.riri-home__program img {
		height: 13.75rem;
	}

	.riri-home__program-switcher {
		grid-template-columns: 1fr 1fr;
		min-height: 31.25rem;
	}

	.riri-home__program-image img {
		height: 26.785rem;
	}

	.riri-home__trial-grid {
		align-items: center;
		grid-template-columns: minmax(0, 2fr) minmax(20rem, 1fr);
	}

	.riri-home__trial-images {
		grid-template-columns: 1fr;
	}

	.riri-home__trial-images img {
		height: 10.625rem;
		object-fit: cover;
		width: 27rem;
	}

	.riri-home__trial-images img + img {
		transform: translateX(-5rem);
	}

	.riri-home__section--access {
		min-height: 88rem;
	}

	.riri-home__section--future {
		min-height: 74.625rem;
	}

	.riri-home__section--program {
		min-height: 59.0625rem;
	}

	.riri-home__section--line {
		align-items: center;
		display: flex;
		min-height: 47.75rem;
	}

	.riri-home__section--line .riri-home__container {
		width: 100%;
	}

	.riri-home__section--features {
		min-height: 120.5625rem;
	}

	.riri-home__section--trial {
		min-height: 37.8125rem;
	}
}

@media (max-width: 30rem) {
	.riri-home__hero {
		min-height: auto;
	}

	.riri-home__hero-image {
		height: 18.75rem;
	}

	.riri-home__hero-content {
		background: #fff;
		margin: -1.875rem auto 0;
		padding: 1.5rem;
		position: relative;
		width: 90%;
		z-index: 1;
	}

	.riri-home__section-title {
		font-size: 4rem;
		margin-block: 1.25rem 5.625rem;
	}

	.riri-home__section-title span {
		font-size: 1.3rem;
		line-height: 1.6rem;
		width: 90%;
	}

	.riri-home__trial-link {
		margin-top: 3.75rem;
		max-width: 23.75rem;
	}

	.riri-home__trial-link a {
		font-size: 1.4rem;
		height: 4.375rem;
		line-height: 1.5rem;
		padding-right: 4rem;
	}

	.riri-home__trial-link span {
		font-size: 0.8rem;
		line-height: 1.5rem;
	}

	.riri-home__proof-list {
		gap: 0;
		justify-content: space-between;
	}

	.riri-home__proof-list li {
		flex-basis: 5.625rem;
		height: 5.625rem;
		margin-bottom: 1.875rem;
	}

	.riri-home__proof-label {
		bottom: calc(100% + 0.625rem);
		color: #525252;
		font-size: 0.65rem;
		line-height: 0.9rem;
		position: absolute;
	}

	.riri-home__proof-list strong,
	.riri-home__proof-list strong .riri-home__proof-unit {
		font-size: 1.4rem;
		line-height: 2.2rem;
	}

	.riri-home__proof-list small {
		font-size: 0.7rem;
		top: calc(100% + 0.25rem);
	}

	.riri-home__map {
		height: 18.75rem;
	}

	.riri-home__program-switcher {
		grid-template-columns: 1fr;
	}

	.riri-home__program-options label {
		padding-block: 1rem;
	}

	.riri-home__feature-grid {
		grid-template-columns: 1fr;
	}

	.riri-home__feature-grid .riri-home__card img,
	.riri-home__post-card img {
		height: auto;
		width: 100%;
	}

	.riri-home__trial-images {
		grid-template-columns: 1fr;
	}

	.riri-home__prefooter-grid {
		gap: 0;
	}

	.riri-home__prefooter a + a {
		border-left: 0;
		border-top: 1px solid #c5c5c5;
	}

	.riri-home__prefooter a {
		min-height: 15rem;
	}
}

@media (max-width: 64rem) {
	.riri-home__prefooter a {
		min-height: 21.25rem;
	}

	.riri-site-footer__inner {
		min-height: 0;
		padding-block: 1.875rem;
		width: 100%;
	}

	.riri-site-footer__columns {
		justify-content: space-evenly;
	}

	.riri-site-footer__company,
	.riri-site-footer__navigation {
		width: 40%;
	}
}

@media (max-width: 30rem) {
	.riri-home__prefooter a {
		min-height: 15.9375rem;
	}

	.riri-site-footer__logo {
		margin-bottom: 1.875rem;
	}

	.riri-site-footer__columns {
		gap: 1.5rem;
	}

	.riri-site-footer__company,
	.riri-site-footer__navigation {
		font-size: 0.8rem;
		width: calc(50% - 0.75rem);
	}

	.riri-site-footer .footer-nav__list,
	.riri-site-footer__social {
		padding-left: 1rem;
	}

	.riri-site-footer__social img {
		width: 2.5rem;
	}

	.riri-site-footer__inner {
		min-height: 32.375rem;
	}
}
