@charset "UTF-8";
/* =========================================================
   RVLC Site — 現行デザインの実測値をもとにした可変レイアウト
   実測（1440px時）：コンテンツ幅1020px／ヘッダ高100px／
   本文 #5C5E61 14px・行間25px／背景 #D7D6D2／罫線 #BEBEBE
   ========================================================= */

:root{
	--bg:#D7D6D2;
	--bg-footer:#DBDAD6;
	--text:#5C5E61;
	--head:#0E1E28;
	--navy:#002F4D;
	--rule:#BEBEBE;
	--more-bg:#BBBBB9;
	--wrap:1020px;
	--gutter:25px;
	--header-h:100px;
	--font-jp:"Noto Sans JP","Hiragino Sans","Hiragino Kaku Gothic ProN","Yu Gothic",sans-serif;
	--font-nav:"Zen Kaku Gothic Antique","Noto Sans JP",sans-serif;
	--font-en:"Montserrat","Noto Sans JP",sans-serif;
}

/* JSで隠した要素が見えてしまう事故を防ぐ（display を当てた要素にも効かせる） */
[hidden]{display:none !important;}

*,*::before,*::after{box-sizing:border-box;}
html{-webkit-text-size-adjust:100%;}
body{
	margin:0;
	background:var(--bg);
	color:var(--text);
	font-family:var(--font-jp);
	font-size:14px;
	line-height:1.79;           /* 25 / 14 */
	overflow-x:hidden;          /* 現行サイトで横スクロールが出ていた原因をここで断つ */
	padding-top:var(--header-h);
}
img{max-width:100%;height:auto;vertical-align:middle;}
a{color:inherit;text-decoration:none;}
a:hover{opacity:.7;}
p{margin:0 0 1.4em;}
h1,h2,h3,h4{margin:0;font-weight:500;line-height:1.5;}
ul,ol{margin:0;padding:0;list-style:none;}
dl,dd{margin:0;}

/* 読み上げ専用テキスト */
.rvlcs-sr{
	position:absolute!important;width:1px;height:1px;margin:-1px;padding:0;
	overflow:hidden;clip:rect(0 0 0 0);clip-path:inset(50%);white-space:nowrap;border:0;
}
.rvlcs-skip{
	position:absolute;left:-9999px;top:0;z-index:9999;
	background:var(--navy);color:#fff;padding:10px 16px;
}
.rvlcs-skip:focus{left:0;}

.rvlcs-wrap{
	width:100%;max-width:calc(var(--wrap) + var(--gutter) * 2);
	margin-inline:auto;padding-inline:var(--gutter);
}
.rvlcs-wrap--narrow{max-width:calc(760px + var(--gutter) * 2);}

/* ---------- ヘッダ ---------- */
.rvlcs-header{
	position:fixed;top:0;left:0;right:0;z-index:100;
	height:var(--header-h);
	background:var(--bg);
	border-bottom:1px solid var(--rule);
}
.rvlcs-header__inner{
	height:100%;
	width:100%;max-width:calc(var(--wrap) + var(--gutter) * 2);
	margin-inline:auto;padding-inline:var(--gutter);
	display:flex;align-items:center;justify-content:space-between;gap:16px;
}
.rvlcs-logo img{width:120px;height:auto;display:block;}
.rvlcs-burger{
	appearance:none;border:0;background:transparent;padding:0;
	width:44px;height:44px;                /* タップ領域 44×44（WCAG 2.5.5） */
	display:flex;align-items:center;justify-content:center;cursor:pointer;
}
.rvlcs-burger__bars{display:block;width:30px;}
.rvlcs-burger__bars i{
	display:block;height:2px;background:var(--head);border-radius:1px;
	transition:transform .25s ease,opacity .25s ease;
}
.rvlcs-burger__bars i+i{margin-top:7px;}
.rvlcs-burger[aria-expanded="true"] i:nth-child(1){transform:translateY(9px) rotate(45deg);}
.rvlcs-burger[aria-expanded="true"] i:nth-child(2){opacity:0;}
.rvlcs-burger[aria-expanded="true"] i:nth-child(3){transform:translateY(-9px) rotate(-45deg);}

