@charset "utf-8";
/* ================================================================
   Top Page Renewal CSS
   - PC/SP レスポンシブ統合
   - ブレークポイント: 768px
   ================================================================ */

/* ----------------------------------------------------------------
   0. CSS Variables & Reset
   ---------------------------------------------------------------- */
:root {
	--rn-black: #212121;
	--rn-white: #ffffff;
	--rn-bg: #fafafa;
	--rn-gray-light: #eaeaea;
	--rn-gray: #d3d3d3;
	--rn-gray-dark: #464646;
	--rn-font-base: "Yu Gothic", "YuGothic", sans-serif;
	--rn-font-ws: "Work Sans", sans-serif;
	--rn-font-mincho: 'Shippori Mincho', serif;
	--rn-font-garamond: 'EB Garamond', serif;
	--rn-header-h: 80px;
	--rn-container: 1080px;
	--rn-container-m: 1160px;
}

body.renewal {
	margin: 0;
	padding: 0;
	font-family: var(--rn-font-base);
	font-weight: 300;
	background-color: var(--rn-bg);
	background-image: url('/img/common/background_pc.png');
	background-attachment: fixed;
	background-size: cover;
	background-repeat: no-repeat;
	color: var(--rn-black);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body.renewal *,
body.renewal *::before,
body.renewal *::after {
	box-sizing: border-box;
}

body.renewal img {
	display: block;
	max-width: 100%;
}

/* Work Sans が適用される要素に font-optical-sizing を一括設定 */
body.renewal [style*="Work Sans"],
body.renewal .rn-header__nav-link,
body.renewal .rn-header__logo-text,
body.renewal .rn-view-more__text,
body.renewal .rn-section-header__en,
body.renewal .rn-material__en,
body.renewal .rn-product__en,
body.renewal .rn-news__cat,
body.renewal .rn-footer__logo-text,
body.renewal .rn-footer__contact,
body.renewal .rn-footer__email,
body.renewal .rn-instagram__username {
	font-optical-sizing: auto;
	font-style: normal;
}

body.renewal a {
	color: inherit;
	text-decoration: none;
}

.sp {
	display: none;
}

@media screen and (max-width: 768px) {
	.pc {
		display: none !important;
	}
	.sp {
		display: block !important;
	}
}

/* ----------------------------------------------------------------
   0.5 Splash Screen
   ---------------------------------------------------------------- */
.rn-splash {
	position: fixed;
	inset: 0;
	background: var(--rn-white);
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: opacity 0.6s ease;
}

.rn-splash.is-hidden {
	opacity: 0;
	pointer-events: none;
}

.rn-splash__content {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 28px;
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 1.0s ease, transform 1.0s ease;
}

.rn-splash__content.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.rn-splash__logo {
	width: 53px;
	height: auto;
}

.rn-splash__text {
	font-family: var(--rn-font-ws);
	font-weight: 300;
	font-size: 30px;
	letter-spacing: 8px;
	color: var(--rn-black);
}

/* オープニング中はヘッダー・ヒーローを初期非表示 */
.rn-header.is-opening {
	opacity: 0;
	transform: translateY(-30px);
	transition: opacity 1.2s ease, transform 1.2s ease;
}

.rn-header.is-opening.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.rn-hero__text.is-opening {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 1.2s ease, transform 1.2s ease;
}

.rn-hero__text.is-opening.is-visible {
	opacity: 1;
	transform: translateY(0);
}


/* ----------------------------------------------------------------
   1. Header
   ---------------------------------------------------------------- */
/* PC: ロゴ・ナビは固定、白帯背景はスクロールで流れる */
.rn-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: var(--rn-header-h);
	background: transparent;
	z-index: 1000;
}

/* PC: 白帯はページ上部に配置（スクロールで流れる） */
.rn-header-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: var(--rn-header-h);
	background: var(--rn-white);
	z-index: 0;
}

.rn-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1400px;
	height: 100%;
	margin: 0 auto;
	padding: 0 40px;
}

.rn-header__logo {
	display: flex;
	align-items: center;
	gap: 12px;
	flex-shrink: 0;
}

.rn-header__logo-icon {
	width: 36px;
	height: auto;
}

.rn-header__logo-text {
	font-family: var(--rn-font-ws);
	font-weight: 300;
	font-size: 22px;
	letter-spacing: 6px;
	color: var(--rn-black);
	white-space: nowrap;
}

/* Nav */
.rn-header__nav {
	flex: 1;
	display: flex;
	justify-content: end;
	margin-right: 50px;
}

.rn-header__nav-list {
	display: flex;
	align-items: center;
	gap: 36px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.rn-header__nav-link {
	font-family: var(--rn-font-ws);
	font-weight: 400;
	font-size: 14px;
	letter-spacing: 1.5px;
	color: var(--rn-black);
	position: relative;
	padding-bottom: 6px;
	cursor: pointer;
	transition: opacity 0.3s;
}

.rn-header__nav-link:hover {
	opacity: 0.6;
}

.rn-header__nav-link::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 50%;
	transform: translateX(-50%);
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--rn-black);
	opacity: 0;
	transition: opacity 0.3s;
}

.rn-header__nav-item:hover .rn-header__nav-link::after {
	opacity: 1;
}

/* Icons */
.rn-header__icons {
	display: flex;
	align-items: center;
	gap: 20px;
	flex-shrink: 0;
}

.rn-header__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 28px;
	height: 28px;
	cursor: pointer;
	transition: opacity 0.3s;
}

.rn-header__icon:hover {
	opacity: 0.6;
}

.rn-header__icon svg {
	width: 20px;
	height: 20px;
}

/* Hamburger */
.rn-header__hamburger {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 28px;
	height: 28px;
	background: none;
	border: none;
	cursor: pointer;
	padding: 0;
	z-index: 1001;
}

.rn-header__hamburger span {
	display: block;
	width: 100%;
	height: 1.5px;
	background: var(--rn-black);
	transition: transform 0.3s, opacity 0.3s;
}

.rn-header__hamburger.is-open span:nth-child(1) {
	transform: translateY(6.5px) rotate(45deg);
}

.rn-header__hamburger.is-open span:nth-child(2) {
	opacity: 0;
}

.rn-header__hamburger.is-open span:nth-child(3) {
	transform: translateY(-6.5px) rotate(-45deg);
}

/* SP Menu */
.rn-header__sp-menu {
	display: none;
}

.rn-header-spacer {
	height: var(--rn-header-h);
}

/* SP用 SEARCH パネル: PCでは非表示 */
.rn-sp-icon-panel--top {
	display: none;
}

/* ----------------------------------------------------------------
   1.5 Megamenu (Header Dropdown)
   ---------------------------------------------------------------- */
