@charset "UTF-8";
/* =========================================================
   Recruit Page Stylesheet
   --------------------------------------------------------
   ブレークポイント
     - base        : 〜767px  (mobile first)
     - @media (min-width: 768px)   : tablet
     - @media (min-width: 1024px)  : desktop
   命名：BEM（.rec-block, .rec-block__element, .rec-block--mod）
   ========================================================= */


/* =========================
   CSS 変数
   ========================= */
.rec {
	--rec-primary       : #0a3875; /* 基本紺 */
	--rec-primary-dark  : #072a5a;
	--rec-primary-deep  : #052148; /* フッター寄りの濃紺 */
	--rec-accent        : #1c74e6; /* 明るい青アクセント */
	--rec-accent-light  : #3b8bf0;
	--rec-cyan          : #2ba4e0; /* 水色（福利厚生アイコン等） */

	--rec-text          : #00417F;
	--rec-text-muted    : #3a3a3a;
	--rec-border        : #e2e8ef;
	--rec-bg-soft       : #f5f9fd;
	--rec-bg-blue       : #eef5ff;
	--rec-bg-gradient-blue : linear-gradient(180deg, #e8f1fc 0%, #f4f9fe 60%, #ffffff 100%);
	--rec-bg-gray       : #f7f7f7;

	--rec-shadow-sm     : 0 2px 8px rgba(10, 56, 117, 0.06);
	--rec-shadow-md     : 0 6px 20px rgba(10, 56, 117, 0.08);
	--rec-shadow-lg     : 0 12px 40px rgba(10, 56, 117, 0.12);

	--rec-radius-sm     : 4px;
	--rec-radius-md     : 8px;
	--rec-radius-lg     : 12px;

	--rec-font-jp       : "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
	--rec-font-en       : "Montserrat", "Helvetica Neue", Arial, sans-serif;

	--rec-container     : 1120px;
	--rec-container-narrow : 960px;
}


/* =========================
   Base
   ========================= */
.rec {
	font-family: var(--rec-font-jp);
	color: var(--rec-text);
	font-size: 15px;
	line-height: 1.8;
	letter-spacing: 0.02em;
	overflow: hidden;
}
.rec *,
.rec *::before,
.rec *::after { box-sizing: border-box; }

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

.rec ul,
.rec ol {
	list-style: none;
	margin: 0;
	padding: 0;
}

.rec a { color: inherit; text-decoration: none; transition: opacity .2s, color .2s; }
.rec a:hover { opacity: .8; }

.rec button {
	font-family: inherit;
	font-size: inherit;
	color: inherit;
	background: transparent;
	border: 0;
	cursor: pointer;
	padding:1rem 1.5rem;
}


/* =========================
   共通セクションヘッダ
   ========================= */
.rec-section-head {
	margin-bottom: 32px;
}
.h2box{
	border-left:3px solid #00417F;
	padding-left: 0.5rem;
	margin-bottom: 1rem;
}
@media (min-width: 768px){
	.rec-section-head { margin-bottom: 40px; }
	.h2box{
	padding-left: 1rem;
	margin-bottom: 2rem;
}
}
.rec-section-head--center { text-align: center; }

.rec-section-label {
	font-family: var(--rec-font-en);
	font-size: 13px;
	font-weight: 500;
	letter-spacing: 0.14em;
	color: var(--rec-accent);
	margin-bottom: 8px;
}
.rec-section-label--line {
	position: relative;
	padding-bottom: 12px;
	margin-bottom: 20px;
	border-bottom: 1px solid #CCC;
}
.rec-section-label--line::after {
	content: "";
	display: block;
	position: absolute;
	left: 0; bottom: 0;
	width: 100px;
	height: 1px;
	background:#00417F;
}

.rec-section-title {
	font-size: 22px;
	font-weight: 700;
	line-height: 1.5;
	color: var(--rec-text);
	letter-spacing: 0.04em;
}
@media (min-width: 768px){
	.rec-section-title { font-size: 26px; }
}
@media (min-width: 1024px){
	.rec-section-title { font-size: 28px; }
}

.rec-section-lead {
	margin-top: 14px;
	font-size: 14px;
	color: var(--rec-text-muted);
	line-height: 1.9;
}
@media (min-width: 768px){
	.rec-section-lead { font-size: 15px; }
}


/* =========================
   1. Hero
   ========================= */
.rec-hero {
	position: relative;
	min-height: 520px;
	padding: 80px 20px 64px;
	display: flex;
	align-items: center;
	color: #fff;
	overflow: hidden;
	background: var(--rec-primary);
}
@media (min-width: 768px){
	.rec-hero { min-height: 620px; padding: 120px 40px 88px; }
}
@media (min-width: 1024px){
	.rec-hero { min-height: 680px; padding: 140px 48px 100px; }
}

.rec-hero__bg {
	position: absolute; inset: 0;
	background-size: cover;
	background-position: center;
	z-index: 0;
}
.rec-hero__overlay {
	position: absolute; inset: 0;
	background:linear-gradient(95deg, rgba(10,56,117,0.6) 0%, rgba(10,56,117,0.5) 55%, rgba(10,56,117,0.3) 100%);
	z-index: 1;
}
.rec-hero__inner {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: var(--rec-container);
	margin: 0 auto;
}

.rec-hero__label {
	font-family: var(--rec-font-en);
	font-size: 44px;
	font-weight: 700;
	letter-spacing: 0.08em;
	line-height: 1;
	margin-bottom: 3rem;
	color: #fff;
}
.rec-hero__label-accent { color: var(--rec-accent-light);font-size: 120px;}
@media (min-width: 768px){
	.rec-hero__label { font-size: 68px; margin-bottom: 32px; }
}
@media (min-width: 1024px){
	.rec-hero__label { font-size: 88px; }
}

.rec-hero__title {
	font-size: 24px;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.03em;
	margin-bottom: 16px;
}
@media (min-width: 768px){
	.rec-hero__title { font-size: 32px; margin-bottom: 20px; }
}
@media (min-width: 1024px){
	.rec-hero__title { font-size: 38px; }
}

.rec-hero__accent { color: var(--rec-accent-light); }

.rec-hero__lead {
	font-size: 15px;
	font-weight: 500;
	margin-bottom: 12px;
	opacity: .95;
}
@media (min-width: 768px){
	.rec-hero__lead { font-size: 17px; margin-bottom: 16px; }
}

.rec-hero__desc {
	font-size: 13px;
	line-height: 1.9;
	margin-bottom: 32px;
	opacity: .88;
}
@media (min-width: 768px){
	.rec-hero__desc { font-size: 14px; margin-bottom: 40px; }
}

.rec-hero__btn {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	min-width: 220px;
	padding: 14px 22px;
	background: var(--rec-primary);
	color: #fff;
	border: 1px solid rgba(255,255,255,0.4);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 0.05em;
	transition: background .2s, transform .2s;
}
.rec-hero__btn:hover {
	opacity: 1;
	background: var(--rec-accent);
	transform: translateY(-2px);
}
.rec-hero__btn-icon {
	width: 18px; height: 18px;
	color: #fff;
}


/* =========================
   2. Philosophy
   ========================= */
.rec-philosophy {
	padding: 56px 20px;
	background-image:url('https://mmso.jp/wp-content/themes/gamma/library/recimg/bg01.png');
	background-size:cover;
	background-position:center center;
	background-repeat:no-repeat;
	background-attachment: inherit;
}
@media (min-width: 768px){
	.rec-philosophy { padding: 80px 40px; }
}
@media (min-width: 1024px){
	.rec-philosophy { padding: 96px 48px;background-attachment:fixed; }
}
.rec-philosophy__inner {
	max-width:var(--rec-container);
	margin: 0 auto;
}

.rec-philosophy__mission { margin-top: 32px; margin-bottom: 40px; }
.rec-philosophy__mission-lead {
	font-size: 16px;
	font-weight: 700;
	line-height: 1.8;
	color:#000;
	margin-bottom: 18px;
}
@media (min-width: 768px){
	.rec-philosophy__mission-lead { font-size: 18px; }
}
.rec-philosophy__mission-body {
	font-size: 15px;
	color: var(--rec-text-muted);
	line-height: 2;
}

.rec-pillars {
	display: flex;
	flex-direction: column;
	gap: 28px;
	margin-top: 32px;
}
.rec-pillar { }
.rec-pillar__head {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 8px;
}
.rec-pillar__num {
	font-family: var(--rec-font-en);
	font-size: 22px;
	font-weight: 600;
	color: var(--rec-accent);
	line-height: 1;
	flex-shrink: 0;
}
.rec-pillar__bar {
	width: 20px;
	height: 1px;
	background: var(--rec-text-muted);
	flex-shrink: 0;
}
.rec-pillar__title {
	font-size: 16px;
	font-weight: 700;
	color: var(--rec-text);
}
@media (min-width: 768px){
	.rec-pillar__title { font-size: 17px; }
}
.rec-pillar__text {
	font-size: 15px;
	color: var(--rec-text-muted);
	line-height: 1.9;
	padding-left: 48px;
}


/* =========================
   3. Service
   ========================= */
.rec-service {
	position: relative;
	padding: 56px 20px;
	background-image:url('https://mmso.jp/wp-content/themes/gamma/library/recimg/bg02.png');
	background-size:cover;
	background-position:center center;
	background-repeat:no-repeat;
	background-attachment: inherit;
}
@media (min-width: 768px){
	.rec-service { padding: 80px 40px; }
}
@media (min-width: 1024px){
	.rec-service { padding: 96px 48px;background-attachment: fixed; }
}
.rec-service__inner {
	position: relative;
	max-width: var(--rec-container);
	margin: 0 auto;
	z-index: 1;
}

.rec-service__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}
@media (min-width: 1024px){
	.rec-service__grid {
		grid-template-columns: 1fr 1fr;
		gap: 24px;
	}
}