/* ---------- ハンバーガーメニュー ---------- */
.rvlcs-nav{
	position:fixed;top:0;right:0;bottom:0;z-index:200;
	width:min(320px,86vw);
	background:#fff;
	display:flex;flex-direction:column;align-items:stretch;justify-content:flex-start;
	padding:calc(env(safe-area-inset-top,0px) + 72px) max(env(safe-area-inset-right,0px),28px)
	        calc(env(safe-area-inset-bottom,0px) + 24px) 28px;
	overflow-y:auto;overscroll-behavior:contain;-webkit-overflow-scrolling:touch;
	transform:translateX(100%);
	transition:transform .3s ease;
	box-shadow:0 0 24px rgba(0,0,0,.12);
}
.rvlcs-nav.is-open{transform:translateX(0);}
.rvlcs-nav__close{
	position:absolute;top:16px;right:16px;
	width:44px;height:44px;appearance:none;border:0;background:transparent;cursor:pointer;
}
.rvlcs-nav__close span{position:relative;display:block;width:22px;height:22px;margin:0 auto;}
.rvlcs-nav__close span::before,.rvlcs-nav__close span::after{
	content:"";position:absolute;top:50%;left:0;width:100%;height:2px;background:var(--head);
}
.rvlcs-nav__close span::before{transform:rotate(45deg);}
.rvlcs-nav__close span::after{transform:rotate(-45deg);}
.rvlcs-nav__list a{
	display:flex;align-items:center;min-height:44px;padding:10px 0;
	font-family:var(--font-nav);font-size:16px;letter-spacing:1px;color:var(--head);
}
.rvlcs-nav__sns{flex-shrink:0;margin-top:20px;padding-top:18px;border-top:1px solid rgba(0,0,0,.1);}
.rvlcs-nav__sns a{display:inline-flex;align-items:center;justify-content:center;width:44px;height:44px;}
.rvlcs-nav__sns img{width:25px;height:18px;}
.rvlcs-nav-veil{position:fixed;inset:0;z-index:150;background:rgba(0,0,0,.35);}
body.rvlcs-locked{overflow:hidden;}

/* ---------- セクション共通 ---------- */
.rvlcs-main{display:block;}
.rvlcs-section{padding-block:clamp(38px,4.3vw,62px);}

/* 見出し＝画像＋下の細い罫線。罫線は文字の左へ伸びる。 */
.rvlcs-shead{margin-bottom:28px;}
.rvlcs-shead__title{display:flex;}
.rvlcs-shead__img{
	display:block;
	height:var(--sh-h,24px);width:auto;max-width:100%;   /* SVGは幅指定が無いと親幅まで伸びるので必ず高さで決める */
	border-bottom:1px solid var(--rule);
	padding-left:min(170px,26vw);padding-bottom:12px;
	box-sizing:content-box;
}
.rvlcs-shead--left .rvlcs-shead__title{justify-content:flex-start;padding-left:5.4%;}
.rvlcs-shead--center .rvlcs-shead__title{justify-content:flex-start;padding-left:8.8%;}
.rvlcs-shead--right .rvlcs-shead__title{justify-content:flex-end;padding-right:4.2%;}

/* more ボタン */
.rvlcs-more{
	display:inline-flex;align-items:center;justify-content:center;
	min-width:77px;min-height:44px;padding:12px 0;   /* 見た目20px・タップ領域44px */
	background:transparent;
}
.rvlcs-more img{display:block;width:77px;height:20px;background:var(--more-bg);}
.rvlcs-more:hover{opacity:1;}
.rvlcs-more:hover img{opacity:.7;}