.rn-megamenu-backdrop {
	position: fixed;
	top: var(--rn-header-h);
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.4);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.3s ease, visibility 0.3s;
	z-index: 998;
}

body.is-megamenu-open .rn-megamenu-backdrop {
	opacity: 1;
	visibility: visible;
}

/* メガメニュー展開中はヘッダーも白くしてサブメニューと色を揃える */
body.is-megamenu-open .rn-header {
	background: var(--rn-white);
}

.rn-header__nav-item--mega {
	position: static;
}

.rn-megamenu {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: var(--rn-white);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.3s ease, visibility 0.3s;
	z-index: 1001;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
	font-family: var(--rn-font-base);
}

.rn-header__nav-item--mega.is-mega-open .rn-megamenu {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

/* 外側: CATEGORYタイトル列 | コンテンツ列 の2分割 */
.rn-megamenu__inner {
	max-width: 1400px;
	margin: 0 auto;
	padding: 30px 40px;
	display: grid;
	grid-template-columns: 200px 1fr;
	gap: 100px;
}

/* 内側: コンテンツ列の中で複数列に分割 */
.rn-megamenu__content {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 40px;
}

/* 項目数が少ないメニュー用（NEWS, CONTACT, TEL等）: 横並びフレックス */
.rn-megamenu__content--narrow {
	display: flex;
	flex-wrap: wrap;
	gap: 60px;
	align-items: flex-start;
	margin-top: 8px;
}

.rn-megamenu__content--narrow .rn-megamenu__list {
	display: flex;
	flex-wrap: wrap;
	gap: 100px;
}

.rn-megamenu__content--narrow .rn-megamenu__list li {
	margin-bottom: 0;
}

/* col に grow を付けたら content 領域いっぱいに広がる（4列gridなど用） */
.rn-megamenu__content--narrow > .rn-megamenu__col--grow {
	flex: 1;
}

/* 4列グリッド（GUIDE等） */
.rn-megamenu__content--narrow .rn-megamenu__list--cols-4 {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 14px 30px;
	margin-right: 200px;
}

/* TEL用: 各li内で店舗名と電話番号を横並び */
.rn-megamenu__list--tel li {
	display: flex;
	align-items: center;
	gap: 14px;
}

.rn-megamenu__tel-store {
	font-size: 12px;
	color: var(--rn-gray-dark);
	letter-spacing: 1px;
}

/* アイコンに付けたmega wrap: 元のアイコンと同じ表示形態を維持 */
.rn-header__icon-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
}

/* アイコンのhover時の黒丸（mega有無に関わらず全アイコンに適用） */
.rn-header__icon {
	position: relative;
}

.rn-header__icon::after {
	content: '';
	position: absolute;
	bottom: -8px;
	left: 50%;
	transform: translateX(-50%);
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--rn-black);
	opacity: 0;
	transition: opacity 0.3s;
}

.rn-header__icon:hover::after,
.rn-header__icon-wrap.rn-header__nav-item--mega:hover .rn-header__icon::after {
	opacity: 1;
}

/* SEARCH用: 検索フォーム */
.rn-megamenu__search {
	display: flex;
	align-items: center;
	width: 100%;
	max-width: 450px;
	border: 1px solid var(--rn-gray);
	border-radius: 999px;
	padding: 0px 24px 0px 5px;
	gap: 10px;
	background: var(--rn-white);
}

.rn-megamenu__search-input {
	flex: 1;
	border: none;
	outline: none;
	background: transparent;
	font-family: var(--rn-font-ws);
	font-size: 13px;
	letter-spacing: 1px;
	padding: 8px 0;
	color: var(--rn-black);
}

.rn-megamenu__search-input::placeholder {
	color: var(--rn-gray);
	letter-spacing: 1.5px;
}

.rn-megamenu__search-submit {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
	transition: opacity 0.3s;
}

.rn-megamenu__search-submit:hover {
	opacity: 0.6;
}

.rn-megamenu__search-submit img {
	width: 26px;
	height: 26px;
}

.rn-megamenu__col--title {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.rn-megamenu__title {
	font-weight: 400;
	font-size: 24px;
	letter-spacing: 2.4px;
	color: var(--rn-black);
}

.rn-megamenu__subtitle {
	font-size: 10px;
	letter-spacing: 1.44px;
	color: var(--rn-gray-dark);
}

.rn-megamenu__heading {
	font-size: 18px;
	font-weight: 500;
	letter-spacing: 1.6px;
	color: var(--rn-black);
	margin-bottom: 10px;
}

.rn-megamenu__heading--mt {
	margin-top: 30px;
}

.rn-megamenu__sub-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
}

.rn-megamenu__sub-heading {
	font-size: 12px;
	letter-spacing: 1.4px;
	color: var(--rn-black);
	margin-bottom: 14px;
}

.rn-megamenu__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

/*.rn-megamenu__list li {
	margin-bottom: 10px;
}*/

.rn-megamenu__list a {
	font-size: 10px;
	letter-spacing: 1px;
	color: var(--rn-gray-dark);
	text-decoration: none;
	transition: opacity 0.2s;
}

.rn-megamenu__list a:hover {
	opacity: 0.6;
}

/* narrow版（NEWS / CONTACT / TEL / GUIDE / SEARCH など）はフォントサイズを大きく */
.rn-megamenu__content--narrow .rn-megamenu__list a {
	font-size: 12px;
}

/* ----------------------------------------------------------------
   2. Common Components
   ---------------------------------------------------------------- */
.rn-container {
	width: 100%;
	max-width: var(--rn-container);
	margin: 0 auto;
	padding: 0 40px;
}

.rn-container--m {
	max-width: var(--rn-container-m);
}

/* Section Header */
.rn-section-header {
	display: flex;
	gap: 12.5px;
	align-items: flex-start;
}

.rn-section-header__line {
	width: 1px;
	height: 100px;
	background-color: var(--rn-gray);
	flex-shrink: 0;
}

.rn-section-header__text {
	margin-top: 2px;
	display: flex;
	flex-direction: column;
}

.rn-section-header__title {
	font-family: var(--rn-font-base);
	font-weight: 400;
	font-size: 18px;
	letter-spacing: 3.08px;
	line-height: 30px;
	white-space: nowrap;
}

.rn-section-header__en {
	font-family: var(--rn-font-ws);
	font-weight: 300;
	font-size: 12px;
	letter-spacing: 1.68px;
	color: var(--rn-black);
	margin-top: 10px;
}

/* View More */
.rn-view-more {
	display: inline-flex;
	align-items: end;
	gap: 50px;
	cursor: pointer;
	padding-bottom: 6px;
	position: relative;
	border-bottom: 1px solid var(--rn-black);
}