.rec-service__col {
	background: #fff;
	overflow: hidden;
	box-shadow: var(--rec-shadow-sm);
}
.rec-service__heading {
	background: var(--rec-primary);
	color: #fff;
	padding: 16px 20px;
	font-size: 17px;
	font-weight: 700;
	letter-spacing: 0.05em;
}
.rec-service__list {
	padding: 8px 20px 16px;
}
.rec-service__item {
	padding: 14px 1.5rem;
	border-bottom: 1px solid var(--rec-border);
}
.rec-service__item:last-child { border-bottom: 0; }
.rec-service__item-title {
	position: relative;
	padding-left: 18px;
	font-size: 15px;
	font-weight: 700;
	color: var(--rec-text);
	margin-bottom: 4px;
}
.rec-service__item-title::before {
	content: "";
	position: absolute;
	left: 0; top: 0.6em;
	width: 8px; height: 8px;
	border-radius: 50%;
	background: var(--rec-accent);
}
.rec-service__item-text {
	padding-left: 18px;
	font-size: 13px;
	color: var(--rec-text-muted);
	line-height: 1.8;
}

.rec-service__footer {
	margin-top: 32px;
	padding: 20px 24px;
	border: 2px solid var(--rec-accent);
	background: #fff;
	text-align: center;
	font-size: 14px;
	line-height: 2;
	color: #3a3a3a;
}
.rec-service__footer span{
	color:#1190E5;
	font-weight: bold;
}
@media (min-width: 768px){
	.rec-service__footer { font-size: 15px; padding: 24px 32px; }
}