/* ---------- トップ：ヒーロー ---------- */
.rvlcs-hero{padding-top:0;}
.rvlcs-update{padding-top:0;}
.rvlcs-hero .rvlcs-wrap{position:relative;}
.rvlcs-hero__visual{
	aspect-ratio:1020 / 386;
	background:url("../img/photo/hero.png") center top / cover no-repeat;
}
.rvlcs-hero__copy{
	position:absolute;left:calc(var(--gutter) + 49px);top:88px;margin:0;
	width:min(326px,62%);
}
.rvlcs-hero__copy img{width:100%;height:auto;display:block;}

/* ---------- トップ：update ---------- */
.rvlcs-update__list{text-align:right;font-size:15px;line-height:1.2;padding-right:4.2%;}
.rvlcs-update__list li+li{margin-top:27px;}
.rvlcs-update__list a{display:inline-block;}
.rvlcs-update__more{margin-top:20px;text-align:right;padding-right:2.7%;}

/* ---------- トップ：always, original. ---------- */
.rvlcs-intro__body{margin-left:31.4%;width:64.4%;}
.rvlcs-intro__more{margin-top:12px;text-align:right;padding-right:2.7%;}

/* ---------- トップ：lineup ---------- */
.rvlcs-brand{
	display:grid;grid-template-columns:41.9% 49.6%;   /* 現行の 406px / 480px（左に52pxの食い込みを引いた残り幅に対する比） */
	gap:5.4%;align-items:start;padding-left:5.1%;
	margin-top:6px;
}
.rvlcs-brand:first-of-type{margin-top:0;}
.rvlcs-brand__logo{margin-bottom:20px;}
.rvlcs-brand__logo img{display:block;height:var(--logo-h,32px);width:auto;max-width:100%;}
.rvlcs-brand__text{margin-bottom:16px;}
.rvlcs-brand__links{display:flex;align-items:center;gap:18px;margin:0;}
.rvlcs-brand__insta{display:inline-flex;align-items:center;justify-content:center;width:44px;height:44px;}
.rvlcs-brand__insta img{width:26px;height:25px;flex:0 0 auto;}
.rvlcs-brand__photo img{width:100%;height:auto;display:block;}

/* ---------- トップ：new&used ---------- */
.rvlcs-stock__links{
	display:flex;flex-wrap:wrap;align-items:flex-end;justify-content:flex-start;padding-left:28.2%;
	gap:clamp(24px,5vw,60px);margin-bottom:28px;
}
.rvlcs-stock__link{display:inline-flex;align-items:flex-end;gap:12px;}
.rvlcs-stock__link img{height:41px;width:auto;max-width:100%;}
.rvlcs-stock__link span{font-size:15px;line-height:1.7;}
.rvlcs-stock__body{width:67.5%;margin-left:28.2%;}

/* ---------- 下層：ページヒーロー ---------- */
.rvlcs-pagehero{padding-top:clamp(28px,4vw,48px);}
.rvlcs-pagehero__visual{margin-top:18px;}
.rvlcs-pagehero__visual img{width:100%;height:auto;display:block;}
.rvlcs-pagehero__title{
	font-family:var(--font-nav);font-size:clamp(18px,2.4vw,20px);letter-spacing:.08em;color:var(--text);
	margin-bottom:18px;
}
.rvlcs-pagehero--recruit .rvlcs-pagehero__visual{margin-top:0;}

/* ---------- about ----------
   現行サイトの実測（PC 1440 / コンテンツ列 1020px）を、列幅に対する比率で持たせている。
   縦のラインは2本だけ： 左 5.1%（52px相当）と 右 42.25%（431px相当）。
   文章は必ず写真と反対側の列に置く。                                          */
:root{
	--a-left:5.1%;          /* 左の基準線 */
	--a-right:42.25%;       /* 右の基準線 */
	--a-col:52.65%;         /* 文章の幅（右端が 94.9% になる） */
	--a-rule:35%;           /* 見出し下の罫線の幅（357px相当） */
}