/* グレー線（hover時左→右、戻り時右→左） */
.rn-view-more::after {
	content: '';
	position: absolute;
	bottom: -1px;
	left: 0;
	height: 1px;
	background: var(--rn-gray);
	width: 100%;
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.4s ease;
}

/* hover: 左から右へ伸びる */
.rn-view-more:hover::after {
	transform: scaleX(1);
}

.rn-view-more__text {
	font-family: var(--rn-font-ws);
	font-weight: 300;
	font-size: 12px;
	letter-spacing: 1.68px;
	white-space: nowrap;
}

.rn-view-more__arrow {
	width: 14px;
	height: 8px;
	margin-bottom: 3px;
	transition: filter 0.15s ease;
}

.rn-view-more:hover .rn-view-more__arrow {
	filter: brightness(0) saturate(100%) invert(88%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(90%);
	transition: filter 0.4s ease 0.2s;
}

.rn-view-more--right {
	display: flex;
	justify-content: flex-end;
	margin-top: 50px;
}

.rn-view-more--light .rn-view-more__text {
	color: #f5f3ed;
}

.rn-deco-wrap--size .rn-view-more--right {
	margin-top: 50px;
}

/* Dot */
.rn-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: var(--rn-black);
	flex-shrink: 0;
}

/* Label badge */
.rn-label-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background-color: var(--rn-gray);
	padding: 3px 8px;
}

.rn-label-badge__name {
	font-size: 14px;
	letter-spacing: 1.96px;
	line-height: 20px;
	white-space: nowrap;
}

.rn-label-badge__en {
	font-family: var(--rn-font-ws);
	font-weight: 300;
	font-size: 12px;
	letter-spacing: 1.68px;
	margin-top: 7px;
}

/* ----------------------------------------------------------------
   3. Hero Section
   ---------------------------------------------------------------- */
.rn-hero {
	width: 100%;
	background-color: var(--rn-white);
	display: flex;
	flex-direction: column;
}

.rn-hero__slide-wrap {
	position: relative;
	width: 100%;
	height: 568px;
	overflow: hidden;
}

.rn-hero__image {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.05);
	opacity: 0;
	transition: opacity 1s ease;
}

.rn-hero__image.is-active {
	opacity: 1;
}

.rn-hero__dots {
	display: flex;
	justify-content: flex-end;
	padding-right: 131px;
	margin-top: 10px;
	gap: 5px;
}

.rn-hero__dot {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	border: 1px solid var(--rn-gray);
	cursor: pointer;
	transition: background 0.3s;
}

.rn-hero__dot.is-active {
	background-color: var(--rn-black);
	border-color: var(--rn-black);
}

.rn-hero__text {
	max-width: var(--rn-container);
	margin: 0 auto;
	padding: 60px 40px 80px;
	width: 100%;
}

.rn-hero__title {
	font-family: var(--rn-font-base);
	font-weight: 400;
	font-size: 24px;
	letter-spacing: 3.92px;
	line-height: normal;
	margin: 0;
}

.rn-hero__body-row {
	display: flex;
	justify-content: space-between;
	margin-top: 10px;
}

.rn-hero__body {
	font-size: 12px;
	letter-spacing: 1.44px;
	line-height: 30px;
	max-width: 600px;
}

/* ----------------------------------------------------------------
   3.5 Section Background Wrappers
   ---------------------------------------------------------------- */
/* フル幅背景ラッパー */
.rn-section-bg {
	position: relative;
	width: 100%;
	padding: 150px 0;
	background-size: cover;
	/*background-position: center;*/
	background-repeat: no-repeat;
	overflow: hidden;
}

/* 背景ラッパー内のセクションは自身のmargin-topを打ち消す */
.rn-section-bg .rn-news,
.rn-section-bg .rn-product {
	margin-top: 0;
}

.rn-section-bg--news {
	background-image: url('/img/toppage/renewal/bk_news.png');
}

.rn-section-bg--product {
	background-image: url('/img/toppage/renewal/bk_product_type.png');
}

/* 年輪装飾ラッパー（フル幅で::beforeを配置し、ビューポート端に年輪画像を置く） */
.rn-deco-wrap {
	position: relative;
	overflow: hidden;
}

/* サイズで選ぶ - 右上 */
.rn-deco-wrap--size::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 535px;
	height: 535px;
	background: url('/img/toppage/renewal/bk_nenrin_leftdown.png') no-repeat top right;
	background-size: contain;
	pointer-events: none;
	z-index: 0;
}

/* お客様の声 - 右上 */
.rn-deco-wrap--voice::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 596px;
	height: 596px;
	background: url('/img/toppage/renewal/bk_nenrin_down.png') no-repeat top right;
	background-size: contain;
	pointer-events: none;
	z-index: 0;
}

/* バナーエリア - 右上 */
.rn-deco-wrap--banners::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	width: 535px;
	height: 535px;
	background: url('/img/toppage/renewal/bk_nenrin_leftdown.png') no-repeat top right;
	background-size: contain;
	pointer-events: none;
	z-index: 0;
}

/* ----------------------------------------------------------------
   4. Size Filter Section (BY SIZE)
   ---------------------------------------------------------------- */
.rn-size {
	margin-top: 120px;
	padding-bottom: 120px;
}

.rn-size__buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 30px;
}

.rn-size__btn {
	display: flex;
	align-items: center;
	height: 40px;
	background: var(--rn-white);
	border: 1px solid var(--rn-black);
	padding: 0 20px;
	cursor: pointer;
	flex: 1;
	min-width: 130px;
	position: relative;
	z-index: 1;
}

.rn-size__btn.is-hovered {
	animation: sizeBtnIn 0.6s ease forwards;
}

.rn-size__btn.is-hovered .rn-size__btn-label {
	color: var(--rn-white);
}

.rn-size__btn.is-hovered .rn-dot {
	background-color: var(--rn-white);
	transform: scale(1.6);
}

/* hover解除時：楕円→四角に戻る */
.rn-size__btn.is-leaving {
	animation: sizeBtnOut 0.6s ease forwards;
}

@keyframes sizeBtnIn {
	0% {
		background: var(--rn-black);
		border-color: var(--rn-black);
		border-radius: 0;
	}
	100% {
		background: var(--rn-black);
		border-color: var(--rn-black);
		border-radius: 40px;
	}
}

@keyframes sizeBtnOut {
	0% {
		background: var(--rn-white);
		border-color: var(--rn-black);
		border-radius: 40px;
	}
	100% {
		background: var(--rn-white);
		border-color: var(--rn-black);
		border-radius: 0;
	}
}

.rn-size__btn-label {
	flex: 1;
	text-align: center;
	font-size: 12px;
	letter-spacing: 1.96px;
	line-height: 20px;
	white-space: nowrap;
	margin-left: 5px;
}