/* =========================
   4. Message
   ========================= */
.rec-message {
	padding: 56px 20px;
	background-image:url('https://mmso.jp/wp-content/themes/gamma/library/recimg/bg01.png');
	background-size:cover;
	background-position:center center;
	background-repeat:no-repeat;
	background-attachment: inherit;
}
@media (min-width: 768px){
	.rec-message { padding: 80px 40px; }
}
@media (min-width: 1024px){
	.rec-message { padding: 96px 48px;background-attachment: fixed;}
}
.rec-message__inner {
	max-width: var(--rec-container);
	margin: 0 auto;
}

.rec-message__body {
	display: grid;
	grid-template-columns: 1fr;
	gap: 28px;
	align-items: start;
	margin-bottom: 2rem;
}
@media (min-width: 768px){
	.rec-message__body {
		grid-template-columns: 200px 1fr;
		gap: 40px;
	}
}
@media (min-width: 1024px){
	.rec-message__body {
		grid-template-columns: 270px 1fr;
		gap: 56px;
	}
}

.rec-message__ceo {
	text-align: center;
}
@media (min-width: 768px){
	.rec-message__ceo { text-align: center; }
}

.rec-message__photo {
	width: 160px;
	height: 160px;
	margin: 0 auto 12px;
	border-radius: 50%;
	overflow: hidden;
	background: #e7eef7;
}
@media (min-width: 768px){
	.rec-message__photo { width: 180px; height: 180px; }
}
@media (min-width: 1024px){
	.rec-message__photo { width: 100%; height: auto; }
}
.rec-message__photo img {
	width: 100%; height: 100%;
	object-fit: cover;
}
.rec-message__ceo-name {
	font-size: 18px;
	font-weight: 700;
	letter-spacing: 0.2em;
	color:#3a3a3a;
}
.rec-message__ceo-title {
	font-size: 14px;
	color: var(--rec-text);
	margin-top: 4px;
}

.rec-message__text p {
	font-size: 15px;
	line-height: 2;
	color: #3a3a3a;
	margin-bottom: 16px;
}
.rec-message__text p:last-child { margin-bottom: 0; }

/* 支援実績 */
.rec-stats {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
	margin-top: 40px;
}
@media (min-width: 768px){
	.rec-stats {
		grid-template-columns: repeat(3, 1fr);
		gap: 16px;
		margin-top: 48px;
	}
}