/* 見出し（画像）＋その下の罫線 */
.rvlcs-ahead{display:block;margin:0;line-height:0;}
.rvlcs-ahead img{display:block;width:auto;max-width:100%;height:auto;}
.rvlcs-ahead::after{
	content:"";display:block;height:2px;background:var(--rule);
	margin-top:12px;width:var(--a-rule);
}
.rvlcs-ahead--about img{height:21px;}
.rvlcs-ahead--always img{height:27px;}
.rvlcs-ahead--concept img{height:35px;}
.rvlcs-ahead--dev img{height:27px;}
.rvlcs-ahead--aboutus img{height:23px;}
.rvlcs-ahead--about::after,.rvlcs-ahead--always::after{width:100%;}
.rvlcs-ahead--concept::after{width:100%;}
.rvlcs-ahead--dev::after{width:66.5%;}
.rvlcs-ahead--aboutus::after{width:49.1%;}

/* ヒーロー：全幅の写真の上に、左側へ文章を重ねる */
.rvlcs-ahero{position:relative;}
.rvlcs-ahero__media{
	position:relative;width:100vw;max-width:100vw;
	margin-left:calc(50% - 50vw);aspect-ratio:1440/742;
}
.rvlcs-ahero__media img{width:100%;height:100%;object-fit:cover;object-position:center;display:block;}
.rvlcs-ahero__inner{position:absolute;inset:0;}
.rvlcs-ahero__stage{position:relative;width:100%;height:100%;}
.rvlcs-ahero__copy{
	position:absolute;left:var(--a-left);top:50%;transform:translateY(-50%);
	width:42%;
}
.rvlcs-ahero__copy .rvlcs-ahead--always{margin-top:clamp(48px,7.5vw,96px);}
.rvlcs-ahero__text{font-size:13px;margin-top:18px;}

/* 写真の組。枠の比率で切り抜き、位置も列幅（1020px）に対する比率で置く。
   縦位置は top ではなく margin-top を使う。％の基準が「高さ」ではなく「列幅」になり、
   画面幅が変わっても設計どおりの比率を保てるため。 */
.rvlcs-aset{margin-top:clamp(40px,6vw,72px);}
.rvlcs-aset__stage{position:relative;width:100%;}
.rvlcs-afig{margin:0;position:absolute;top:0;}
.rvlcs-afig img{width:100%;height:100%;object-fit:cover;object-position:center;display:block;}
.rvlcs-aset__copy{position:absolute;top:0;left:var(--a-right);width:var(--a-col);}

.rvlcs-aset--shop .rvlcs-aset__stage{padding-bottom:37.75%;}
.rvlcs-afig--shop1{left:5.1%;margin-top:0;width:30.98%;aspect-ratio:316/300;}
.rvlcs-afig--shop2{left:37.75%;margin-top:7.45%;width:30.98%;aspect-ratio:316/224;}
.rvlcs-afig--shop3{left:75%;margin-top:7.45%;width:19.9%;aspect-ratio:203/309;}

.rvlcs-aset--concept .rvlcs-aset__stage{padding-bottom:58.14%;}
.rvlcs-afig--con1{left:5.1%;margin-top:12.35%;width:30.98%;aspect-ratio:316/224;}
.rvlcs-afig--con2{left:37.84%;margin-top:22.45%;width:25.59%;aspect-ratio:261/363;}
.rvlcs-afig--con3{left:63.92%;margin-top:36.18%;width:30.98%;aspect-ratio:316/224;}

.rvlcs-aset--dev .rvlcs-aset__stage{padding-bottom:51.5%;}
.rvlcs-afig--dev1{left:5.1%;margin-top:0;width:30.98%;aspect-ratio:316/440;}
.rvlcs-afig--dev2{left:38.63%;margin-top:21.18%;width:19.9%;aspect-ratio:203/309;}
.rvlcs-afig--dev3{left:63.92%;margin-top:21.18%;width:30.98%;aspect-ratio:316/224;}