.rn-size__btn .rn-dot {
	transition: transform 0.6s ease;
}

/* ----------------------------------------------------------------
   5. Material Section (BY MATERIAL)
   ---------------------------------------------------------------- */
.rn-material {
	margin-top: 120px;
	padding-bottom: 120px;
}

.rn-material__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 26px;
	margin-top: 30px;
}

.rn-material__card {
	display: flex;
	flex-direction: column;
	cursor: pointer;
}

.rn-material__card a {
	display: block;
}

/* サムネイル枠（overflow:hiddenで画像をクリップ） */
.rn-material__img-wrap {
	overflow: hidden;
	height: 130px;
	border-radius: 0;
	transition: border-radius 0.5s ease;
}

/* 画像：2倍サイズで右下1/4を表示 */
.rn-material__img {
    display: block;
    width: 200%;
    height: 200%;
	/*object-fit: cover;*/
    /* デフォルト：右下を表示（左上に-50%ずらす）※TODO：保留 */
    /*transform: translate(-50%, -50%);
    transition: transform 0.5s ease;*/
}

/* hover: 枠が角丸に、画像が左上1/4へ移動 */
.rn-material__card:hover .rn-material__img-wrap {
	border-radius: 16px;
}

/* hover：左上を表示（元の位置に戻す） */
.rn-material__card:hover .rn-material__img {
    transform: translate(0, 0);
}

/* ラベル：hover時に背景黒・テキスト白（即時） */
.rn-material__label {
	margin-top: 16px;
}

.rn-material__card:hover .rn-label-badge {
	background: var(--rn-black);
}

.rn-material__card:hover .rn-label-badge__name {
	color: var(--rn-white);
}

.rn-material__card:hover .rn-label-badge .rn-dot {
	background-color: var(--rn-white);
}

/* 英語：即時太字、サイズは7割へアニメーション */
.rn-material__en {
	font-family: var(--rn-font-ws);
	font-weight: 300;
	font-size: 12px;
	letter-spacing: 1.68px;
	margin-top: 7px;
	transition: font-size 0.5s ease;
}

.rn-material__card:hover .rn-material__en {
	font-weight: 600;
	font-size: 8.4px;
}

/* ----------------------------------------------------------------
   6. News Section
   ---------------------------------------------------------------- */
.rn-news {
	margin-top: 120px;
}

.rn-news__layout {
	display: flex;
	width: 100%;
}

.rn-news__label {
	flex-shrink: 0;
	width: 300px;
	padding-top: 17%;
}

.rn-news__posts {
	flex: 1;
}

.rn-news__post {
	display: flex;
	align-items: flex-start;
	padding: 20px 0;
	border-bottom: 1px solid var(--rn-gray-dark);
}

.rn-news__post:last-child {
	border-bottom: none;
}

.rn-news__post:first-child {
	padding-top: 0;
}

.rn-news__thumb {
	width: 170px;
	min-width: 170px;
	height: 115px;
	object-fit: cover;
	flex-shrink: 0;
	border-radius: 0;
	transition: border-radius 0.3s;
}

.rn-news__post:hover .rn-news__thumb {
	border-radius: 10px;
}

.rn-news__post:hover .rn-news__date,
.rn-news__post:hover .rn-news__cat,
.rn-news__post:hover .rn-news__title {
	color: var(--rn-gray);
}

.rn-news__post:hover .rn-news__title {
	text-decoration: underline;
}

.rn-news__text {
	margin-left: 30px;
	padding-top: 15px;
	min-width: 0;
}

.rn-news__meta {
	display: flex;
	align-items: center;
	gap: 12px;
}

.rn-news__date {
	font-size: 14px;
	letter-spacing: 1.96px;
	line-height: 20px;
}

.rn-news__cat {
	font-family: var(--rn-font-ws);
	font-weight: 300;
	font-size: 13px;
	letter-spacing: 1.96px;
}

.rn-news__title {
	margin-top: 16px;
	font-size: 14px;
	letter-spacing: 1.96px;
	line-height: 24px;
}

/* ----------------------------------------------------------------
   7. User Voice Section
   ---------------------------------------------------------------- */
.rn-voice {
	margin-top: 120px;
	padding-bottom: 120px;
}

.rn-voice__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-top: 30px;
}

.rn-voice__item {
	aspect-ratio: 244 / 362;
	display: flex;
	align-items: flex-end;
	position: relative;
	overflow: hidden;
	border-radius: 0;
	transition: border-radius 0.4s;
}

/* 背景画像レイヤー（独立して変形可能にする） */
.rn-voice__item::before {
	content: '';
	position: absolute;
	inset: 0;
	background: inherit;
	background-size: cover;
	background-position: center;
	transform: scale(1.12);
	transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 0;
}

.rn-voice__item:hover {
	border-radius: 12px;
}

.rn-voice__item:hover::before {
	transform: scale(1) translateY(-27.5%);
}

/* デフォルト表示（カテゴリ名 + 日付、ホバー前） */
.rn-voice__default {
	position: relative;
	z-index: 1;
	width: 100%;
	padding: 0 0 15px;
	transition: opacity 0.7s;
}

.rn-voice__item:hover .rn-voice__default {
	opacity: 0;
}

.rn-voice__item-title {
	display: inline-block;
	background-color: var(--rn-gray);
	padding: 4px 10px;
	font-size: 14px;
	letter-spacing: 1.44px;
	line-height: 20px;
	color: var(--rn-black);
}

.rn-voice__item-date {
	font-size: 12px;
	letter-spacing: 1.44px;
	line-height: 1.6;
	color: #F5F3ED;
	margin-top: 10px;
	padding: 0 10px;
}

/* ホバーオーバーレイ */
.rn-voice__overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--rn-black);
	border-radius: 12px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	gap: 5px;
	padding: 30px 15px 25px 15px;
	transform: translateY(100%);
	transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 2;
}

.rn-voice__item:hover .rn-voice__overlay {
	transform: translateY(0);
}

/* オーバーレイ内: カテゴリ名（黒字・白背景） */
.rn-voice__item-cat {
	display: inline-block;
	background-color: #F5F3ED;
	color: var(--rn-black);
	padding: 4px 10px;
	font-size: 14px;
	letter-spacing: 1.44px;
	line-height: 20px;
}

/* オーバーレイ内: 英語名 */
.rn-voice__item-en {
	font-family: var(--rn-font-ws);
	font-weight: 300;
	font-size: 12px;
	letter-spacing: 1.44px;
	color: #F5F3ED;
}

/* オーバーレイ内: 日付 */
.rn-voice__overlay-date {
	font-size: 14px;
	letter-spacing: 1.44px;
	line-height: 1.6;
	color: #F5F3ED;
	margin: 15px 0;
}