.rec-stats__item {
	padding: 20px 12px;
	background: linear-gradient(135deg, #1558c3 0%, #0a3875 100%);
	color: #fff;
	border-radius: var(--rec-radius-sm);
	text-align: center;
	box-shadow: var(--rec-shadow-md);
}
@media (min-width: 768px){
	.rec-stats__item { padding: 26px 16px; }
}
.rec-stats__label {
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.1em;
	margin-bottom: 8px;
	opacity: .95;
}
@media (min-width: 768px){
	.rec-stats__label { font-size: 14px; }
}
.rec-stats__value {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 6px;
}
.rec-stats__num {
	font-family: var(--rec-font-en);
	font-size: 40px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.02em;
}
@media (min-width: 768px){
	.rec-stats__num { font-size: 52px; }
}
.rec-stats__suffix {
	font-size: 11px;
	font-weight: 500;
}
@media (min-width: 768px){
	.rec-stats__suffix { font-size: 14px; }
}


/* =========================
   5. WhyUs
   ========================= */
.rec-whyus {
	padding: 56px 20px;
	background-image:url('https://mmso.jp/wp-content/themes/gamma/library/recimg/bg02.png');
	background-size:cover;
	background-position:center center;
	background-repeat:no-repeat;
	background-attachment: inherit;
}
@media (min-width: 768px){
	.rec-whyus { padding: 80px 40px; }
}
@media (min-width: 1024px){
	.rec-whyus { padding: 96px 48px; background-attachment: fixed;}
}
.rec-whyus__inner {
	max-width: var(--rec-container);
	margin: 0 auto;
}

.rec-whyus__slider {
	position: relative;
}

.rec-whyus__list {
	display: flex;
	flex-wrap: nowrap;
	gap: 24px;
	overflow-x: auto;
	scroll-snap-type: x proximity;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	padding: 4px 4px 4px;
	margin: 0;
	scrollbar-width: none;
	-ms-overflow-style: none;
	cursor: grab;
	user-select: none;
	-webkit-user-select: none;
	touch-action: pan-x pan-y;
}
.rec-whyus__list.is-dragging {
	cursor: grabbing;
	scroll-behavior: auto;
	scroll-snap-type: none;
}
.rec-whyus__list::-webkit-scrollbar { display: none; }

.rec-whyus__item {
	background: #fff;
	overflow: hidden;
	flex: 0 0 100%;
	min-width: 0;
	scroll-snap-align: start;
}
@media (min-width: 768px){
	.rec-whyus__item {
		flex: 0 0 calc((100% - 48px) / 3);
	}
}

.rec-whyus__thumb {
	aspect-ratio: 16/10;
	overflow: hidden;
	pointer-events: none;
}
.rec-whyus__thumb img {
	width: 100%; height: 100%;
	object-fit: cover;
	-webkit-user-drag: none;
	user-select: none;
	pointer-events: none;
}

.rec-whyus__body {
	padding:1rem;
}
.rec-whyus__ttl {
	font-size: 16px;
	font-weight: 700;
	color: var(--rec-text);
	margin-bottom: 10px;
	position: relative;
}
.rec-whyus__txt {
	font-size: 13px;
	color: var(--rec-text-muted);
	line-height: 1.9;
}

/* ナビゲーションボタン：.rec button の共通スタイルに勝つため .rec を付与 */
.rec .rec-whyus__nav {
	display: flex;
	position: absolute;
	top: 38%;
	transform: translateY(-50%);
	width: 44px; height: 44px;
	border-radius: 50%;
	background: var(--rec-accent);
	color: #fff;
	border: 0;
	box-shadow: 0 4px 12px rgba(10, 56, 117, 0.2);
	z-index: 5;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	padding: 0;
	transition: transform .2s, opacity .2s, background-color .2s;
}
.rec .rec-whyus__nav:hover {
	opacity: 1;
	background: var(--rec-primary);
	transform: translateY(-50%) scale(1.08);
}
.rec .rec-whyus__nav[disabled] {
	opacity: .35;
	cursor: default;
	pointer-events: none;
}
.rec .rec-whyus__nav svg { width: 18px; height: 18px; }
.rec .rec-whyus__nav--prev { left: 8px; }
.rec .rec-whyus__nav--next { right: 8px; }
@media (min-width: 1024px){
	.rec .rec-whyus__nav--prev { left: -20px; }
	.rec .rec-whyus__nav--next { right: -20px; }
}


/* =========================
   6. Onboarding & Social（共通アコーディオン）
   ========================= */
.rec-onboarding{
	padding: 56px 20px;
	position: relative;
	background-image:url('https://mmso.jp/wp-content/themes/gamma/library/recimg/bg01.png');

	background-size:cover;
	background-position:center center;
	background-repeat:no-repeat;
	background-attachment: inherit;
}
.rec-social {
	padding: 56px 20px;
	position: relative;
	background-image:url('https://mmso.jp/wp-content/themes/gamma/library/recimg/bg02.png');
	background-size:cover;
	background-position:center center;
	background-repeat:no-repeat;
	background-attachment: inherit;
}
@media (min-width: 768px){
	.rec-onboarding,
	.rec-social { padding: 80px 40px; }
}
@media (min-width: 1024px){
	.rec-onboarding,
	.rec-social { padding: 96px 48px;background-attachment: fixed;}
}
.rec-onboarding__inner,
.rec-social__inner {
	position: relative;
	max-width: var(--rec-container);
	margin: 0 auto;
	z-index: 1;
}

/* アコーディオン共通 */
.rec-acc {
	overflow: hidden;
}
.rec-acc__item {
	border-bottom: 1px solid var(--rec-border);
	padding: 1rem 0;
}
.rec-acc__item:last-child { border-bottom: 0; }

.rec-acc__head {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 20px 22px;
	text-align: left;
	transition: background .2s;
}
.rec-acc__head:hover { background: var(--rec-bg-soft); }

.rec-acc__num {
	font-family: var(--rec-font-en);
	font-size: 40px;
	font-weight: 600;
	color: #CCCCCC;
	flex-shrink: 0;
	min-width: 30px;
}
.rec-acc__title {
	flex: 1;
	font-size: 15px;
	font-weight: 700;
	color: var(--rec-text);
	line-height: 1.6;
}
@media (min-width: 768px){
	.rec-acc__title { font-size: 18px; }
}

.rec-acc__icon {
	width: 20px; height: 20px;
	position: relative;
	flex-shrink: 0;
}
.rec-acc__icon::before,
.rec-acc__icon::after {
	content: "";
	position: absolute;
	background: var(--rec-text-muted);
	transition: transform .3s, opacity .3s;
}
.rec-acc__icon::before {
	top: 50%; left: 0;
	width: 100%; height: 2px;
	transform: translateY(-50%);
}
.rec-acc__icon::after {
	top: 0; left: 50%;
	width: 2px; height: 100%;
	transform: translateX(-50%);
}
.rec-acc__item.is-open .rec-acc__icon::after {
	transform: translateX(-50%) scaleY(0);
}

.rec-acc__body {
	max-height: 0;
	overflow: hidden;
	transition: max-height .35s ease;
}
.rec-acc__inner {
	padding-left:calc(22px + 22px + 16px);
	font-size: 15px;
	line-height: 1.9;
	color: var(--rec-text-muted);
}


/* =========================
   7. WorkPlans
   ========================= */
.rec-workplans {
	padding: 56px 20px;
	position: relative;
	background-image:url('https://mmso.jp/wp-content/themes/gamma/library/recimg/bg02.png');
	background-size:cover;
	background-position:center center;
	background-repeat:no-repeat;
	background-attachment: inherit;
}
@media (min-width: 768px){
	.rec-workplans { padding: 80px 40px; }
}
@media (min-width: 1024px){
	.rec-workplans { padding: 96px 48px; background-attachment: fixed;}
}
.rec-workplans__inner {
	position: relative;
	max-width: var(--rec-container);
	margin: 0 auto;
	z-index: 1;
}

.rec-wp {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.rec-wp__item {
	background: var(--rec-primary);
	overflow: hidden;
	box-shadow: var(--rec-shadow-sm);
}

.rec-wp__head {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 18px 22px;
	color: #fff;
	text-align: left;
}

.rec-wp__title {
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.05em;
	color: #fff;
}
@media (min-width: 768px){
	.rec-wp__title { font-size: 16px; }
}

.rec-wp__tags {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	flex: 1;
}
@media (min-width: 768px){
	.rec-wp__tags { margin-left: 12px; }
}

.rec-wp__tag {
	display: inline-block;
	padding: 4px 14px;
	border-radius: 999px;
	font-size: 12px;
	color: #0082D9;
	background: #FFF;
}
@media (min-width: 768px){
	.rec-wp__tag { font-size: 13px; padding: 4px 16px; }
}

.rec-wp__icon {
	width: 20px; height: 20px;
	position: relative;
	flex-shrink: 0;
}
.rec-wp__icon::before,
.rec-wp__icon::after {
	content: "";
	position: absolute;
	background: #fff;
	transition: transform .3s, opacity .3s;
}
.rec-wp__icon::before {
	top: 50%; left: 0;
	width: 100%; height: 2px;
	transform: translateY(-50%);
}
.rec-wp__icon::after {
	top: 0; left: 50%;
	width: 2px; height: 100%;
	transform: translateX(-50%);
}
.rec-wp__item.is-open .rec-wp__icon::after {
	transform: translateX(-50%) scaleY(0);
}

.rec-wp__body {
	max-height: 0;
	overflow: hidden;
	background: #fff;
	transition: max-height .35s ease;
}
.rec-wp__inner {
	padding: 24px 20px;
}
@media (min-width: 768px){
	.rec-wp__inner { padding: 32px 36px; }
}

/* アピールブロック */
.rec-wp__appeal {
	border-left: 2px solid var(--rec-accent);
	padding: 0 0 0 22px;
	margin-bottom: 24px;
}
.rec-wp__appeal-title {
	font-size: 15px;
	font-weight: 700;
	color: var(--rec-text);
	margin-bottom: 12px;
}
@media (min-width: 768px){
	.rec-wp__appeal-title { font-size: 18px; }
}
.rec-wp__appeal-list li {
	position: relative;
	padding-left: 20px;
	font-size: 13px;
	color:#3a3a3a;
	line-height: 1.9;
	margin-bottom: 4px;
}
.rec-wp__appeal-list li::before {
	content: "";
	position: absolute;
	left: 2px; top: 0.65em;
	width: 8px; height: 8px;
	border-radius: 50%;
	background: var(--rec-accent);
}
@media (min-width: 768px){
	.rec-wp__appeal-list li { font-size: 15px; }
}

/* 詳細テーブル */
.rec-wp__table { }
.rec-wp__row {
	display: grid;
	grid-template-columns: 1fr;
	gap: 4px;
	padding: 14px 0;
	border-bottom: 1px solid var(--rec-border);
}
.rec-wp__row:last-child { border-bottom: 0; }
@media (min-width: 768px){
	.rec-wp__row {
		grid-template-columns: 200px 1fr;
		gap: 20px;
		padding: 16px 0;
	}
}
.rec-wp__row dt {
	font-size: 15px;
	font-weight: 700;
	color: var(--rec-text);
	padding-top: 2px;
}
.rec-wp__row dd {
	font-size: 15px;
	color:#3a3a3a;
	line-height: 1.9;
}

.rec-wp__schedule-caption {
	font-size: 15px;
	color:#3a3a3a;
	margin-bottom: 8px;
}
.rec-wp__schedule {
	padding-left: 4px;
}
.rec-wp__schedule li {
	display: flex;
	gap: 16px;
	padding: 6px 0;
	font-size: 14px;
	color:#3a3a3a;
	line-height: 1.7;
}
.rec-wp__time {
	color: var(--rec-accent);
	font-weight: 700;
	min-width: 48px;
	flex-shrink: 0;
}
.rec-wp__schedule small {
	font-size: 11px;
	color: var(--rec-text-muted);
}


/* =========================
   8. WhoWeWant
   ========================= */
.rec-who {
	padding: 56px 20px;
	background-image:url('https://mmso.jp/wp-content/themes/gamma/library/recimg/bg01.png');
	background-size:cover;
	background-position:center center;
	background-repeat:no-repeat;
	background-attachment: inherit;
}
@media (min-width: 768px){
	.rec-who { padding: 80px 40px; }
}
@media (min-width: 1024px){
	.rec-who { padding: 96px 48px;background-attachment: fixed;}
}
.rec-who__inner {
	max-width: var(--rec-container);
	margin: 0 auto;
}

.rec-who__list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
}
@media (min-width: 768px){
	.rec-who__list {
		grid-template-columns: repeat(3, 1fr);
		gap: 28px;
	}
}

.rec-who__item { }
.rec-who__thumb {
	aspect-ratio: 4/3;
	overflow: hidden;
	border-radius: var(--rec-radius-sm);
	margin-bottom: 16px;
}
.rec-who__thumb img {
	width: 100%; height: 100%;
	object-fit: cover;
}
.rec-who__ttl {
	font-size: 16px;
	font-weight: 700;
	color: var(--rec-text);
	margin-bottom: 10px;
}
.rec-who__txt {
	font-size: 13px;
	color: var(--rec-text-muted);
	line-height: 1.9;
}


/* =========================
   10. Benefits
   ========================= */
.rec-benefits {
	padding: 56px 20px;
	position: relative;
	background-image:url('https://mmso.jp/wp-content/themes/gamma/library/recimg/bg01.png');
	background-size:cover;
	background-position:center center;
	background-repeat:no-repeat;
	background-attachment: inherit;
}
@media (min-width: 768px){
	.rec-benefits { padding: 80px 40px; }
}
@media (min-width: 1024px){
	.rec-benefits { padding: 96px 48px;background-attachment: fixed; }
}
.rec-benefits__inner {
	position: relative;
	max-width: var(--rec-container);
	margin: 0 auto;
	z-index: 1;
}


.rec-benefits__slider { position: relative; }
.rec-benefits__list {
	display: flex;
	flex-wrap: nowrap;
	gap: 20px;
	overflow-x: auto;
	scroll-snap-type: x proximity;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	padding: 4px 4px 4px;
	margin: 0;
	scrollbar-width: none;
	-ms-overflow-style: none;
	cursor: grab;
	user-select: none;
	-webkit-user-select: none;
	touch-action: pan-x pan-y;
}
.rec-benefits__list.is-dragging {
	cursor: grabbing;
	scroll-behavior: auto;
	scroll-snap-type: none;
}
.rec-benefits__list::-webkit-scrollbar { display: none; }
@media (min-width: 768px){
	.rec-benefits__list {
		gap: 24px;
	}
}

.rec-benefits__item {
	background: #fff;
	border-radius: var(--rec-radius-md);
	padding: 24px 24px;
	box-shadow: var(--rec-shadow-sm);
	flex: 0 0 100%;
	min-width: 0;
	scroll-snap-align: start;
}
@media (min-width: 768px){
	.rec-benefits__item {
		flex: 0 0 calc((100% - 48px) / 3);
	}
}
.rec-benefits__check {
	color: var(--rec-cyan);
	margin-bottom: 10px;
	display: flex;
	justify-content:flex-start;
	align-items: center;
}
.rec-benefits__check .rec-benefits__ttl{
	display: inline-block;
	font-size: 18px;
}
.rec-benefits__check svg { width: 22px; height: 22px; margin-right: 5px}
.rec-benefits__ttl {
	font-size: 16px;
	font-weight: 700;
	color: var(--rec-text);
	margin-bottom: 10px;
}
.rec-benefits__txt {
	font-size: 15px;
	color: var(--rec-text-muted);
	line-height: 1.9;
}

/* ナビゲーションボタン：.rec button の共通スタイルに勝つため .rec を付与 */
.rec .rec-benefits__nav {
	display: flex;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 44px; height: 44px;
	border-radius: 50%;
	background: var(--rec-accent);
	color: #fff;
	border: 0;
	box-shadow: 0 4px 12px rgba(10, 56, 117, 0.2);
	z-index: 5;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	padding: 0;
	transition: transform .2s, opacity .2s, background-color .2s;
}
.rec .rec-benefits__nav:hover {
	opacity: 1;
	background: var(--rec-primary);
	transform: translateY(-50%) scale(1.08);
}
.rec .rec-benefits__nav[disabled] {
	opacity: .35;
	cursor: default;
	pointer-events: none;
}
.rec .rec-benefits__nav svg { width: 18px; height: 18px; }
.rec .rec-benefits__nav--prev { left: 8px; }
.rec .rec-benefits__nav--next { right: 8px; }
@media (min-width: 1024px){
	.rec .rec-benefits__nav--prev { left: -20px; }
	.rec .rec-benefits__nav--next { right: -20px; }
}

/* 進捗バー（WhyUs / Benefits 共通） */
.rec-slider-progress {
	position: relative;
	width: 100%;
	max-width: calc(100% - 8px);
	margin: 32px auto 0;
	height: 3px;
	background: rgba(10, 56, 117, 0.15);
	border-radius: 999px;
	overflow: hidden;
}
@media (min-width: 768px){
	.rec-slider-progress {
		margin-top: 40px;
	}
}
.rec-slider-progress__bar {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 33.33%;
	background: var(--rec-accent);
	border-radius: 999px;
	transition: transform .3s ease, width .3s ease;
}


/* =========================
   11. Voices
   ========================= */
.rec-voices {
	padding: 56px 20px;
	background-image:url('https://mmso.jp/wp-content/themes/gamma/library/recimg/bg02.png');
	background-size:cover;
	background-position:center center;
	background-repeat:no-repeat;
	background-attachment: inherit;
}
@media (min-width: 768px){
	.rec-voices { padding: 80px 40px; }
}
@media (min-width: 1024px){
	.rec-voices { padding: 96px 48px; background-attachment: fixed;}
}
.rec-voices__inner {
	max-width: var(--rec-container);
	margin: 0 auto;
}

.rec-voices__list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}
@media (min-width: 768px){
	.rec-voices__list {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
	}
}