.rvlcs-aset__copy p{font-size:13px;margin-top:18px;}

/* about us：中央に置いた1本の列にまとめる */
.rvlcs-aboutus{margin-top:clamp(56px,8vw,96px);}
.rvlcs-aboutus__box{width:71.27%;margin-inline:auto;}
.rvlcs-aboutus .rvlcs-ahead{margin-bottom:clamp(28px,4vw,48px);}
.rvlcs-deflist{font-size:13px;margin-bottom:clamp(32px,5vw,56px);}
.rvlcs-deflist>div{
	display:grid;grid-template-columns:24.48% 1fr;gap:16px;
	padding:16px 0;border-bottom:2px solid var(--rule);
}
.rvlcs-deflist dt{text-align:right;}
.rvlcs-deflist dd{text-align:right;}
.rvlcs-access{font-size:13px;}
.rvlcs-access h3{font-size:13px;font-weight:500;margin-bottom:.2em;}
.rvlcs-access p{margin-bottom:1.8em;}
.rvlcs-aboutus .rvlcs-mapbtn a{width:100%;}
.rvlcs-mapbtn{margin-top:8px;}
.rvlcs-contact__info .rvlcs-mapbtn{margin-top:28px;}
.rvlcs-mapbtn a{
	display:flex;align-items:center;justify-content:center;
	width:min(454px,100%);min-height:56px;margin-inline:auto;
	border:1px solid var(--rule);border-radius:4px;
	font-family:var(--font-en);font-size:16px;
}

/* ---------- contact ---------- */
.rvlcs-contact__head{
	display:grid;grid-template-columns:minmax(0,1fr) minmax(0,1fr);
	gap:clamp(24px,4vw,48px);align-items:center;margin-bottom:clamp(32px,5vw,56px);
}
.rvlcs-contact__brand{display:flex;align-items:center;gap:18px;justify-content:center;}
.rvlcs-contact__brand img{width:96px;height:auto;flex:0 0 auto;}
/* 会社情報は行を1つの箱にまとめて中央に置く。下の google map ボタンも中央なので中心が揃う。 */
.rvlcs-contact__info{font-size:14px;text-align:center;}
.rvlcs-contact__lines{display:inline-block;text-align:left;}
.rvlcs-contact__info p{margin:0;}
.rvlcs-contact__name{font-size:16px;line-height:1.75;}
.rvlcs-contact__lead{font-size:13px;text-align:center;margin-bottom:32px;}
.rvlcs-form{width:min(800px,100%);margin-inline:auto;}
.rvlcs-notice{border:1px solid var(--rule);padding:16px;}

/* Contact Form 7 の見た目をサイトに合わせる */
.rvlcs-form .wpcf7-form p{margin:0 0 18px;font-size:14px;}
.rvlcs-form input[type="text"],
.rvlcs-form input[type="email"],
.rvlcs-form input[type="tel"],
.rvlcs-form textarea{
	width:100%;max-width:100%;
	font:inherit;color:var(--text);
	background:#fff;border:1px solid var(--rule);border-radius:2px;
	padding:12px 14px;min-height:44px;
}
.rvlcs-form textarea{min-height:220px;resize:vertical;}
.rvlcs-form .wpcf7-list-item{margin:0 18px 8px 0;display:inline-flex;align-items:center;}
.rvlcs-form .wpcf7-list-item-label{padding-left:6px;}
.rvlcs-form input[type="checkbox"],.rvlcs-form input[type="radio"]{width:18px;height:18px;}
.rvlcs-form input[type="submit"]{
	appearance:none;width:100%;min-height:48px;
	background:#3E3C3C;color:#fff;border:0;border-radius:2px;
	font:inherit;letter-spacing:.1em;cursor:pointer;
}
.rvlcs-form input[type="submit"]:hover{opacity:.85;}