/* オーバーレイ内: 商品説明（タイトル）。1行で省略 */
.rn-voice__item-desc {
	font-size: 12px;
	letter-spacing: 1.44px;
	line-height: 1.8;
	color: #F5F3ED;
	text-align: center;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	max-width: 100%;
}

/* ----------------------------------------------------------------
   8. Product Type Section (BY PRODUCT TYPE)
   ---------------------------------------------------------------- */
.rn-product {
	margin-top: 120px;
}

.rn-product__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px 26px;
	margin-top: 30px;
}

.rn-product__card {
	display: flex;
	flex-direction: column;
}

.rn-product__card a {
	display: block;
}

.rn-product__img-wrap {
	width: 100%;
	aspect-ratio: 244 / 311;
	background-color: var(--rn-white);
	border-radius: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	position: relative;
	transition: border-radius 0.3s ease;
}

.rn-product__img-wrap::after {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.15);
	opacity: 0;
	z-index: 1;
}

.rn-product__card:hover .rn-product__img-wrap {
	border-radius: 12px;
}

.rn-product__card:hover .rn-product__img-wrap::after {
	opacity: 1;
}

.rn-product__card:hover .rn-label-badge {
	background-color: var(--rn-black);
}

.rn-product__card:hover .rn-label-badge__name {
	color: var(--rn-white);
}

.rn-product__card:hover .rn-dot {
	background-color: var(--rn-white);
}

.rn-product__img-wrap img {
	max-width: 85%;
	max-height: 85%;
	object-fit: contain;
}

.rn-product__label {
	margin-top: 15px;
}

.rn-product__en {
	font-family: var(--rn-font-ws);
	font-weight: 300;
	font-size: 12px;
	letter-spacing: 1.68px;
	margin-top: 7px;
}

/* ----------------------------------------------------------------
   9. Banner Section
   ---------------------------------------------------------------- */
.rn-banners {
	margin-top: 120px;
	padding-bottom: 120px;
}

/* バナー全体画像リンク */
.rn-banner-img-link {
	display: block;
	width: 100%;
	transition: opacity 0.3s;
	position: relative;
	z-index: 1;
}

.rn-banner-img-link:hover {
	opacity: 0.88;
}

.rn-banner-img-link img {
	width: 100%;
	height: auto;
	display: block;
}

/* Small banners grid */
.rn-banner-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-top: 20px;
}

/* ----------------------------------------------------------------
   10. Instagram Section
   ---------------------------------------------------------------- */
.rn-instagram {
	margin-top: 50px;
	padding-bottom: 120px;
}

.rn-instagram__header {
	display: flex;
	align-items: center;
	gap: 18px;
	margin-bottom: 30px;
}

.rn-instagram__avatar {
	width: 47px;
	height: 47px;
	border-radius: 50%;
	object-fit: cover;
}

.rn-instagram__user {
	display: flex;
	flex-direction: column;
}

.rn-instagram__username {
	font-family: var(--rn-font-ws);
	font-size: 14px;
	line-height: 20px;
}

.rn-instagram__username strong {
	font-weight: 500;
	letter-spacing: 0.27px;
}

.rn-instagram__location {
	font-size: 12px;
	letter-spacing: 1.44px;
	line-height: 30px;
}

.rn-instagram__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.rn-instagram__img {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
}

/* ----------------------------------------------------------------
   11. Footer
   ---------------------------------------------------------------- */
.rn-footer {
	position: relative;
	width: 100%;
	background-color: var(--rn-gray-light);
	overflow: hidden;
	margin-top: 120px;
}

.rn-footer__inner {
	max-width: 1280px;
	margin: 0 auto;
}

.rn-footer__deco {
	align-self: stretch;
	height: 312px;
}

.rn-footer__deco img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top left;
}

.rn-footer__body {
	background-image: url('/img/common/renewal/footer-bk-pc.png');
	background-size: cover;
	background-position: top left;
	background-repeat: no-repeat;
}

.rn-footer__content {
	display: flex;
	padding: 120px 60px;
	gap: 150px;
	position: relative;
	z-index: 1;
}

.rn-footer__brand {
	/*width: 210px;*/
	flex-shrink: 0;
}

.rn-footer__logo-row {
	display: flex;
	align-items: center;
	gap: 18px;
}

.rn-footer__logo-img {
	width: 36px;
	height: auto;
}

.rn-footer__logo-text {
	font-family: var(--rn-font-ws);
	font-weight: 300;
	font-size: 29px;
	letter-spacing: 7px;
	white-space: nowrap;
}

.rn-footer__address {
	font-style: normal;
	font-size: 14px;
	letter-spacing: 0.27px;
	line-height: 24px;
	margin-top: 24px;
	color: var(--rn-gray-dark);
}

.rn-footer__contact {
	margin-top: 10px;
	font-family: var(--rn-font-base);
	font-size: 14px;
	line-height: 22px;
	color: var(--rn-gray-dark);
}

.rn-footer__contact-label {
	font-weight: 500;
	letter-spacing: 0.27px;
	color: var(--rn-black);
}

.rn-footer__email {
	margin-top: 8px;
	font-family: var(--rn-font-ws);
	font-weight: 400;
	font-size: 14px;
	letter-spacing: 1px;
	color: var(--rn-gray-dark);
}

/* Footer nav */
.rn-footer__nav-columns {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 40px;
	flex: 1;
}

.rn-footer__nav-col {
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.rn-footer__nav-title {
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 1.96px;
	line-height: 20px;
	margin: 0 0 8px;
}

.rn-footer__nav-list {
	display: flex;
	flex-direction: column;
}

.rn-footer__nav-list a {
	font-size: 12px;
	letter-spacing: 0.5px;
	line-height: 28px;
	color: var(--rn-gray-dark);
	transition: opacity 0.3s;
}

.rn-footer__nav-list a:hover,
.rn-footer__logo-row:hover {
	opacity: 0.6;
}

.rn-footer__copyright {
	text-align: center;
	font-size: 11px;
	letter-spacing: 1px;
	padding: 16px 0;
	border-top: 1px solid var(--rn-gray);
	color: var(--rn-gray-dark);
}

/* Page top */
.rn-pagetop {
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 999;
}

.rn-pagetop a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	background: var(--rn-black);
	color: var(--rn-white);
	font-family: var(--rn-font-ws);
	font-size: 10px;
	letter-spacing: 1px;
	border-radius: 50%;
	transition: opacity 0.3s;
}

.rn-pagetop a:hover {
	opacity: 0.7;
}

/* ----------------------------------------------------------------
   11.8 Scroll Fade-in Animation
   ---------------------------------------------------------------- */