.rec-voices__item {
	background: #fff;
	border: 1px solid var(--rec-border);

	padding: 24px 24px;
	box-shadow: var(--rec-shadow-sm);
}

.rec-voices__head {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 16px;
}

.rec-voices__avatar {
	width: 48px; height: 48px;
	border-radius: 50%;
	background: #e7eef7;
	overflow: hidden;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.rec-voices__avatar img {
	width: 70%; height: 70%;
	object-fit: contain;
}
.rec-voices__name {
	font-size: 18px;
	font-weight: 700;
	color: var(--rec-text);
}
.rec-voices__meta {
	font-size: 13px;
	color: var(--rec-text-muted);
	margin-top: 2px;
}
.rec-voices__body {
	font-size: 15px;
	line-height: 1.9;
	color: var(--rec-text);
}


/* =========================
   12. Flow
   ========================= */
.rec-flow {
	padding: 56px 20px;
	position: relative;
	background-image:url('https://mmso.jp/wp-content/themes/gamma/library/recimg/bg01.png');
	background-size:cover;
	background-position:center center;
	background-repeat:no-repeat;
	background-attachment: inherit;
}
@media (min-width: 768px){
	.rec-flow { padding: 80px 40px; }
}
@media (min-width: 1024px){
	.rec-flow { padding: 96px 48px;background-attachment: fixed;}
}
.rec-flow__inner {
	position: relative;
	max-width: 800px;
	margin: 0 auto;
}

.rec-flow__list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
	position: relative;
}
@media (min-width: 768px){
	.rec-flow__list {
		grid-template-columns: repeat(3, 1fr);
		gap: 20px;
	}
	/* 接続線 */
	.rec-flow__list::before {
		content: "";
		position: absolute;
		top: 55px;
		left: 16.6%;
		right: 16.6%;
		height: 1px;
		background: var(--rec-accent);
		z-index: 0;
	}
}

