/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 09 2026 | 13:50:52 */
/* ============================================================
   共通CSS（.rk スコープ）  ※SCJの「Add Custom CSS」に1回だけ登録
   ------------------------------------------------------------
   元: demo/css/common.css を .rk 配下にスコープ化 ＋ Lightning干渉の打ち消し
   ・全ページ読み込みでOK（.rk 配下にしか効かないため他ページに影響しない）
   ・画像を使う箇所は IMGBASE を実URLに一括置換
     （例: https://ringonokai-kyoei.jp/wp-content/uploads/rk/img ）
============================================================ */

/* フォント（Lightning側で既にNoto Sans JPを読んでいれば不要） */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");


/* =========================
   Base / Reset（.rk内のみ）
========================= */
.rk, .rk *, .rk *::before, .rk *::after { box-sizing: border-box; }

.rk {
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 400;
	line-height: 1.7;
	color: #333;
}
.rk a { color: inherit; text-decoration: none; }
.rk img { display: block; max-width: 100%; height: auto; }

/* Lightningがpに付ける上下余白を .rk 内では0リセット（元demoのress相当）。
   個別余白(.section-lead 等)は詳細度が高いので残る */
.rk p { margin-top: 0; margin-bottom: 0; }

/* Lightningの約1110pxコンテナを突破して .rk を全幅(100vw)に */
.rk {
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}

/* Lightningが見出しに付ける下線/余白/背景を .rk 内では打ち消す。
   margin:0 でdemo(ress)相当に揃える（各見出しの余白は個別指定が勝つ） */
.rk h1, .rk h2, .rk h3, .rk h4, .rk h5, .rk h6 {
	margin: 0;
	border: none;
	background: none;
	padding: 0;
}
/* Lightningが擬似要素で引く飾り下線も .rk 内では消す。
   content:none のみ（＝擬似要素を生成させない）にとどめる。
   ページ側で content:"" を指定した意匠下線(例:.service-page-title::after)は
   詳細度が高いのでそちらが勝ち、消えずに残る */
.rk h1::before, .rk h1::after,
.rk h2::before, .rk h2::after,
.rk h3::before, .rk h3::after,
.rk h4::before, .rk h4::after,
.rk h5::before, .rk h5::after,
.rk h6::before, .rk h6::after {
	content: none;
}