/* 初期状態: 非表示 + 少し下にずらす */
.rn-fade {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 1.4s ease, transform 1.4s ease;
}

/* 表示状態 */
.rn-fade.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* 横並び要素の時間差フェード（左→右） */
.rn-fade-stagger {
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 1.0s ease, transform 1.0s ease;
}

.rn-fade-stagger.is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* delay は JS で動的に付与 */

/* ----------------------------------------------------------------
   11.5 PC中間サイズ（1150px以下）ヘッダー縮小
   ---------------------------------------------------------------- */
@media screen and (max-width: 1150px) and (min-width: 769px) {
	.rn-header__inner {
		padding: 0 20px;
	}

	.rn-header__logo-text {
		font-size: 18px;
		letter-spacing: 4px;
	}

	.rn-header__logo-icon {
		width: 28px;
	}

	.rn-header__nav {
		margin-right: 20px;
	}

	.rn-header__nav-list {
		gap: 18px;
	}

	.rn-header__nav-link {
		font-size: 12px;
		letter-spacing: 1px;
	}

	.rn-header__icons {
		gap: 14px;
	}

	.rn-header__icon img {
		width: 22px;
		height: 22px;
	}

	/* メガメニュー: CATEGORY列との余白を縮小 */
	.rn-megamenu__inner {
		grid-template-columns: 160px 1fr;
		gap: 30px;
	}

	.rn-megamenu__content {
		gap: 24px;
	}

	.rn-megamenu__content--narrow .rn-megamenu__list--cols-4 {
		margin-right: 0;
	}
}

/* ----------------------------------------------------------------
   12. SP Styles (max-width: 768px)
   ---------------------------------------------------------------- */