.rec-flow__step {
	position: relative;
	text-align: center;
	z-index: 1;
}
.rec-flow__circle {
	width: 110px; height: 110px;
	margin: 0 auto 16px;
	border-radius: 50%;
	background: var(--rec-accent);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 16px rgba(28,116,230,0.3);
}
.rec-flow__circle svg {
	width: 48px; height: 48px;
}
.rec-flow__ttl {
	font-size: 15px;
	font-weight: 700;
	color: var(--rec-text);
	margin-bottom: 8px;
}
@media (min-width: 768px){
	.rec-flow__ttl { font-size: 18px; }
}
.rec-flow__txt {
	font-size: 15px;
	color: var(--rec-text-muted);
	line-height: 1.8;
}


/* =========================
   13. FinalCTA
   ========================= */
.rec-cta {
	position: relative;
	padding: 64px 20px;
	color: #fff;
	overflow: hidden;
	text-align: center;
}
@media (min-width: 768px){
	.rec-cta { padding: 88px 40px; }
}
@media (min-width: 1024px){
	.rec-cta { padding: 104px 48px; }
}

.rec-cta__bg {
	position: absolute; inset: 0;
	background-size: cover;
	background-position: center;
	z-index: 0;
}
.rec-cta__overlay {
	position: absolute; inset: 0;
	background: linear-gradient(180deg, rgba(10,56,117,0.85) 0%, rgba(28,116,230,0.78) 100%);
	z-index: 1;
}