/* =========================
   Layout
========================= */
.rk section + section { margin-top: 80px; }
.rk .bg-section { padding: 80px 20px; margin-top: 0; }
.rk .section-bottom-space { margin-bottom: 80px; }
.rk .inner { max-width: 800px; margin: 0 auto; padding-inline: 16px; }
.rk .block { padding: 50px 30px; border-bottom: 1px solid #eee; }
.rk .block:last-child { border-bottom: none; }


/* =========================
   First View
========================= */
.rk .fv { position: relative; width: 100%; height: 50vh; max-height: 500px; overflow: hidden; }
.rk .fv img { width: 100%; height: 100%; object-fit: cover; }
.rk .fv-text-box {
	position: absolute; top: 50%; left: 10%; max-width: 420px; padding: 30px;
	background: rgba(255, 255, 255, 0.85); border-radius: 12px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	opacity: 0; transform: translateY(-50%) translateY(-20px);
	transition: opacity 1.2s ease 0.6s, transform 1.5s cubic-bezier(0.22, 1, 0.36, 1) 0.6s;
}
.rk .fv.is-active .fv-text-box { opacity: 1; transform: translateY(-50%) translateY(0); }
.rk .fv-sub { font-size: 14px; font-weight: 700; letter-spacing: 0.05em; text-align: left; color: #d64545; margin-bottom: 10px; }
.rk .fv-title { font-size: 28px; line-height: 1.2; letter-spacing: 0.05em; text-align: left; margin-bottom: 15px; }
.rk .fv-desc { font-size: 14px; line-height: 1.6; text-align: left; }


/* =========================
   Titles / Text
========================= */
.rk .page-title { font-size: 1.75rem; letter-spacing: 0.05em; text-align: center; margin: 20px 0; }
.rk .section-title { font-size: 22px; text-align: center; margin-bottom: 20px; }
.rk .page-title + .section-title { margin-top: 0; }
.rk .lead { font-size: 14px; text-align: center; color: #555; }
.rk .section-lead { font-size: 14px; line-height: 1.6; text-align: center; color: #555; margin-bottom: 20px; }
.rk .update-date { font-size: 13px; color: #666; text-align: right; margin-bottom: 20px; }


/* =========================
   Buttons
========================= */
.rk .btn {
	display: inline-block; padding: 12px 24px; border-radius: 999px;
	font-size: 14px; font-weight: 700; color: #fff; background: #d64545; cursor: pointer;
	transition: background-color 0.4s cubic-bezier(0.22, 1, 0.36, 1), transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.rk .btn:hover { background: #b63a3a; transform: translateY(-2px); box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15); }
.rk .btn:active { transform: translateY(0); box-shadow: none; }
.rk .btn-large { padding: 16px 32px; font-size: 16px; }
.rk .btn.is-disabled { background: #ccc; color: #666; pointer-events: none; box-shadow: none; transform: none; }
.rk .btn-like { cursor: default; pointer-events: none; }


/* =========================
   Navigation
========================= */
.rk .category-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: 25px 0; }
.rk .category-nav a {
	display: inline-block; padding: 8px 14px; border-radius: 20px; border: 1px solid; font-size: 14px;
	transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.rk .category-nav a:hover { opacity: 0.85; transform: translateY(-2px); box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08); }


/* =========================
   Top Cards
========================= */
.rk .top-card-slider { position: relative; }
.rk .top-card-grid { display: flex; justify-content: center; flex-wrap: wrap; gap: 30px; margin-top: 40px; }
.rk .grid-3 .top-card-item { width: calc((100% - 60px) / 3); }
.rk .grid-2 .top-card-item { width: calc((100% - 30px) / 2); }
.rk .top-card-item { display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 30px; background: #fff; cursor: pointer; }
.rk .top-card-item, .rk .link-card { border-radius: 12px; transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.4s cubic-bezier(0.22, 1, 0.36, 1); }
.rk .top-card-item:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08); }
.rk .top-card-item:active { transform: translateY(-1px) scale(0.98); box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); }
.rk .top-card-icon { width: 60px; margin-bottom: 18px; transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1); }
.rk .top-card-item:hover .top-card-icon { transform: scale(1.12) translateY(-3px); }
.rk .top-card-item h3 { font-size: clamp(14px, 1.6vw, 17px); text-align: center; margin-bottom: 15px; }
.rk .top-card-item .btn { font-size: 14px; line-height: 1.6; text-align: center; }
.rk .top-card-item:hover .btn { transform: translateY(-2px) scale(1.03); box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15); }


/* =========================
   Link Cards
========================= */
.rk .links-grid { display: flex; justify-content: center; gap: 20px; }
.rk .link-card { width: 25%; padding: 25px 20px; background: #f8f3f0; color: #333; }
.rk .link-card:hover { background-color: #efe7e3; transform: translateY(-4px) scale(1.01); box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08); }
.rk .link-card.is-main { background: #d66a6a; color: #fff; }
.rk .link-card.is-main:hover { background: #c95a5a; }
.rk .link-title { white-space: nowrap; font-size: clamp(12px, 1.6vw, 16px); font-weight: 700; }


/* =========================
   Modal
========================= */
.rk .modal {
	display: flex; justify-content: center; align-items: center;
	position: fixed; inset: 0; z-index: 1000; padding: 12px;
	background: rgba(0, 0, 0, 0.5); opacity: 0; visibility: hidden; transition: 0.3s;
}
.rk .modal.show { opacity: 1; visibility: visible; }
.rk .modal-content {
	width: 90%; max-height: calc(100vh - 40px); max-height: calc(100dvh - 40px);
	overflow-y: auto; overflow-x: hidden; border-radius: 16px; background: #fff; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
	-webkit-overflow-scrolling: touch; overscroll-behavior: contain;
}
.rk .modal-close {
	margin-top: auto; padding: 0; border: none; background: none;
	font-size: 28px; line-height: 1; text-align: center; color: #666; cursor: pointer;
	transition: color 0.3s ease, transform 0.3s ease;
}
.rk .modal-close:hover { transform: scale(1.2); }


/* =========================
   Notice / Notes
========================= */
.rk .notice-box { padding: 15px; margin: 20px 0; font-size: 14px; border: 1px solid #ddd; background: #fafafa; }
.rk .notice-box a { color: #333; text-decoration: underline; text-underline-offset: 0.2em; }
.rk .notice-box p { margin: 6px 0; }
.rk .annotation, .rk .note { position: relative; padding-left: 1.1em; text-indent: 0; }
.rk .annotation::before, .rk .note::before { content: "※"; position: absolute; left: 0; }
.rk .note { margin-top: 6px; font-size: 13px; line-height: 1.45; color: #777; }


/* =========================
   Slider（汎用スライダー）
========================= */
.rk .slider { position: relative; }
.rk .slider-track { display: flex; overflow: hidden; }
.rk .slider-btn { display: none; position: absolute; z-index: 100; }


/* =========================
   Utilities
========================= */
.rk .text-gap { display: block; height: 0.6em; }
.rk .text-underline { text-decoration: underline; }
.rk .text-bold { font-weight: 700; }
.rk .text-red { color: #d6455d; }
.rk .text-blue { color: #3a7bd5; }
.rk .sp-br { display: none; }


/* =========================
   Responsive
========================= */
@media screen and (max-width: 768px) {
	.rk .section-title { font-size: 20px; }
	.rk .block { padding: 40px 10px; }

	/* Navigation */
	.rk .category-nav { gap: 8px; }
	.rk .category-nav a { padding: 7px 12px; font-size: 12px; }

	/* Link Cards */
	.rk .links-grid { flex-direction: column; }
	.rk .link-card { width: 100%; }
	.rk .link-title { font-size: 14px; }

	/* Slider */
	.rk .slider-track {
		overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
		-webkit-overflow-scrolling: touch; scrollbar-width: none; -ms-overflow-style: none;
	}
	.rk .slider-track::-webkit-scrollbar { display: none; }
	.rk .slider-btn {
		display: block; top: 50%; transform: translateY(-50%);
		width: 36px; height: 36px; border: none; border-radius: 50%;
		background: rgba(0, 0, 0, 0.45); color: #fff; cursor: pointer;
	}
	.rk .slider-btn.prev { left: -8px; }
	.rk .slider-btn.next { right: -8px; }

	/* Buttons */
	.rk .btn { width: 100%; }

	/* Modal */
	.rk .modal { padding: 12px; }
	.rk .modal-content { width: 100%; max-height: calc(100vh - 24px); max-height: calc(100dvh - 24px); padding: 20px; }

	/* Utilities */
	.rk .sp-br { display: block; }
}


/* ============================================================
   ▼▼▼ ページ固有CSS（以降、ページを追加するたびにここへ追記）▼▼▼
   各ページはラッパーに固有クラスを付ける（例: <div class="rk rk-about">）。
   固有CSSは必ずその固有クラス（.rk-xxx）配下に書くこと。
   → .blog / .slider 等の共有クラス名を使っても他ページに漏れない。
============================================================ */


/* ############################################################
   PAGE: りんごの会トップ  ラッパー: <div class="rk rk-index">
   元: demo/css/ringonokai/index.css
############################################################ */
.rk-index .fv img { object-position: top; }

.rk-index .bg-section { text-align: center; }
.rk-index .service-links, .rk-index .blog { background: #fff7f7; }

.rk-index .catalog-lead { font-size: 16px; line-height: 1.6; margin-bottom: 20px; }
.rk-index .catalog-note { margin-bottom: 20px; font-size: 14px; line-height: 1.6; color: #555; }
.rk-index .catalog-note a { color: #d64545; text-decoration: underline; }

.rk-index .service-links .inner, .rk-index .links .inner { max-width: 1000px; text-align: center; }

.rk-index .note-banner { display: block; max-width: 530px; margin: 30px auto; }
.rk-index .note-banner img { border: 1px solid #dce6f0; border-radius: 12px; transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1); }
.rk-index .note-banner:hover img { transform: translateY(-4px) scale(1.02); box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08); }

@media screen and (max-width: 768px) {
	/* First View */
	.rk-index .fv { height: 60vh; min-height: 300px; }
	.rk-index .fv img { position: absolute; inset: 0; z-index: 0; }
	.rk-index .fv-text-box { top: 50%; left: 50%; width: 90%; max-width: 500px; color: #222; z-index: 2; transform: translate(-50%, -50%) translateY(-20px); }
	.rk-index .fv.is-active .fv-text-box { transform: translate(-50%, -50%) translateY(0); }
	.rk-index .fv-title { font-size: 22px; line-height: 1.3; }

	/* Service Links */
	.rk-index .service-links { padding-inline: 0; }
	.rk-index .service-links .inner { padding-inline: 0; }
	.rk-index .top-card-grid {
		flex-wrap: nowrap; justify-content: flex-start; gap: 15px;
		overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
		-webkit-overflow-scrolling: touch; scrollbar-width: none; -ms-overflow-style: none;
		padding-left: calc((100vw - 88vw) / 2); padding-right: calc((100vw - 88vw) / 2); box-sizing: border-box;
	}
	.rk-index .top-card-grid::-webkit-scrollbar { display: none; }
	.rk-index .grid-3 .top-card-item, .rk-index .grid-2 .top-card-item, .rk-index .top-card-item { width: 88vw; flex: 0 0 88vw; scroll-snap-align: center; }
	.rk-index .top-card-item h3 { font-size: 16px; }
}


/* ############################################################
   PAGE: りんごについて  ラッパー: <div class="rk rk-about">
   元: demo/css/ringonokai/about.css
############################################################ */
.rk-about .about-fv {
	position: relative;
	padding: 80px 20px 60px;
	text-align: center;
	background: url("https://ringonokai-kyoei.jp/wp-content/uploads/2026/07/fv_ringonokai-1.jpg") center/cover no-repeat;
}
.rk-about .about-fv::before, .rk-about .about-fv::after { content: ""; position: absolute; inset: 0; }
.rk-about .about-fv::before { background: rgba(255, 255, 255, 0.5); }
.rk-about .about-fv::after { background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2) 0, #fff 100%); }
.rk-about .about-fv .inner { position: relative; z-index: 1; }

.rk-about .service-page-title {
	position: relative; display: block; margin-bottom: 20px; padding-bottom: 14px;
	font-size: 28px; font-weight: 700; line-height: 1.4; letter-spacing: 0.08em;
}
.rk-about .service-page-title::after {
	content: ""; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%);
	width: min(700px, 100%); height: 2px;
	background: linear-gradient(to right,
		rgba(215, 70, 70, 0) 0%,
		rgba(215, 70, 70, 0.9) 25%,
		rgba(215, 70, 70, 0.9) 75%,
		rgba(215, 70, 70, 0) 100%);
}

.rk-about .about-fv + section { margin-top: 0; }
.rk-about .storage-main-img { position: relative; max-width: 700px; height: clamp(260px, 40vw, 340px); margin: 0 auto; overflow: hidden; }
.rk-about .storage-main-img img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.25); }
.rk-about .storage-lead {
	position: absolute; top: 50%; left: 0; transform: translateY(-50%); width: 100%;
	padding: 14px 20px; background: rgba(255, 255, 255, 0.8);
	font-size: 14px; line-height: 1.6; text-align: center;
}
.rk-about .storage-title { margin-bottom: 12px; padding-left: 10px; border-left: 3px solid #d64545; font-size: 16px; }
.rk-about .storage .block > * { max-width: 700px; margin-inline: auto; }
.rk-about .steps { padding-left: 20px; margin-bottom: 10px; }
.rk-about .steps li { margin-bottom: 6px; font-size: 14px; }

.rk-about .block > p { margin-bottom: 10px; font-size: 14px; line-height: 1.7; color: #444; }
.rk-about .block > *:last-child { margin-bottom: 0; }

.rk-about .blog .block { text-align: center; }
.rk-about .blog p { margin-bottom: 20px; }

.rk-about .slider-track { gap: 15px; }
.rk-about .slider-track img { display: block; width: 100%; border-radius: 12px; }
.rk-about .slider-2 .slider-track img { width: calc((100% - 15px) / 2); }
.rk-about .slider-4 .slider-track img { width: calc((100% - 45px) / 4); }

@media screen and (max-width: 768px) {
	/* About First View */
	.rk-about .service-page-title { margin-bottom: 10px; font-size: 20px; line-height: 1.4; letter-spacing: 0.03em; }

	/* Storage */
	.rk-about .storage-main-img { height: 260px; }
	.rk-about .storage-main-img img { transform: scale(1.35); }
	.rk-about .storage-lead { padding: 12px 24px; font-size: 13px; }

	/* Slider */
	.rk-about .sugar .slider, .rk-about .blog .slider {
		width: 100vw; margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); overflow: hidden;
	}
	.rk-about .slider { overflow: hidden; }
	.rk-about .slider-track { padding-left: calc((100vw - 88vw) / 2); padding-right: calc((100vw - 88vw) / 2); box-sizing: border-box; }
	.rk-about .slider-track img { width: 88vw; flex: 0 0 88vw; scroll-snap-align: center; }
	.rk-about .slider-btn.prev { left: 16px; }
	.rk-about .slider-btn.next { right: 16px; }
}


/* ############################################################
   PAGE: 見た目と等級  ラッパー: <div class="rk rk-grade">
   元: demo/css/ringonokai/grade.css
############################################################ */
.rk-grade .grade-title { margin-bottom: 12px; font-size: 16px; }
.rk-grade .grade-title::before { content: "■"; margin-right: 6px; }
.rk-grade .saikokyu .grade-title::before { color: #7a4bb8; }
.rk-grade .tokusen .grade-title::before { color: #e67e22; }
.rk-grade .katei .grade-title::before { color: #d64545; }
.rk-grade .kokizu .grade-title::before { color: #3aa37a; }

.rk-grade .block p { margin-bottom: 10px; font-size: 14px; line-height: 1.7; color: #444; }
.rk-grade .block p:last-child { margin-bottom: 0; }

.rk-grade .block.saikokyu .slider { background: url("https://ringonokai-kyoei.jp/wp-content/uploads/2026/07/bg-saikokyu.jpg") center/cover no-repeat; }
.rk-grade .block.tokusen .slider { background: url("https://ringonokai-kyoei.jp/wp-content/uploads/2026/07/bg-tokusen.jpg") center/cover no-repeat; }
.rk-grade .block.katei .slider { background: url("https://ringonokai-kyoei.jp/wp-content/uploads/2026/07/bg-katei.jpg") center/cover no-repeat; }
.rk-grade .block.kokizu .slider { background: url("https://ringonokai-kyoei.jp/wp-content/uploads/2026/07/bg-kokizu.jpg") center/cover no-repeat; }

/* Slider（grade固有） */
.rk-grade .slider { z-index: 1; margin-bottom: 12px; }
.rk-grade .slider-track { justify-content: center; gap: 0; margin: 0 auto; }
.rk-grade .slider-track > img, .rk-grade .slider-track .callout { width: 175px; flex: 0 0 175px; }
.rk-grade .slider-track .callout { position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.rk-grade .callout-inner { position: relative; display: flex; align-items: center; justify-content: center; width: 75%; aspect-ratio: 1 / 1; border-radius: 50%; overflow: hidden; }
.rk-grade .callout-inner img { width: 200%; max-width: none; transform: translateY(5%); }
.rk-grade .callout-text { position: absolute; left: 50%; bottom: 12%; transform: translateX(-50%); white-space: nowrap; font-size: 13px; color: #fff; }

/* Packing Guide */
.rk-grade .packing-guide { padding: 0 15px 40px; }
.rk-grade .packing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.rk-grade .packing-item { border: 1px solid #eee; border-radius: 12px; overflow: hidden; background: #f8f8f8; }
.rk-grade .packing-content { padding: 15px; }
.rk-grade .packing-content h4 { margin-bottom: 8px; font-size: 15px; }
.rk-grade .packing-content p { font-size: 13px; line-height: 1.7; color: #555; }

/* Disorder */
.rk-grade .disorder { background: #faf7f2; }
.rk-grade .disorder-item { display: flex; align-items: flex-start; column-gap: 30px; padding: 40px 30px; border-bottom: 1px solid #e2d8cc; }
.rk-grade .disorder-item:last-child { border-bottom: none; }
.rk-grade .disorder-img { width: 200px; flex: 0 0 200px; }
.rk-grade .disorder-img img { border-radius: 12px; }
.rk-grade .disorder-content { flex: 1; }
.rk-grade .disorder-lead { margin-bottom: 4px; font-size: 13px; color: #666; }
.rk-grade .disorder-title { margin-bottom: 12px; font-size: 18px; }
.rk-grade .disorder-text { font-size: 14px; line-height: 1.7; }
.rk-grade .disorder-sub { margin-top: 20px; padding: 15px; border-radius: 8px; background: #fff; box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04); }
.rk-grade .disorder-sub h4 { margin-bottom: 6px; font-size: 14px; }
.rk-grade .disorder-sub p { margin: 0; font-size: 13px; line-height: 1.6; }

@media screen and (max-width: 768px) {
	/* Slider */
	.rk-grade .slider { overflow: visible; border-radius: 12px; background-clip: padding-box; }
	.rk-grade .slider-track { justify-content: flex-start; gap: 15px; padding: 0; max-width: none; box-sizing: border-box; overflow-y: hidden; }
	.rk-grade .slider-track > img, .rk-grade .slider-track .callout { width: 100%; flex: 0 0 100%; scroll-snap-align: center; }
	.rk-grade .callout-inner { width: 85%; max-width: none; }
	.rk-grade .callout-text { bottom: 15%; font-size: clamp(14px, 4vw, 18px); }
	.rk-grade .slider-btn.prev { left: -8px; }
	.rk-grade .slider-btn.next { right: -8px; }

	/* Packing Guide */
	.rk-grade .packing-grid { grid-template-columns: 1fr; }

	/* Disorder */
	.rk-grade .disorder-item { flex-direction: column; }
	.rk-grade .disorder-img { width: 100%; margin-bottom: 10px; }
}


/* ############################################################
   PAGE: ポイント還元サービス  ラッパー: <div class="rk rk-point">
   元: demo/css/ringonokai/point.css
############################################################ */
.rk-point .lead { margin-bottom: 20px; }
.rk-point .point-text { width: fit-content; margin-inline: auto; text-align: left; }

.rk-point .block-title { margin-bottom: 18px; font-size: 16px; }
.rk-point .block-title::before { content: "■"; margin-right: 6px; color: #ec7818; }
.rk-point .answer { margin-bottom: 15px; padding: 15px; border-radius: 8px; background: #faf7f2; }
.rk-point .answer-title { margin-bottom: 5px; font-size: 13px; color: #666; }
.rk-point .answer-main { font-size: 14px; }

.rk-point .highlight { font-weight: 700; color: #ec7818; }
.rk-point .highlight-lg { font-size: 1.1em; }
.rk-point .marker { padding: 0 2px; font-weight: 600; background: linear-gradient(transparent 68%, #ffe8cc 68%); box-decoration-break: clone; }
.rk-point .link { color: #ec7818; text-decoration: underline; text-underline-offset: 0.2em; }

.rk-point .point-list { margin-top: 10px; padding-left: 1.2em; }
.rk-point .point-list li { margin-bottom: 5px; }


/* ############################################################
   PAGE: りんごの品種と特徴  ラッパー: <div class="rk rk-variety">
   元: demo/css/ringonokai/variety.css
############################################################ */
/* Navigation（種別ごとの色） */
.rk-variety .category-nav a.nav-gokuwase { background: #e9f6f1; color: #2f7f63; border-color: #3aa37a; }
.rk-variety .category-nav a.nav-wase { background: #fff1e6; color: #c8640f; border-color: #e67e22; }
.rk-variety .category-nav a.nav-chusei { background: #fdecec; color: #b03030; border-color: #d64545; }
.rk-variety .category-nav a.nav-bansei { background: #f3ecfb; color: #5e3695; border-color: #7a4bb8; }

/* Apple Groups */
.rk-variety .apple-group { max-width: 800px; margin-top: 40px; margin-inline: auto; padding: 25px; border-radius: 8px; }
.rk-variety .apple-group.gokuwase { background: #edf9f5; }
.rk-variety .apple-group.wase { background: #fff8f2; }
.rk-variety .apple-group.chusei { background: #fff5f5; }
.rk-variety .apple-group.bansei { background: #faf7ff; }
.rk-variety .category-title { margin-bottom: 15px; font-size: 20px; color: #444; }
.rk-variety .category-title::before { content: "■"; margin-right: 6px; }
.rk-variety .apple-group.gokuwase .category-title::before { color: #3aa37a; }
.rk-variety .apple-group.wase .category-title::before { color: #e67e22; }
.rk-variety .apple-group.chusei .category-title::before { color: #d64545; }
.rk-variety .apple-group.bansei .category-title::before { color: #7a4bb8; }

/* Apple List */
.rk-variety .apple-list { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.rk-variety .apple-item { text-align: center; cursor: pointer; transition: transform 0.25s ease; }
.rk-variety .apple-item:hover { transform: translateY(-2px); }
.rk-variety .apple-item img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 50%; transition: filter 0.25s ease; }
.rk-variety .apple-item:hover img { filter: brightness(1.15); }
.rk-variety .apple-item p { margin-top: 6px; font-size: 14px; line-height: 1.3; color: #333; transition: color 0.25s ease; }
.rk-variety .apple-group.gokuwase .apple-item:hover p { color: #3aa37a; }
.rk-variety .apple-group.wase .apple-item:hover p { color: #e67e22; }
.rk-variety .apple-group.chusei .apple-item:hover p { color: #d64545; }
.rk-variety .apple-group.bansei .apple-item:hover p { color: #7a4bb8; }

/* Modal（品種詳細） */
.rk-variety #apple-modal.modal { background: rgba(0, 0, 0, 0.5); }
.rk-variety .modal-content { display: flex; flex-direction: column; gap: 12px; max-width: 520px; padding: 30px; }
.rk-variety #modal-img { width: 100%; aspect-ratio: 4 / 3; border-radius: 14px; object-fit: cover; }
.rk-variety #modal-name { font-size: 22px; font-weight: 700; line-height: 1.4; text-align: center; }
.rk-variety #modal-name ruby { line-height: 1.7; ruby-align: center; }
.rk-variety #modal-name rt { font-size: 10px; font-weight: 500; color: #777; }
.rk-variety .modal-meta { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.rk-variety .modal-meta div { padding: 6px 12px; border-radius: 999px; font-size: 12px; }
.rk-variety .modal.gokuwase .modal-meta div { background: #edf9f5; color: #3aa37a; }
.rk-variety .modal.wase .modal-meta div { background: #fff8f2; color: #e67e22; }
.rk-variety .modal.chusei .modal-meta div { background: #fff5f5; color: #d64545; }
.rk-variety .modal.bansei .modal-meta div { background: #faf7ff; color: #7a4bb8; }
.rk-variety #modal-desc { font-size: 14px; line-height: 1.6; text-align: center; color: #333; }
.rk-variety .modal.gokuwase .modal-close:hover { color: #3aa37a; }
.rk-variety .modal.wase .modal-close:hover { color: #e67e22; }
.rk-variety .modal.chusei .modal-close:hover { color: #d64545; }
.rk-variety .modal.bansei .modal-close:hover { color: #7a4bb8; }

@media screen and (max-width: 800px) {
	.rk-variety .apple-group { margin-inline: 16px; }
}
@media screen and (max-width: 768px) {
	.rk-variety .apple-list { grid-template-columns: repeat(3, 1fr); column-gap: 10px; row-gap: 18px; }
}


/* ############################################################
   PAGE: 発送スケジュール（トップ）  ラッパー: <div class="rk rk-schedule">
   元: demo/css/ringonokai/schedule.css
############################################################ */
.rk-schedule .intro + section { margin-top: 0; }

.rk-schedule .archive-calendar .inner { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; }
.rk-schedule .year-calendar { flex: 1 1 300px; min-width: 280px; padding: 15px; border-radius: 12px; }
.rk-schedule .year-calendar h2 { margin-bottom: 12px; font-size: 1.4rem; text-align: center; color: #333; }
.rk-schedule .year-calendar .months { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.rk-schedule .year-calendar .months a,
.rk-schedule .year-calendar .months span { display: flex; justify-content: center; align-items: center; height: 50px; border-radius: 12px; font-weight: 700; }
.rk-schedule .year-calendar .months a { background: #eee; color: #777; transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease; }
.rk-schedule .year-calendar .months a.active { background: #c95a5a; color: #fff; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); }
.rk-schedule .year-calendar .months a.active:hover { background: #d66a6a; transform: translateY(-3px); box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); }
.rk-schedule .year-calendar .months a:active { transform: scale(0.97); }
.rk-schedule .year-calendar .months span.inactive { background: #f5f5f5; color: #aaa; }

@media screen and (max-width: 768px) {
	.rk-schedule .year-calendar .months { grid-template-columns: repeat(3, 1fr); gap: 8px; }
}


/* ############################################################
   PAGE: 発送スケジュール（月別 9月/10月 共通）  ラッパー: <div class="rk rk-sch-month">
   元: demo/css/ringonokai/schedule-content.css
############################################################ */
/* Intro */
.rk-sch-month .intro h2 { display: flex; align-items: center; justify-content: center; gap: 12px; margin: 30px 0 20px; font-size: 1.1rem; font-weight: 600; color: #444; }
.rk-sch-month .intro h2::before, .rk-sch-month .intro h2::after { content: ""; width: 30px; height: 1px; background: #d6c4c8; }
.rk-sch-month .intro + section { margin-top: 0; }

/* Navigation */
.rk-sch-month .category-nav a.nav-apple { background: #fff4f7; color: #b45c6c; border-color: #e6a4b4; }
.rk-sch-month .category-nav a.nav-rice { background: #fff4d6; color: #d27c00; border-color: #e3c86b; }
.rk-sch-month .category-nav a.nav-others { background: #e9f6f1; color: #2f7f63; border-color: #9ec9b0; }

/* Category Titles */
.rk-sch-month .cat-title { margin-bottom: 20px; padding-left: 8px; border-left: 4px solid; scroll-margin-top: 20px; font-size: 15px; }
.rk-sch-month .cat-apple .cat-title { border-color: #e6a4b4; }
.rk-sch-month .cat-rice .cat-title { border-color: #e3c86b; }
.rk-sch-month .cat-others .cat-title { border-color: #9ec9b0; }

/* Accordion */
.rk-sch-month .course-item { margin-bottom: 40px; }
.rk-sch-month .course-item details { margin-bottom: 15px; border: 1px solid #e5e5e5; border-radius: 10px; background: #fff; overflow: hidden; box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04); }
.rk-sch-month .course-item summary { position: relative; padding: 15px 35px 15px 15px; font-weight: 600; list-style: none; cursor: pointer; }
.rk-sch-month .course-item summary::-webkit-details-marker { display: none; }
.rk-sch-month .course-item summary::after { content: ""; position: absolute; top: 50%; right: 18px; width: 8px; height: 8px; border-right: 2px solid #666; border-bottom: 2px solid #666; transform: translateY(-50%) rotate(45deg); transition: transform 0.3s ease; }
.rk-sch-month .course-item details[open] summary::after { transform: translateY(-50%) rotate(-135deg); }
.rk-sch-month .course-item summary:hover { filter: brightness(0.97); }
.rk-sch-month #apple .course-item summary { background: #fff4f7; }
.rk-sch-month #rice .course-item summary { background: #fff4d6; }
.rk-sch-month #others .course-item summary { background: #e9f6f1; }
.rk-sch-month #apple .course-item details[open] summary { background: #f8dbe3; }
.rk-sch-month #rice .course-item details[open] summary { background: #f9ecb8; }
.rk-sch-month #others .course-item details[open] summary { background: #dff0ea; }
.rk-sch-month .summary-sub { font-size: 0.85em; }
.rk-sch-month .course-content { padding: 15px; font-size: 14px; opacity: 0; transform: translateY(-5px); transition: opacity 0.25s ease, transform 0.25s ease; }
.rk-sch-month .course-item details[open] .course-content { opacity: 1; transform: translateY(0); }
.rk-sch-month .course-content p { margin: 8px 0; }

/* Delivery Notes */
.rk-sch-month .delivery-note { margin-bottom: 16px; padding: 8px 12px; border: 1px solid transparent; border-radius: 6px; font-size: 13px; line-height: 1.6; }
.rk-sch-month .delivery-note p { position: relative; margin: 2px 0; padding-left: 1.1em; text-indent: 0; }
.rk-sch-month .delivery-note p::before { content: "※"; position: absolute; left: 0; }
.rk-sch-month #apple .delivery-note { background: #fff8fa; color: #b45c6c; border-color: #e6a4b4; }
.rk-sch-month #rice .delivery-note { background: #fff9e9; color: #d27c00; border-color: #e3c86b; }
.rk-sch-month #others .delivery-note { background: #f7fdf9; color: #2f7f63; border-color: #9ec9b0; }

/* Delivery Blocks */
.rk-sch-month .delivery-block + .delivery-block { margin-top: 16px; padding-top: 16px; border-top: 1px solid #ddd; }
.rk-sch-month .label { margin-right: 0.5em; font-weight: 600; }
.rk-sch-month .rice-name { display: inline-block; margin: 0 0.25em; font-weight: 600; color: #d27c00; }

/* Links / set-item */
.rk-sch-month .course-content a, .rk-sch-month .set-item { position: relative; color: inherit; transition: color 0.3s ease; }
.rk-sch-month .course-content a { text-decoration: none; }
.rk-sch-month .set-item { cursor: pointer; }
.rk-sch-month .course-content a::after, .rk-sch-month .set-item::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 100%; height: 1px; transform: scaleX(0); transform-origin: left; transition: transform 0.3s ease; }
.rk-sch-month #apple .course-content a:hover, .rk-sch-month #apple .set-item:hover, .rk-sch-month #apple .note.warning, .rk-sch-month .modal.apple .modal-close:hover { color: #b45c6c; }
.rk-sch-month #apple .course-content a::after, .rk-sch-month #apple .set-item::after { background: #b45c6c; }
.rk-sch-month #rice .course-content a:hover, .rk-sch-month #rice .set-item:hover, .rk-sch-month #rice .note.warning, .rk-sch-month .modal.rice .modal-close:hover { color: #d27c00; }
.rk-sch-month #rice .course-content a::after, .rk-sch-month #rice .set-item::after { background: #d27c00; }
.rk-sch-month #others .course-content a:hover, .rk-sch-month #others .set-item:hover, .rk-sch-month #others .note.warning, .rk-sch-month .modal.others .modal-close:hover { color: #2f7f63; }
.rk-sch-month #others .course-content a::after, .rk-sch-month #others .set-item::after { background: #2f7f63; }
.rk-sch-month #apple .course-content a:hover::after, .rk-sch-month #apple .set-item:hover::after,
.rk-sch-month #rice .course-content a:hover::after, .rk-sch-month #rice .set-item:hover::after,
.rk-sch-month #others .course-content a:hover::after, .rk-sch-month #others .set-item:hover::after { transform: scaleX(1); }
.rk-sch-month .note a { text-decoration: underline !important; }
.rk-sch-month .note a::after { display: none !important; content: none !important; }

/* Modal（セット品） */
.rk-sch-month .modal-content { display: flex; flex-direction: column; max-width: 500px; min-height: 400px; padding: 30px; }
.rk-sch-month #modal-img { width: 100%; margin-bottom: 15px; border-radius: 16px; }
.rk-sch-month #modal-name { margin-bottom: 8px; font-size: 18px; font-weight: 700; line-height: 1.4; text-align: center; }
.rk-sch-month #modal-desc { margin-bottom: 24px; font-size: 14px; line-height: 1.7; text-align: center; color: #333; }

@media screen and (max-width: 768px) {
	.rk-sch-month .course-item summary { font-size: 14px; }
}


/* ############################################################
   PAGE: デジタルカタログ  ラッパー: <div class="rk rk-catalog">
   元: demo/css/ringonokai/digital-catalog.css
############################################################ */
.rk-catalog .intro + section { margin-top: 0; }
.rk-catalog .subscription.bg-section { background: #fff; }
.rk-catalog .products.bg-section { background: #faf7f2; }

.rk-catalog .section-title { position: relative; display: table; margin-inline: auto; margin-bottom: 30px; padding-bottom: 8px; }
.rk-catalog .section-title::after { content: ""; position: absolute; left: 50%; bottom: 0; width: 90%; height: 2px; background: #d64545; transform: translateX(-50%); }

/* Catalog List */
.rk-catalog .catalog-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }

/* Catalog Card */
.rk-catalog .catalog-card { display: flex; align-items: center; gap: 24px; padding: 28px; border-radius: 20px; background: #fff; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), 0 8px 20px rgba(0, 0, 0, 0.06); }
.rk-catalog .catalog-card.is-single { max-width: 560px; margin-inline: auto; }
.rk-catalog .catalog-card.is-stack .catalog-btns { flex-direction: column; }

/* Catalog Image */
.rk-catalog .catalog-thumb { flex-shrink: 0; width: 130px; }
.rk-catalog .catalog-thumb img { border: 1px solid #e8e8e8; box-shadow: 0 2px 6px rgba(0, 0, 0, 0.10), 0 8px 14px rgba(0, 0, 0, 0.12); }

/* Catalog Content */
.rk-catalog .catalog-content { flex: 1; min-width: 0; }
.rk-catalog .catalog-label { margin-bottom: 6px; font-size: 12px; font-weight: 600; letter-spacing: 0.08em; color: #d64545; }
.rk-catalog .catalog-title { margin-bottom: 12px; font-size: 18px; line-height: 1.4; }
.rk-catalog .catalog-text { margin-bottom: 14px; font-size: 14px; line-height: 1.7; color: #555; }

/* Catalog Buttons */
.rk-catalog .catalog-btns { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.rk-catalog .catalog-btns .btn { text-align: center; }
.rk-catalog .btn-sub { border: 1px solid #e3d3bd; background: #f6efe5; color: #8a6338; }
.rk-catalog .btn-sub:hover { background: #efe3d2; box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08); }
.rk-catalog .btn-sub.is-disabled { border-color: #ccc; font-size: 13px; }

/* Online Shop */
.rk-catalog .catalog-shop { margin-top: 40px; text-align: center; }
.rk-catalog .catalog-shop-text { margin-bottom: 14px; font-size: 14px; font-weight: 700; }
.rk-catalog .catalog-shop-btn { display: inline-block; padding: 18px 42px; border-radius: 999px; background: #ec7818; box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25); font-size: 16px; font-weight: 700; color: #fff; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.rk-catalog .catalog-shop-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 18px rgba(0, 0, 0, 0.3); }
.rk-catalog .catalog-shop-label { margin-top: 20px; font-size: 13px; color: #777; }

/* Footer */
.rk-catalog .catalog-footer { margin-top: 0; padding: 20px 0; background: #f8f5f0; }
.rk-catalog .catalog-note { font-size: 13px; line-height: 1.7; text-align: center; color: #777; }

@media screen and (max-width: 768px) {
	.rk-catalog .catalog-list { grid-template-columns: 1fr; gap: 20px; }
	.rk-catalog .catalog-card { flex-direction: column; align-items: center; gap: 20px; padding: 24px 18px; text-align: center; }
	.rk-catalog .catalog-thumb { width: 140px; margin-bottom: 10px; }
	.rk-catalog .catalog-content { width: 100%; }
	.rk-catalog .catalog-title { font-size: 18px; }
	.rk-catalog .catalog-btns { flex-direction: column; margin-top: 20px; }
	.rk-catalog .catalog-card .note { display: inline-block; text-align: left; }
}


/* ############################################################
   PAGE: 各種フォーム共通  ラッパー: <div class="rk rk-form">
   元: demo/css/form.css  ＋ Contact Form 7(CF7) 出力への対応
   ※ form-ringonokai / form-catalog / form-delivery で共通利用
############################################################ */
.rk-form .intro + section { margin-top: 0; }

/* 注意ボックス内テキストリンク（他フォームへの誘導） */
.rk-form .notice-box .text-link {
	display: inline-flex; align-items: center; gap: 0.25em; margin-top: 4px;
	color: #666; font-weight: 700; text-decoration: none; border-bottom: 1px solid currentColor;
	text-underline-offset: 0; transition: opacity 0.2s ease, border-color 0.2s ease;
}
.rk-form .notice-box .text-link::after { content: "→"; font-size: 0.9em; transition: transform 0.2s ease; }
.rk-form .notice-box .text-link:hover { opacity: 0.75; }
.rk-form .notice-box .text-link:hover::after { transform: translateX(3px); }

/* Block */
.rk-form .block > p { margin-bottom: 14px; font-size: 14px; line-height: 1.8; color: #444; }
.rk-form .block > p:last-child { margin-bottom: 0; }

/* Telephone Box */
.rk-form .tel-box { margin-top: 24px; padding: 20px; border: 1px solid #f1d4d4; border-radius: 12px; background: #fff8f8; text-align: center; }
.rk-form .tel-title { margin-bottom: 12px; font-size: 16px; font-weight: 700; color: #d64545; }
.rk-form .tel-free { margin-bottom: 0; font-size: 14px; font-weight: 700; }
.rk-form .tel-number { margin-bottom: 12px; font-size: 28px; font-weight: 700; line-height: 1.4; letter-spacing: 0.03em; color: #333; }
.rk-form .tel-note { font-size: 12px; font-weight: 400; color: #777; }
.rk-form .tel-time { display: inline-block; margin-top: 12px; padding-top: 12px; border-top: 1px solid #e8dcdc; font-size: 13px; line-height: 1.7; color: #555; }

/* Form */
.rk-form .contact-form { max-width: 640px; margin-inline: auto; }
.rk-form .form-block + .form-block { margin-top: 32px; }
.rk-form .form-row + .form-row { margin-top: 18px; }
.rk-form .form-label { display: block; margin-bottom: 8px; font-size: 14px; font-weight: 700; color: #333; }
.rk-form .required { display: inline-block; margin-left: 8px; padding: 2px 6px; border-radius: 999px; background: #d64545; font-size: 11px; line-height: 1; color: #fff; }
.rk-form .optional-text { font-size: 12px; font-weight: 400; color: #777; }
.rk-form .form-section-title { margin-bottom: 18px; padding-left: 10px; border-left: 3px solid #d64545; font-size: 16px; }
.rk-form .form-label + .note { margin-top: 0; margin-bottom: 8px; }
.rk-form .form-row .note { color: #777; }
.rk-form .catalog-note { position: relative; margin-top: 10px; padding: 12px 12px 12px 2em; border-radius: 6px; background: #fff8f8; font-size: 13px; line-height: 1.45; color: #777; }
.rk-form .catalog-note::before { content: "※"; position: absolute; left: 12px; top: 12px; }

/* Form Parts */
.rk-form input[type="text"], .rk-form input[type="email"], .rk-form input[type="tel"], .rk-form textarea {
	width: 100%; padding: 12px 14px; border: 1px solid #ddd; border-radius: 8px; background: #fff; font: inherit; font-size: 14px;
}
.rk-form textarea { resize: vertical; }
.rk-form input:focus, .rk-form textarea:focus { outline: none; border-color: #d64545; box-shadow: 0 0 0 3px rgba(214, 69, 69, 0.12); }

/* Check List / Radio（手書きHTML用） */
.rk-form .check-list, .rk-form .radio-list { margin-top: 10px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.rk-form .check-list label, .rk-form .radio-list label {
	display: flex; align-items: center; gap: 8px; padding: 12px 14px; border: 1px solid #ddd; border-radius: 10px;
	background: #fff; font-size: 14px; cursor: pointer; transition: border-color 0.2s ease, background-color 0.2s ease;
}
.rk-form .check-list label:hover, .rk-form .radio-list label:hover { border-color: #d64545; background: #fff7f7; }
.rk-form .check-list input, .rk-form .radio-list input { accent-color: #d64545; }

/* Submit */
.rk-form .form-submit { margin-top: 36px; text-align: center; }
.rk-form .form-submit .btn { min-width: 220px; }

/* ---- Contact Form 7 の出力対応 ----
   CF7は input/textarea を <span class="wpcf7-form-control-wrap"> で囲み、
   radio/checkbox を <span class="wpcf7-radio">/<span class="wpcf7-checkbox"> で出力する。
   demo の .radio-list/.check-list 風の見た目に合わせる。 */
.rk-form .wpcf7-form-control-wrap { display: block; }
.rk-form .wpcf7-radio, .rk-form .wpcf7-checkbox { margin-top: 10px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.rk-form .wpcf7-list-item { margin: 0; }
.rk-form .wpcf7-list-item label {
	display: flex; align-items: center; gap: 8px; padding: 12px 14px; border: 1px solid #ddd; border-radius: 10px;
	background: #fff; font-size: 14px; cursor: pointer; transition: border-color 0.2s ease, background-color 0.2s ease;
}
.rk-form .wpcf7-list-item label:hover { border-color: #d64545; background: #fff7f7; }
.rk-form .wpcf7-list-item input { accent-color: #d64545; }
/* バリデーション表示 */
.rk-form .wpcf7-not-valid-tip { margin-top: 6px; font-size: 12px; color: #d64545; }
.rk-form .wpcf7-not-valid { border-color: #d64545 !important; }
.rk-form .wpcf7-response-output { margin: 20px 0 0; padding: 12px 14px; border-radius: 8px; font-size: 14px; }
/* CF7送信ボタン（[submit class:btn class:btn-large] で .btn が付与される） */
.rk-form .form-submit .wpcf7-submit { min-width: 220px; }
.rk-form .wpcf7-spinner { margin: 0 0 0 8px; }

@media screen and (max-width: 768px) {
	.rk-form .check-list, .rk-form .radio-list,
	.rk-form .wpcf7-radio, .rk-form .wpcf7-checkbox { grid-template-columns: 1fr; }
	.rk-form .tel-number { font-size: 18px; }
	.rk-form .form-submit .btn, .rk-form .form-submit .wpcf7-submit { width: 100%; }
}


/* ############################################################
   PAGE: ミスター完熟りんご トップ  ラッパー: <div class="rk rk-mr-index">
   元: demo/css/mr-kanjukuringo/index.css
############################################################ */
.rk-mr-index .fv img { object-position: 80% top; }
.rk-mr-index .bg-section { text-align: center; }
.rk-mr-index .handling { background: #fff7f7; }
.rk-mr-index .handling .inner, .rk-mr-index .links .inner { max-width: 1000px; text-align: center; }

@media screen and (max-width: 768px) {
	/* First View */
	.rk-mr-index .fv { height: 60vh; min-height: 300px; }
	.rk-mr-index .fv img { position: absolute; inset: 0; z-index: 0; }
	.rk-mr-index .fv-text-box { top: 50%; left: 50%; width: 90%; max-width: 500px; color: #222; z-index: 2; transform: translate(-50%, -50%) translateY(-20px); }
	.rk-mr-index .fv.is-active .fv-text-box { transform: translate(-50%, -50%) translateY(0); }
	.rk-mr-index .fv-title { font-size: 22px; line-height: 1.3; }

	/* Handling */
	.rk-mr-index .handling { padding-inline: 0; }
	.rk-mr-index .handling .inner { padding-inline: 0; }
	.rk-mr-index .top-card-grid {
		flex-wrap: nowrap; justify-content: flex-start; gap: 15px;
		overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
		-webkit-overflow-scrolling: touch; scrollbar-width: none; -ms-overflow-style: none;
		padding-left: calc((100vw - 88vw) / 2); padding-right: calc((100vw - 88vw) / 2); box-sizing: border-box;
	}
	.rk-mr-index .top-card-grid::-webkit-scrollbar { display: none; }
	.rk-mr-index .grid-3 .top-card-item, .rk-mr-index .grid-2 .top-card-item, .rk-mr-index .top-card-item { width: 88vw; flex: 0 0 88vw; scroll-snap-align: center; }
	.rk-mr-index .top-card-item h3 { font-size: 16px; }
	.rk-mr-index .slider-btn.prev { left: 8px; }
	.rk-mr-index .slider-btn.next { right: 8px; }
}


/* ############################################################
   PAGE: ミスター完熟りんご とは  ラッパー: <div class="rk rk-mr-about">
   元: demo/css/mr-kanjukuringo/about.css
############################################################ */
.rk-mr-about .about-package { padding: 80px 20px; background: linear-gradient(to bottom, #f9e4e4 0%, #fff7f7 100%); }
.rk-mr-about .about-page-title { margin-bottom: 0; font-size: 1.9rem; font-weight: 700; line-height: 1.5; letter-spacing: 0.12em; text-align: center; color: #d64545; }

/* Package Images */
.rk-mr-about .package-main-img { position: relative; max-width: 1000px; margin: 0 auto; }
.rk-mr-about .about-package-img { position: relative; z-index: 1; width: min(420px, 70%); margin: 0 auto; }
.rk-mr-about .about-guide { position: absolute; inset: 0; z-index: 2; width: 100%; height: 100%; object-fit: contain; }

/* Features */
.rk-mr-about .about-features { display: flex; flex-direction: column; gap: 24px; }
.rk-mr-about .feature-card { position: relative; display: flex; align-items: flex-start; gap: 24px; padding: 24px; border-radius: 18px; background: #fff; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); }
.rk-mr-about .feature-img { flex-shrink: 0; width: 180px; border-radius: 12px; }
.rk-mr-about .feature-number { position: absolute; top: 12px; left: 12px; z-index: 10; display: flex; align-items: center; justify-content: center; width: 42px; height: 42px; border: 3px solid #fff; border-radius: 50%; background: #d64545; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15); font-size: 18px; font-weight: 700; color: #fff; }
.rk-mr-about .feature-content { flex: 1; }
.rk-mr-about .feature-title { margin-bottom: 8px; font-size: 18px; }
.rk-mr-about .feature-text { font-size: 14px; line-height: 1.7; color: #555; }

/* Taste Elements */
.rk-mr-about .elements-list { max-width: 480px; margin: 40px auto 0; }
.rk-mr-about .element-item + .element-item { margin-top: 35px; }
.rk-mr-about .element-title { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; font-size: 18px; font-weight: 700; letter-spacing: 0.25em; color: #d64545; }
.rk-mr-about .element-title::before, .rk-mr-about .element-title::after { content: ""; flex: 1; height: 1px; background: #e5cfcf; }
.rk-mr-about .element-text { font-size: 14px; line-height: 1.9; text-align: center; color: #555; }

@media screen and (max-width: 768px) {
	.rk-mr-about .about-package { padding: 50px 16px; }
	.rk-mr-about .about-page-title { font-size: 22px; letter-spacing: 0.03em; }

	/* package images */
	.rk-mr-about .package-main-img { margin-inline: calc(50% - 50vw); overflow: hidden; }
	.rk-mr-about .about-package-img { width: 200%; max-width: none; margin: -80px auto; margin-left: 50%; transform: translateX(-50%); }
	.rk-mr-about .about-guide { display: none; }

	/* features */
	.rk-mr-about .about-features { gap: 18px; }
	.rk-mr-about .feature-card { flex-direction: column; align-items: stretch; gap: 18px; padding: 20px; border-radius: 16px; }
	.rk-mr-about .feature-img { width: 100%; }
	.rk-mr-about .feature-number { width: 46px; height: 46px; font-size: 20px; }
	.rk-mr-about .feature-title { margin-bottom: 6px; font-size: 16px; }
	.rk-mr-about .feature-text { font-size: 13px; }

	/* taste elements */
	.rk-mr-about .taste-elements { padding-inline: 16px; }
}


/* ############################################################
   PAGE: ミスター完熟りんご お取扱い店  ラッパー: <div class="rk rk-mr-store">
   元: demo/css/mr-kanjukuringo/store.css
############################################################ */
/* Navigation（地域ごとの色） */
.rk-mr-store .category-nav a.nav-hokkaido { background: #fff0f0; color: #e25555; border-color: #ee9a9a; }
.rk-mr-store .category-nav a.nav-tohoku { background: #fff5eb; color: #de8a34; border-color: #efbd8b; }
.rk-mr-store .category-nav a.nav-kanto-koshinetsu { background: #fffbe9; color: #c9aa22; border-color: #ead47c; }
.rk-mr-store .category-nav a.nav-tokai-chubu { background: #f4faec; color: #69a83a; border-color: #b7d88f; }
.rk-mr-store .category-nav a.nav-hokuriku-kansai { background: #eefaf3; color: #34a06a; border-color: #8fd7ae; }
.rk-mr-store .category-nav a.nav-chugoku { background: #eef9fb; color: #3698b5; border-color: #92d3e4; }
.rk-mr-store .category-nav a.nav-shikoku { background: #eef4ff; color: #5579de; border-color: #9db4ef; }
.rk-mr-store .category-nav a.nav-kyushu { background: #f4efff; color: #7a5be0; border-color: #b8a6ea; }
.rk-mr-store .category-nav a.nav-okinawa { background: #fff0f8; color: #d85d9f; border-color: #ecadd0; }

/* Store Regions */
.rk-mr-store .store-region { scroll-margin-top: 20px; }
.rk-mr-store .region-title { display: flex; align-items: center; margin-bottom: 20px; padding-bottom: 10px; font-size: 22px; font-weight: 700; line-height: 1.4; }
.rk-mr-store .region-title::after { content: ""; flex: 1; height: 2px; margin-left: 12px; border-radius: 999px; background: currentColor; opacity: 0.45; }
.rk-mr-store .store-list { column-count: 2; column-gap: 40px; padding-left: 1.2em; color: #444; }
.rk-mr-store .store-list.is-single-column { column-count: 1; }
.rk-mr-store .store-list li { break-inside: avoid; margin-bottom: 8px; }
.rk-mr-store .store-empty { font-size: 14px; color: #666; }
.rk-mr-store .store-label { display: inline-block; vertical-align: middle; margin-left: 8px; padding: 2px 6px; border-radius: 999px; background: #d64545; font-size: 11px; font-weight: 700; line-height: 1; color: #fff; }

/* Region Colors */
.rk-mr-store #hokkaido .region-title, .rk-mr-store #hokkaido .store-list li::marker { color: #e25555; }
.rk-mr-store #tohoku .region-title, .rk-mr-store #tohoku .store-list li::marker { color: #de8a34; }
.rk-mr-store #kanto-koshinetsu .region-title, .rk-mr-store #kanto-koshinetsu .store-list li::marker { color: #c9aa22; }
.rk-mr-store #tokai-chubu .region-title, .rk-mr-store #tokai-chubu .store-list li::marker { color: #69a83a; }
.rk-mr-store #hokuriku-kansai .region-title, .rk-mr-store #hokuriku-kansai .store-list li::marker { color: #34a06a; }
.rk-mr-store #chugoku .region-title, .rk-mr-store #chugoku .store-list li::marker { color: #3698b5; }
.rk-mr-store #shikoku .region-title, .rk-mr-store #shikoku .store-list li::marker { color: #5579de; }
.rk-mr-store #kyushu .region-title, .rk-mr-store #kyushu .store-list li::marker { color: #7a5be0; }
.rk-mr-store #okinawa .region-title, .rk-mr-store #okinawa .store-list li::marker { color: #d85d9f; }

@media screen and (max-width: 768px) {
	.rk-mr-store .store-region { margin-top: 50px; }
	.rk-mr-store .region-title { font-size: 20px; }
	.rk-mr-store .store-list { column-count: 1; column-gap: 0; }
}


/* ############################################################
   PAGE: ミスター完熟りんご 取扱い品種  ラッパー: <div class="rk rk-mr-variety">
   元: demo/css/mr-kanjukuringo/variety.css
############################################################ */
/* Apple Groups */
.rk-mr-variety .apple-group { max-width: 800px; margin-top: 40px; margin-inline: auto; padding: 25px; border-radius: 8px; }
.rk-mr-variety .onsale { background: #fff7f7; }
.rk-mr-variety .onsale h2 { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 24px; font-size: 18px; font-weight: 700; line-height: 1.4; color: #d64545; }
.rk-mr-variety .onsale h2::before, .rk-mr-variety .onsale h2::after { content: ""; width: 24px; height: 1px; background: #d64545; opacity: 0.5; }
.rk-mr-variety .empty-message { padding: 28px 20px; border-radius: 14px; background: #fff; font-size: 14px; line-height: 1.8; text-align: center; color: #666; }

/* Apple List */
.rk-mr-variety .apple-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; margin: 0 auto; padding: 0; }
.rk-mr-variety .apple-item { flex: 0 0 120px; width: 120px; text-align: center; cursor: pointer; transition: transform 0.25s ease; }
.rk-mr-variety .apple-item:hover { transform: translateY(-2px); }
.rk-mr-variety .apple-item img { width: 120px; height: 120px; margin: 0 auto; object-fit: cover; border-radius: 50%; transition: filter 0.25s ease; }
.rk-mr-variety .apple-item:hover img { filter: brightness(1.15); }
.rk-mr-variety .apple-item p { margin-top: 6px; font-size: 14px; line-height: 1.3; color: #333; transition: color 0.25s ease; }
.rk-mr-variety .apple-item:hover p { color: #d64545; }

/* Modal */
.rk-mr-variety .modal-content { display: flex; flex-direction: column; gap: 12px; max-width: 520px; max-height: calc(100dvh - 24px); padding: 20px; overflow-y: auto; -webkit-overflow-scrolling: touch; }
.rk-mr-variety #modal-img { width: 100%; aspect-ratio: 4 / 3; border-radius: 14px; object-fit: cover; }
.rk-mr-variety #modal-name { font-size: 22px; font-weight: 700; line-height: 1.4; text-align: center; }
.rk-mr-variety #modal-name ruby { ruby-align: center; }
.rk-mr-variety #modal-name rt { font-size: 10px; font-weight: 500; color: #777; }
.rk-mr-variety .modal-meta { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.rk-mr-variety .modal-meta div { padding: 6px 12px; border-radius: 999px; background: #fff5f5; font-size: 12px; color: #d64545; }
.rk-mr-variety #modal-desc { font-size: 14px; line-height: 1.6; text-align: center; color: #333; }
.rk-mr-variety .modal-close:hover { color: #d64545; }

/* Calendar（出荷時期） */
.rk-mr-variety .modal-schedule { margin-top: 10px; padding: 12px; border: 1px solid #eee; border-radius: 10px; background: #fafafa; }
.rk-mr-variety .schedule-period { margin-bottom: 10px; font-size: 13px; font-weight: 700; text-align: center; color: #444; }
.rk-mr-variety .calendar { display: grid; grid-template-columns: repeat(12, 1fr); margin-bottom: 6px; font-size: 11px; font-weight: 700; text-align: center; color: #666; }
.rk-mr-variety .calendar-month { grid-column: span 1; }
.rk-mr-variety .calendar-row { display: grid; grid-template-columns: repeat(36, 1fr); margin-bottom: 4px; }
.rk-mr-variety .calendar-row div { height: 12px; background: #ddd; }
.rk-mr-variety .normal-box { background: #ff8787 !important; }
.rk-mr-variety .ca-box { background: #87d2ff !important; }

/* Legend */
.rk-mr-variety .legend { display: flex; justify-content: center; gap: 1em; margin-top: 10px; font-size: 12px; color: #555; }
.rk-mr-variety .legend-item { display: flex; align-items: center; gap: 0.35em; }
.rk-mr-variety .legend-item .normal-box, .rk-mr-variety .legend-item .ca-box { width: 10px; height: 10px; border-radius: 2px; }

/* Schedule Note */
.rk-mr-variety .schedule-note { position: relative; width: fit-content; margin: 8px auto 0; padding-left: 1em; font-size: 11px; line-height: 1.6; color: #777; }
.rk-mr-variety .schedule-note::before { content: "※"; position: absolute; top: 0; left: 0; }

@media screen and (max-width: 800px) {
	.rk-mr-variety .apple-group { margin-inline: 16px; }
}
@media screen and (max-width: 768px) {
	.rk-mr-variety .apple-list { gap: 18px 10px; }
	.rk-mr-variety .apple-item { flex: 0 0 calc((100% - 20px) / 3); width: calc((100% - 20px) / 3); }
	.rk-mr-variety .apple-item img { width: 100%; height: auto; aspect-ratio: 1 / 1; }
	.rk-mr-variety .modal { display: block; height: 100vh; height: 100dvh; padding: 12px; overflow-y: scroll; overflow-x: hidden; -webkit-overflow-scrolling: touch; }
	.rk-mr-variety .modal-content { width: 100%; max-width: 520px; height: auto; max-height: none; margin: 0 auto; overflow: visible; }
}


/* ############################################################
   PAGE: お問い合わせ（ハブ／既存 /form/ 差し替え）  ラッパー: <div class="rk rk-contact">
   元: demo/css/contact.css
############################################################ */
/* Contact Links */
.rk-contact .contact-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; margin-top: 40px; }
.rk-contact .contact-link { position: relative; display: flex; justify-content: center; align-items: center; min-height: 200px; padding: 30px; border-radius: 12px; text-align: center; overflow: hidden; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.rk-contact .contact-link:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(0, 0, 0, .08); }
.rk-contact .contact-link-ringonokai { background: linear-gradient(135deg, #faf3f3 0%, #fffdfd 100%); color: #b04a4a; }
.rk-contact .contact-link-mr-kanjuku { background: linear-gradient(135deg, #f3f5ee 0%, #fefefb 100%); color: #4f6f3d; }
.rk-contact .contact-link::after { content: "→"; position: absolute; right: 30px; bottom: 25px; font-size: 32px; transform: translateX(-2px); transition: transform 0.3s ease; opacity: 0.7; }
.rk-contact .contact-link:hover::after { transform: translateX(6px); opacity: 1; }
.rk-contact .contact-link-text { position: relative; z-index: 1; display: flex; flex-direction: column; justify-content: center; align-items: center; }

/* Contact Note */
.rk-contact .contact-note { display: flex; align-items: center; gap: 24px; margin-top: 40px; padding: 28px 32px; border-radius: 12px; background: #fbfaf6; }
.rk-contact .contact-note-icon { flex-shrink: 0; width: 56px; }
.rk-contact .contact-note-icon svg { display: block; width: 100%; height: auto; }
.rk-contact .contact-note-body { font-size: 14px; line-height: 1.8; color: #555; }
.rk-contact .contact-note-body p + p { margin-top: 4px; }

@media screen and (max-width: 768px) {
	.rk-contact .contact-links { grid-template-columns: 1fr; gap: 16px; }
	.rk-contact .contact-link { min-height: 180px; padding: 24px; }
	.rk-contact .contact-link::after { right: 20px; bottom: 18px; font-size: 28px; }
	.rk-contact .contact-link:active { transform: scale(0.99); }
	.rk-contact .contact-note { flex-direction: column; align-items: center; text-align: center; gap: 12px; padding: 20px; }
	.rk-contact .contact-note-icon { width: 44px; }
	.rk-contact .contact-note-body { font-size: 13px; line-height: 1.7; }
	.rk-contact .contact-note-title { font-size: 15px; margin-bottom: 6px; }
}


/* ############################################################
   GLOBAL（.rk非依存）
############################################################ */

/* 新デザインページ（.rk を含む固定ページ）だけ、Lightningの .site-body 余白を0に。
   既存ページ（.rk なし）は余白を残す。
   .site-body は .rk の祖先なので :has() で「.rkを含む site-body」だけを狙う。
   詳細度 (0,2,0) がLightningの .site-body (0,1,0) に勝つため全ブレークポイントで有効。 */
.site-body:has(.rk) { padding: 0; }


/* Googleフォーム埋め込み用ラッパー（既存の追加CSSから移設）
   .rk を付けず global のまま（.rk 内でも外でも効く／既存箇所の互換維持） */
.googleform-wrapper {
	position: relative;
	width: 100%;
	height: 800px;
	overflow-y: scroll;
}
.googleform-wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