@media screen and (max-width: 768px) {
	:root {
		--rn-header-h: 60px;
	}

	body.renewal {
		background-image: url('/img/common/background_sp.png');
	}

	/* SP: ヘッダーは白帯ごと固定（従来通り） */
	.rn-header {
		position: fixed;
		background: var(--rn-white);
	}

	/* SP: メガメニューは非表示 */
	.rn-megamenu,
	.rn-megamenu-backdrop {
		display: none !important;
	}

	.rn-header-bg {
		display: none;
	}

	/* Header SP */
	.rn-header__inner {
		padding: 0 16px;
	}

	.rn-header__nav {
		display: none;
	}

	/* SP: ロゴを左、残りを右にまとめる */
	.rn-header__logo {
		margin-right: auto;
	}

	/* SP: アイコン - 検索とカートのみ表示 */
	.rn-header__icons {
		display: flex;
		gap: 20px;
		position: relative;
		z-index: 1002;
	}

	.rn-header__icon--pc-only {
		display: none;
	}

	/* ハンバーガー三本線を均一の太さに */
	.rn-header__hamburger {
		display: flex;
		margin-left: 20px;
		position: relative;
		z-index: 1002;
	}

	.rn-header__hamburger span {
		height: 2px;
	}

	.rn-header__logo-icon {
		width: 28px;
	}

	/* SP menu（画面上端から、ヘッダーの裏にスライド） */
	.rn-header__sp-menu {
		display: block;
		position: fixed;
		top: 0;
		right: -100%;
		width: 80%;
		max-width: 360px;
		height: 100vh;
		background: var(--rn-gray-light);
		overflow-y: auto;
		transition: right 0.3s;
		z-index: 999;
		padding-top: var(--rn-header-h);
	}

	.rn-header__sp-menu.is-open {
		right: 0;
	}

	body.is-menu-open {
		overflow: hidden;
	}

	/* ハンバーガー → バツ変形（角度を寝かせる） */
	.rn-header__hamburger.is-open span:nth-child(1) {
		transform: translateY(7px) rotate(30deg);
	}

	.rn-header__hamburger.is-open span:nth-child(2) {
		opacity: 0;
	}

	.rn-header__hamburger.is-open span:nth-child(3) {
		transform: translateY(-7px) rotate(-30deg);
	}

	/* SP nav list */
	.rn-header__sp-nav ul {
		list-style: none;
		margin: 0;
		padding: 0;
	}

	.rn-header__sp-nav ul li {
		position: relative;
	}

	.rn-header__sp-nav ul li a,
	.rn-header__sp-nav .rn-sp-cat__title {
		display: block;
		padding: 16px 40px;
		font-family: var(--rn-font-ws);
		font-weight: 400;
		font-size: 14px;
		letter-spacing: 1.5px;
		color: var(--rn-black);
	}

	.rn-header__sp-nav .rn-sp-cat__title {
		cursor: pointer;
	}

	/* トップレベルメニューを相対配置（dot/underline基準） */
	.rn-header__sp-nav > ul > li > a,
	.rn-header__sp-nav > ul > li > .rn-sp-cat__title {
		position: relative;
	}

	/* dot/hover マーク: トップレベル <a>/<span>内に表示 */
	.rn-header__sp-nav > ul > li > a::before,
	.rn-header__sp-nav > ul > li > .rn-sp-cat__title::before {
		content: '';
		position: absolute;
		left: 20px;
		top: 50%;
		transform: translateY(-50%);
		width: 5px;
		height: 5px;
		border-radius: 50%;
		background: var(--rn-black);
		opacity: 0;
		transition: opacity 0.3s;
	}

	.rn-header__sp-nav > ul > li > a:hover::before,
	.rn-header__sp-nav > ul > li.rn-sp-cat.is-open > .rn-sp-cat__title::before {
		opacity: 1;
	}

	/* トップレベルメニューの下線（左右両端に余白） */
	.rn-header__sp-nav > ul > li > a::after,
	.rn-header__sp-nav > ul > li > .rn-sp-cat__title::after {
		content: '';
		position: absolute;
		bottom: 0;
		left: 20px;
		right: 20px;
		height: 1px;
		background: rgba(0,0,0,0.1);
	}

	/* === CATEGORY accordion === */
	.rn-sp-cat__list {
		list-style: none;
		margin: 0;
		padding: 0;
	}

	/* CATEGORYの直下アコーディオン本体: タップで開閉 */
	.rn-sp-cat > .rn-sp-cat__list {
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.4s ease;
	}

	.rn-sp-cat.is-open > .rn-sp-cat__list {
		max-height: 3000px;
	}

	/* アコーディオン項目（一枚板 / 家具 …） */
	.rn-sp-acc {
		position: static;
	}

	.rn-sp-acc__toggle {
		appearance: none;
		-webkit-appearance: none;
		background: transparent;
		border: none;
		width: 100%;
		text-align: left;
		display: block;
		padding: 12px 56px 12px 50px;
		font-family: var(--rn-font-ws);
		font-size: 14px;
		font-weight: 400;
		letter-spacing: 1.5px;
		color: var(--rn-black);
		cursor: pointer;
		position: relative;
	}

	/* セパレーター線（インデントに合わせて左を寄せる） */
	.rn-sp-acc__toggle::before {
		content: '';
		position: absolute;
		bottom: 0;
		left: 50px;
		right: 0;
		height: 1px;
		background: rgba(0,0,0,0.08);
	}

	/* シェブロン */
	.rn-sp-acc__toggle::after {
		content: '';
		position: absolute;
		right: 32px;
		top: 50%;
		width: 8px;
		height: 8px;
		border-right: 1.5px solid var(--rn-black);
		border-bottom: 1.5px solid var(--rn-black);
		transform: translate(0, -70%) rotate(45deg);
		transition: transform 0.3s;
	}

	.rn-sp-acc.is-open > .rn-sp-acc__toggle::after {
		transform: translate(0, -25%) rotate(-135deg);
	}

	.rn-header__sp-nav ul li a.rn-sp-acc__toggle--link {
		display: block;
		padding: 12px 56px 12px 50px;
		font-family: var(--rn-font-ws);
		font-size: 14px;
		font-weight: 400;
		letter-spacing: 1.5px;
		color: var(--rn-black);
	}

	.rn-sp-acc__toggle--link::after {
		display: none;
	}

	/* アコーディオン本文 */
	.rn-sp-acc__body {
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.35s ease;
	}

	.rn-sp-acc.is-open > .rn-sp-acc__body {
		max-height: 2000px;
	}

	/* SP SEARCH 用フォーム */
	.rn-sp-cat__list--search {
		padding: 12px 20px 16px 50px;
	}

	.rn-sp-search-form {
		display: flex;
		align-items: center;
		width: 100%;
		border: 1px solid var(--rn-gray);
		border-radius: 999px;
		padding: 4px 16px 4px 12px;
		gap: 8px;
		background: var(--rn-white);
	}

	.rn-sp-search-form__submit {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 26px;
		height: 26px;
		background: transparent;
		border: none;
		cursor: pointer;
		padding: 0;
		flex-shrink: 0;
	}

	.rn-sp-search-form__submit img {
		width: 20px;
		height: 20px;
	}

	/* SP icon submenu panels（sp-contact 下に表示） */
	.rn-sp-icon-panels {
		background: transparent;
	}

	.rn-sp-icon-panel {
		max-height: 0;
		overflow: hidden;
		transition: max-height 0.35s ease, padding 0.35s ease;
		background: transparent;
	}

	.rn-sp-icon-panel.is-open {
		max-height: 600px;
	}

	.rn-sp-icon-panel ul {
		list-style: none;
		margin: 0;
		padding: 0;
	}

	.rn-sp-icon-panel li {
		position: relative;
	}

	.rn-sp-icon-panel li a {
		display: block;
		padding: 12px 40px;
		font-family: var(--rn-font-ws);
		font-size: 13px;
		letter-spacing: 1.2px;
		color: var(--rn-black);
	}

	/* リーフ下線（左右に余白） */
	.rn-sp-icon-panel li::after {
		content: '';
		position: absolute;
		bottom: 0;
		left: 40px;
		right: 40px;
		height: 1px;
		background: rgba(0,0,0,0.1);
	}

	/* SP用 SEARCH パネル（ヘッダー直下にスライド表示） */
	.rn-sp-icon-panel--top {
		display: block;
		position: fixed;
		top: var(--rn-header-h);
		left: 0;
		right: 0;
		z-index: 998;
		padding: 0 20px;
		background: var(--rn-white);
		box-shadow: 0 4px 8px rgba(0,0,0,0.08);
		max-height: 0;
	}

	.rn-sp-icon-panel--top.is-open {
		max-height: 200px;
		padding: 16px 20px;
	}

	/* ハンバーガーメニュー内SEARCH パネル */
	.rn-sp-icon-panel--inmenu {
		background: transparent;
		padding: 0 20px;
	}

	.rn-sp-icon-panel--inmenu.is-open {
		max-height: 200px;
		padding: 16px 20px;
	}

	/* inmenu内には下線不要 */
	.rn-sp-icon-panel--inmenu li::after {
		display: none;
	}

	/* sp-contactアイコンがアクティブ（サブメニュー展開中）のとき、下に黒丸表示 */
	.rn-header__sp-contact .rn-sp-icon-btn {
		position: relative;
	}

	.rn-header__sp-contact .rn-sp-icon-btn::after {
		content: '';
		position: absolute;
		bottom: -10px;
		left: 50%;
		transform: translateX(-50%);
		width: 5px;
		height: 5px;
		border-radius: 50%;
		background: var(--rn-black);
		opacity: 0;
		transition: opacity 0.3s;
	}

	.rn-header__sp-contact .rn-sp-icon-btn.is-active::after {
		opacity: 1;
	}

	.rn-sp-search-form__input {
		flex: 1;
		border: none;
		outline: none;
		background: transparent;
		font-family: var(--rn-font-ws);
		font-size: 12px;
		letter-spacing: 1px;
		padding: 6px 0;
		color: var(--rn-black);
		min-width: 0;
	}

	.rn-sp-cat__list--nested > li > .rn-sp-acc__toggle {
		padding-top: 10px;
		padding-bottom: 10px;
		padding-left: 65px;
		font-size: 11px;
	}

	.rn-sp-cat__list--nested > li > .rn-sp-acc__toggle::before {
		left: 50px;
	}

	.rn-sp-leaf {
		list-style: none;
		margin: 0;
		padding: 0;
	}

	.rn-sp-leaf li {
		position: relative;
	}

	.rn-sp-leaf li::after {
		content: '';
		position: absolute;
		bottom: 0;
		left: 50px;
		right: 0;
		height: 1px;
		background: rgba(0,0,0,0.06);
	}

	.rn-sp-cat__list--nested .rn-sp-leaf li::after {
		left: 50px;
	}

	.rn-header__sp-nav .rn-sp-leaf li a {
		display: block;
		padding: 10px 60px 10px 78px;
		font-family: var(--rn-font-ws);
		font-size: 11px;
		letter-spacing: 1.2px;
		color: var(--rn-black);
	}

	/* ネスト内のリーフはさらに浅く + 深くインデント */
	.rn-header__sp-nav .rn-sp-cat__list--nested .rn-sp-leaf li a {
		padding-top: 8px;
		padding-bottom: 8px;
		padding-left: 78px;
	}

	/* アイコン3つ横並び（白丸背景）左端をメニューと揃える */
	.rn-header__sp-contact {
		padding: 30px 40px;
		display: flex;
		justify-content: flex-start;
		gap: 18px;
	}

	.rn-header__sp-icon-btn {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 50px;
		height: 50px;
		border-radius: 50%;
		background: var(--rn-white);
		transition: opacity 0.3s;
	}

	.rn-header__sp-icon-btn:hover {
		opacity: 0.7;
	}


	/* Section header SP */
	.rn-section-header__line {
		height: 70px;
	}

	.rn-section-header__title {
		letter-spacing: 2.52px;
	}

	/* Hero SP */
	.rn-hero__slide-wrap {
		height: 500px;
	}

	.rn-hero__dots {
		position: relative;
		z-index: 1;
		padding-right: 18px;
		margin-top: -20px;
	}

	.rn-hero__text {
		padding: 40px 20px 35px;
	}

	.rn-hero__title {
		font-size: 22px;
		letter-spacing: 3.08px;
	}

	.rn-hero__body-row {
		flex-direction: column;
		align-items: flex-start;
	}

	.rn-hero .rn-view-more--right {
		margin-top: 22px;
		align-self: end;
	}

	/* Sections SP - spacing */
	.rn-size,
	.rn-material,
	.rn-news,
	.rn-voice,
	.rn-product,
	.rn-banners,
	.rn-instagram {
		margin-top: 60px;
		padding-bottom: 60px;
	}

	.rn-container {
		padding: 0 20px;
	}

	/* Size SP */
	.rn-size__buttons {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 10px;
	}

	.rn-size__btn {
		height: 60px;
		width: 100%;
		min-width: auto;
	}

	/* SP: 200~240（5番目）を最上段＋幅広に */
	.rn-size__btn:nth-child(5) {
		grid-column: 1 / -1;
		order: -1;
	}

	.rn-size__btn-label {
		font-size: 14px;
		margin-left: 0;
	}

	/* Material SP */
	.rn-material__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 18px;
	}

	.rn-material__card {
		min-width: 0;
		overflow: hidden;
	}

	.rn-material__img-wrap {
		height: auto;
	}

	.rn-material__img {
		width: 100%;
		height: auto;
		aspect-ratio: 1;
		margin: 0;
	}

	/* SPでは画像移動なし */
	.rn-material__card:hover .rn-material__img {
		margin: 0;
	}

	/* News SP */
	.rn-news__layout {
		flex-direction: column;
	}

	.rn-news__label {
		width: auto;
		margin-bottom: 20px;
		padding-top: 0;
	}

	.rn-news__post:last-child {
		border-bottom: 1px solid var(--rn-gray-dark);
	}

	.rn-news__posts {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 30px 20px;
	}

	.rn-news__post {
		flex-direction: column;
		padding: 0 0 30px;
		min-width: 0;
		overflow: hidden;
	}

	.rn-news__post a {
		display: block;
		width: 100%;
	}

	.rn-news__thumb {
		width: 100%;
		height: 180px;
		object-fit: cover;
	}

	.rn-news__text {
		margin-left: 0;
		padding-top: 8px;
	}

	.rn-news__title {
		font-size: 12px;
		letter-spacing: 1.44px;
		line-height: 25px;
		margin-top: 4px;
	}

	.rn-news__post-divider {
		margin-top: 8px;
		height: 1px;
		background: var(--rn-gray);
	}

	/* User Voice SP */
	.rn-voice__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}

	.rn-voice__item {
		aspect-ratio: 1 / 1.5;
	}

	.rn-voice__overlay {
		padding: 20px 15px 15px 15px;
	}
	.rn-voice__item-cat {
		font-size: 11px;
		line-height: 14px;
	}

	.rn-voice__item-en {
		font-size: 9px;
	}

	.rn-voice__overlay-date {
		font-size: 11px;
		margin: 5px 0;
	}

	.rn-voice__item-desc {
		font-size: 9px;
	}

	/* Product Type SP */
	.rn-product__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 25px 15px;
	}

	.rn-product__img-wrap {
		border-radius: 0;
	}

	/* 年輪装飾 SP（縮小・位置変更） */
	.rn-deco-wrap--size::before {
		width: 260px;
		height: 260px;
	}


	/* バナー SP: 下部年輪に変更 */
	.rn-deco-wrap--banners::before {
		width: 260px;
		height: 260px;
		background-image: url('/img/toppage/renewal/bk_nenrin_down.png');
	}

	.rn-deco-wrap--voice::before {
		width: 290px;
		height: 290px;
	}

	/* フッター SP: コンテンツ背景をSP用に切替 */
	.rn-footer__body {
		background-image: url('/img/common/renewal/footer-bk-sp.png');
	}

	.rn-footer {
		font-weight: 400;
	}

	/* 背景ラッパー SP */
	.rn-section-bg {
		padding: 50px 0;
	}

	/* ニュース・商品種類 SP用背景画像 */
	.rn-section-bg--news {
		background-image: url('/img/toppage/renewal/bk_news_sp.png');
	}

	.rn-section-bg--product {
		background-image: url('/img/toppage/renewal/bk_product_type_sp.png');
	}

	/* Banners SP */
	.rn-banner-grid {
		grid-template-columns: 1fr;
		gap: 10px;
		margin-top: 10px;
	}

	/* Instagram SP */
	.rn-instagram__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}

	/* Footer SP */

	/*.rn-footer__inner {
		grid-template-columns: 1fr;
		grid-template-rows: auto auto;
	}*/

	.rn-footer__deco {
		height: 111px;
	}

	.rn-footer__content {
		flex-direction: column;
		padding: 60px 40px 50px;
		gap: 50px;
	}

	.rn-footer__logo-text {
		font-size: 35px;
	}

	/* ナビを先、ブランドを後に */
	.rn-footer__nav-columns {
		order: -1;
	}

	/* ナビ4カラム → 2列グリッド、各nav-colの中のgroupを展開 */
	.rn-footer__nav-columns {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 30px;
	}

	/* 一枚板+素材のcol: 2グループを2列に展開 */
	.rn-footer__nav-col:nth-child(1) {
		display: contents;
	}

	/* カテゴリ */
	.rn-footer__nav-col:nth-child(2) {
		grid-column: 1;
	}

	/* 祭り屋について */
	.rn-footer__nav-col:nth-child(3) {
		grid-column: 2;
	}

	/* ブランド: 中央揃え */
	.rn-footer__brand {
		width: 100%;
		text-align: center;
	}

	.rn-footer__logo-row {
		justify-content: center;
	}

	.rn-footer__address {
		text-align: center;
	}

	.rn-footer__contact {
		text-align: center;
	}

	.rn-footer__email {
		text-align: center;
	}

	.rn-pagetop {
		bottom: 16px;
		right: 16px;
	}

	.rn-pagetop a {
		width: 40px;
		height: 40px;
		font-size: 9px;
	}
}