.rec-cta__inner {
	position: relative;
	z-index: 2;
	max-width: 800px;
	margin: 0 auto;
}

.rec-cta__title {
	font-size: 20px;
	font-weight: 700;
	line-height: 1.6;
	letter-spacing: 0.05em;
	margin-bottom: 20px;
}
@media (min-width: 768px){
	.rec-cta__title { font-size: 26px; margin-bottom: 24px; }
}
.rec-cta__lead {
	font-size: 13px;
	line-height: 1.9;
	margin-bottom: 32px;
	opacity: .95;
}
@media (min-width: 768px){
	.rec-cta__lead { font-size: 15px; margin-bottom: 40px; }
}

.rec-cta__btns {
	display: flex;
	flex-direction: column;
	gap: 14px;
	align-items: center;
	justify-content: center;
}
@media (min-width: 768px){
	.rec-cta__btns {
		flex-direction: row;
		gap: 20px;
	}
}

.rec-btn {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	min-width: 260px;
	padding: 14px 22px;
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0.05em;
	transition: transform .2s, box-shadow .2s, background .2s;
}
.rec-btn svg { width: 16px; height: 16px; }
.rec-btn:hover {
	opacity: 1;
	transform: translateY(-2px);
	box-shadow: var(--rec-shadow-md);
}
.rec-btn--primary {
	background: var(--rec-primary);
	color: #fff;
	border: 1px solid var(--rec-primary);
}
.rec-btn--ghost {
	background: #fff;
	color: var(--rec-text)!important;
	border: 1px solid #fff;
}