/* ---------- recruit ---------- */
.rvlcs-recruit__lead{font-size:clamp(17px,2.2vw,23px);line-height:1.75;color:var(--text);margin-bottom:24px;}
.rvlcs-recruit__text{font-size:14px;}
.rvlcs-recruit__photos{
	display:grid;grid-template-columns:repeat(3,1fr);gap:clamp(12px,2vw,24px);
	margin:clamp(28px,4vw,44px) 0;
}
.rvlcs-recruit__photos img{width:100%;height:auto;display:block;}
.rvlcs-recruit__detail>div{margin-bottom:26px;}
.rvlcs-recruit__detail dt{font-size:16px;margin-bottom:4px;}
.rvlcs-recruit__detail dd{font-size:14px;}

/* ---------- 記事・一覧 ---------- */
.rvlcs-archive__head{display:flex;align-items:flex-end;justify-content:space-between;gap:20px;flex-wrap:wrap;}
.rvlcs-archive__staffblog img{width:127px;height:auto;display:block;max-width:100%;}
.rvlcs-archive__title,.rvlcs-single__label{
	font-family:var(--font-nav);font-size:clamp(19px,2.6vw,24px);color:#9FA0A0;letter-spacing:.04em;
	margin-bottom:20px;
}
.rvlcs-archive__layout{
	display:grid;grid-template-columns:minmax(0,180px) minmax(0,1fr);
	gap:clamp(24px,4vw,48px);margin-top:28px;
}
.rvlcs-archive__sidetitle{font-size:13px;margin-bottom:12px;}
.rvlcs-catlist li{margin-bottom:8px;font-size:13px;}
.rvlcs-catlist li::before{content:"・";}
.rvlcs-cards{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:clamp(20px,3vw,36px);}
.rvlcs-cards--2{grid-template-columns:repeat(2,minmax(0,1fr));}
.rvlcs-card__thumb{display:block;background:var(--navy);aspect-ratio:16 / 9;overflow:hidden;}
.rvlcs-card__thumb img{width:100%;height:100%;object-fit:cover;display:block;}
.rvlcs-card__fallback{
	width:60%;height:auto;object-fit:contain;margin:auto;display:block;
	padding:14% 0;
}
.rvlcs-card__cat{display:block;font-size:11px;margin-top:10px;color:#8b8d90;}
.rvlcs-card__title{font-size:13px;font-weight:400;margin-top:2px;line-height:1.6;}

.rvlcs-post__thumb{background:var(--navy);margin-bottom:14px;}
.rvlcs-post__thumb img{width:100%;height:auto;display:block;}
.rvlcs-post__cat{font-size:11px;margin:0 0 6px;}
.rvlcs-post__title{
	font-size:clamp(16px,2.2vw,18px);font-weight:500;color:#4b4d50;
	padding-bottom:14px;border-bottom:1px solid var(--rule);margin-bottom:18px;
}
.rvlcs-post__date{font-family:var(--font-en);font-size:12px;margin-bottom:22px;}
.rvlcs-postnav{display:flex;gap:16px;justify-content:flex-end;margin:32px 0;}
.rvlcs-postnav a{
	display:inline-flex;align-items:center;min-height:44px;padding:0 18px;
	border:1px solid var(--rule);border-radius:2px;font-size:13px;
}
.rvlcs-related{margin-top:clamp(32px,5vw,56px);}
.rvlcs-empty{font-size:14px;}

.rvlcs-prose{font-size:14px;}
.rvlcs-prose h2{font-size:16px;margin:1.8em 0 .5em;}
.rvlcs-prose img{height:auto;}
.rvlcs-prose ul{list-style:disc;padding-left:1.4em;margin-bottom:1.4em;}
.rvlcs-prose li{margin-bottom:.3em;}
.rvlcs-prose a{text-decoration:underline;}

.rvlcs-policy__title{font-size:clamp(16px,2.4vw,20px);margin-bottom:28px;}

/* ページ送り */
.pagination,.navigation.pagination{margin-top:36px;}
.nav-links{display:flex;gap:8px;justify-content:center;flex-wrap:wrap;}
.nav-links .page-numbers{
	display:inline-flex;align-items:center;justify-content:center;
	min-width:44px;min-height:44px;padding:0 10px;
	border:1px solid var(--rule);border-radius:2px;font-size:13px;
}
.nav-links .page-numbers.current{background:var(--more-bg);color:#fff;}

/* ---------- フッタ ---------- */
.rvlcs-footer{background:var(--bg-footer);padding-block:36px 40px;font-size:13px;}
.rvlcs-footer__logo img{width:94px;height:auto;display:block;}
.rvlcs-footer__sns{margin:14px 0 12px;}
.rvlcs-footer__sns a{display:inline-flex;align-items:center;width:44px;height:44px;}
.rvlcs-footer__sns img{width:25px;height:18px;}
.rvlcs-footer__address{font-style:normal;line-height:1.77;}
.rvlcs-footer__address span{display:block;}
.rvlcs-footer__map{display:none;}   /* 現行と同じくスマホ幅のときだけ出す */
.rvlcs-footer__links{margin:14px 0 0;font-family:var(--font-en);}
.rvlcs-footer__copy{margin:10px 0 0;font-family:var(--font-en);font-size:12px;}


/* ---------- 表示アニメーション（opacity のみ・OS設定に関係なく動かす） ---------- */
.rvlcs-fx{opacity:0;}
.rvlcs-fx.is-in{opacity:1;transition:opacity .7s ease;}
.rvlcs-fx-done .rvlcs-fx{opacity:1;transition:none;}
@media (prefers-reduced-motion: reduce){
	/* 移動やスタッガーは行わない。opacity のフェードだけは残す。 */
	.rvlcs-fx.is-in{transition:opacity .7s ease !important;}
}

/* =========================================================
   タブレット以下
   ========================================================= */

/* about：コンテンツ列が1020px を保てない幅では、比率配置をやめて縦に積む */
@media (max-width:1199px){
	.rvlcs-ahero__media{aspect-ratio:16/9;}
	.rvlcs-ahero__inner{position:static;}
	.rvlcs-ahero__stage{height:auto;}
	.rvlcs-ahero__copy{position:static;transform:none;width:100%;margin-top:clamp(24px,4vw,40px);}
	.rvlcs-ahead--about::after,.rvlcs-ahead--always::after,
	.rvlcs-ahead--concept::after,.rvlcs-ahead--dev::after{width:100%;}
	.rvlcs-ahead--aboutus::after{width:60%;}

	.rvlcs-aset__stage{padding-bottom:0 !important;
		display:grid;grid-template-columns:repeat(2,1fr);gap:clamp(12px,2.4vw,22px);align-items:start;}
	.rvlcs-aset__copy{position:static !important;left:auto !important;top:auto !important;
		width:auto !important;grid-column:1 / -1;margin-bottom:clamp(8px,2vw,18px);}
	.rvlcs-afig{position:static;width:auto !important;aspect-ratio:auto !important;margin-top:0 !important;}
	.rvlcs-afig img{height:auto;aspect-ratio:var(--fig-ar,3/2);}
	.rvlcs-afig--shop1 img{aspect-ratio:316/300;}
	.rvlcs-afig--shop2 img{aspect-ratio:316/224;}
	.rvlcs-afig--shop3 img{aspect-ratio:203/309;}
	.rvlcs-afig--con1 img{aspect-ratio:316/224;}
	.rvlcs-afig--con2 img{aspect-ratio:261/363;}
	.rvlcs-afig--con3 img{aspect-ratio:316/224;}
	.rvlcs-afig--dev1 img{aspect-ratio:316/440;}
	.rvlcs-afig--dev2 img{aspect-ratio:203/309;}
	.rvlcs-afig--dev3 img{aspect-ratio:316/224;}
	/* 3枚目は2列ぶんを使わず、左下に寄せて余白を残す */
	.rvlcs-afig--shop3,.rvlcs-afig--con3,.rvlcs-afig--dev3{grid-column:1 / -1;width:min(48%,320px) !important;}
	.rvlcs-aboutus__box{width:100%;}
}
@media (max-width:600px){
	.rvlcs-aset__stage{grid-template-columns:1fr;}
	.rvlcs-afig--shop3,.rvlcs-afig--con3,.rvlcs-afig--dev3{width:min(70%,300px) !important;}
	.rvlcs-deflist>div{grid-template-columns:1fr;gap:4px;padding:14px 0;}
	.rvlcs-deflist dt,.rvlcs-deflist dd{text-align:left;}
}

@media (max-width:900px){
	.rvlcs-archive__layout{grid-template-columns:1fr;}
	.rvlcs-contact__head{grid-template-columns:1fr;}
}

@media (max-width:767px){
	:root{--header-h:84px;--gutter:25px;}
	body{font-size:13px;line-height:1.85;}

	.rvlcs-logo img{width:103px;}

	/* ヒーロー：写真は画面いっぱい、コピーはその上に重ねる */
	.rvlcs-hero .rvlcs-wrap{padding-top:28px;}
	.rvlcs-hero__visual{
		aspect-ratio:390 / 332;
		background-position:center bottom;
		margin-inline:calc(var(--gutter) * -1);
	}
	.rvlcs-hero__copy{left:calc(var(--gutter) + 7px);top:52px;width:min(326px,84%);}

	.rvlcs-shead{margin-bottom:24px;}
	.rvlcs-shead__title{justify-content:flex-start !important;padding-left:0 !important;padding-right:0 !important;}
	.rvlcs-shead__img{padding-left:0;width:auto;max-width:100%;flex:0 1 auto;height:calc(var(--sh-h,24px) * 1.15);}
	.rvlcs-shead{border-bottom:1px solid var(--rule);padding-bottom:10px;}
	.rvlcs-shead__img{border-bottom:0;padding-bottom:0;}

	.rvlcs-update__list{text-align:left;font-size:15px;padding-right:0;}
	.rvlcs-update__list li+li{margin-top:18px;}
	.rvlcs-update__more,.rvlcs-intro__more{text-align:left;padding-right:0;}
	.rvlcs-more img{width:105px;height:27px;}

	.rvlcs-intro__body{margin-left:0;width:100%;}

	.rvlcs-brand{grid-template-columns:1fr;gap:18px;margin-top:44px;padding-left:0;}
	.rvlcs-brand__photo{order:-1;}
	.rvlcs-brand__logo{margin-bottom:14px;}

	.rvlcs-stock__links{justify-content:flex-start;flex-direction:column;align-items:flex-start;gap:14px;padding-left:0;}
	.rvlcs-stock__link img{height:34px;}

	.rvlcs-about-block__text{width:100%;margin-left:0;}
	.rvlcs-stock__body{width:100%;margin-left:0;}
	.rvlcs-collage{grid-template-columns:repeat(2,1fr);}
	.rvlcs-collage img:nth-child(3){grid-column:span 2;width:70%;margin-inline:auto;}

	.rvlcs-deflist>div{grid-template-columns:1fr;gap:4px;padding:14px 0;}
	.rvlcs-deflist dt,.rvlcs-deflist dd{text-align:left;}

	.rvlcs-cards{grid-template-columns:1fr;}
	.rvlcs-cards--2{grid-template-columns:1fr;}

	.rvlcs-recruit__photos{grid-template-columns:1fr;}

	.rvlcs-footer__map{display:block;margin-top:20px;}
}

@media (max-width:359px){
	:root{--gutter:16px;}
}