/* =========================
   モバイル微調整
   ========================= */
@media (max-width: 767px){
	/* WorkPlans ヘッダー縦並び */
	.rec-wp__head {
		flex-wrap: wrap;
	}
	.rec-wp__tags {
		width: 100%;
		margin-top: 4px;
	}

	/* Hero ボタンをフル幅寄せ */
	.rec-hero__btn { width: 100%; max-width: 280px; }

	/* Flow 縦並びで接続線を縦方向に */
	.rec-flow__list::before { display: none; }
.rec-hero__label-accent {
  font-size: 70px;
}
.rec-hero__label {
  margin-bottom: 2rem;
}
.rec-pillar__text {
  padding-left: 0;
}
.rec-service__footer {
  text-align: left;
}
.rec-stats {
  grid-template-columns: repeat(1, 1fr);
}
.rec-acc__num {
  font-size: 25px;
  min-width: 25px;
}
.rec button {
  padding: 1rem;
}
.rec-acc__inner {
  padding-left: 0;
}
.rec-wp__title {
  font-size: 14px;
  letter-spacing: 0;
}
.rec-wp__tag {
  padding: 2px 5px;
  border-radius: 3px;
  font-size: 10px;
}
.rec-wp__icon {
  width: 15px;
  height: 16px;
}
.rec .rec-benefits__nav,
.rec .rec-whyus__nav{
  width: 34px!important;
  height: 34px!important;
}	
.rec .rec-benefits__nav--next,
.rec .rec-whyus__nav--next{
  right:-16px;
}
.rec .rec-benefits__nav--prev,
.rec .rec-whyus__nav--prev{
  left:-16px;
}
}
