/*==========================================================
基本設定
==========================================================*/

:root {
	--arukas-header-height: 84px;
	--arukas-hero-bottom-height: 180px;
	--arukas-black: #222;
	--arukas-green: #81C83F;
	--arukas-green2:#22AC38B2;
	--arukas-green-dark: #437A42;
	--arukas-green-dark2: #357420;
	--arukas-green-hover: #60AD5E;
	
	--arukas-white: #fff;
	--arukas-accent:#D95B4C;
}

html {
	margin: 0;
	padding: 0;
	scroll-behavior: auto;
	font-size: 62.5%;
}

body.arukas-renewal-page {
	margin: 0;
	padding: 0;
	overflow-x: hidden;
	background: #FAFAF9;
	color: #111;
	font-family:
		"Noto Sans JP",
		"Yu Gothic",
		"YuGothic",
		"Meiryo",
		sans-serif;
}

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

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

.arukas-renewal-page img {
	max-width: 100%;
	height: auto;
}

.arukas-renewal-page a {
	color: inherit;
}

.arukas-renewal-page button,
.arukas-renewal-page input,
.arukas-renewal-page textarea,
.arukas-renewal-page select {
	font-family: inherit;
}

/*==========================================================
ヘッダー
==========================================================*/

.arukas-header {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	z-index: 1000;

	width: 100%;
	height: var(--arukas-header-height);

	border-bottom: 1px solid #ddd;

	background: rgba(255, 255, 255, 0.98);
	color: #111;

	box-shadow:
		0 2px 8px
		rgba(0, 0, 0, 0.06);

	backdrop-filter: blur(8px);
}


/*==========================================================
ヘッダー内側
==========================================================*/

.arukas-header__inner {
	display: flex;
	align-items: center;

	width: 1480px;
	max-width: calc(100% - 48px);
	height: 100%;

	margin: 0 auto;
}

/*==========================================================
HEADER：LOGO
==========================================================*/

.arukas-header__logos {
	display: flex;
	flex: 0 0 auto;
	align-items: center;
	gap: 14px;

	height: 100%;
}

.arukas-header__logo {
	display: flex;
	flex: 0 0 auto;
	align-items: center;

	height: 100%;

	text-decoration: none;
}

.arukas-header__logo img {
	display: block;

	width: auto;
	height: auto;

	object-fit: contain;
}


/* Sakuraロゴ */
.arukas-header__logo-sakura {
	width: auto !important;
	height: 48px !important;
	max-height: 48px !important;
}


/* STUDIO ARUKASロゴ */
.arukas-header__logo-arukas {
	width: auto !important;
	height: 42px !important;
	max-height: 42px !important;
}

/*==========================================================
ナビ
==========================================================*/

.arukas-header__nav {
	min-width: 0;
	margin-left: auto;
}

.arukas-header__menu {
	display: flex;
	align-items: center;

	gap: clamp(
		11px,
		0.85vw,
		18px
	);

	margin: 0;
	padding: 0;

	list-style: none;
}

.arukas-header__menu > li {
	flex: 0 0 auto;
	margin: 0;
	padding: 0;
}


/*==========================================================
通常リンク
==========================================================*/

.arukas-header__menu a {
	position: relative;
	display: block;

	padding: 31px 0;

	color: #111;

	font-size: clamp(
	1.4rem,
	0.9vw,
	1.5rem
	);

	font-weight: 500;
	line-height: 1.4;

	text-decoration: none;
	white-space: nowrap;
}

/*
 * hover下線
 */
.arukas-header__menu
> li:not(.arukas-header__contact-item)
> a::after {

	position: absolute;
	right: 0;
	bottom: 23px;
	left: 0;

	height: 1px;

	background: #111;

	content: "";

	transform: scaleX(0);
	transform-origin: right center;

	transition:
		transform 0.25s ease;
}

.arukas-header__menu
> li:not(.arukas-header__contact-item)
> a:hover::after,
.arukas-header__menu
> li:not(.arukas-header__contact-item)
> a:focus-visible::after {

	transform: scaleX(1);
	transform-origin: left center;
}


/*==========================================================
お問い合わせボタン
==========================================================*/

.arukas-header__contact-item {
	margin-left: 8px !important;
}

.arukas-header__menu .arukas-header__contact {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	gap: 10px;

	padding: 13px 20px;

	border-radius: 999px;

	background: var(--arukas-accent);
	color: #fff;

	font-size: 1.4rem;
	font-weight: 700;

	box-shadow: none;

	transition:
		background-color 0.25s ease,
		transform 0.25s ease;
}

.arukas-header__menu
.arukas-header__contact:hover,
.arukas-header__menu
.arukas-header__contact:focus-visible {

	background: #c94f43;
	transform: translateY(-2px);
}

.arukas-header__contact-arrow {
	font-size: 18px;
	line-height: 1;

	transition:
		transform 0.25s ease;
}

.arukas-header__contact:hover
.arukas-header__contact-arrow,
.arukas-header__contact:focus-visible
.arukas-header__contact-arrow {

	transform: translateX(3px);
}


/*==========================================================
ハンバーガー
==========================================================*/

.arukas-header__menu-button {
	display: none;
}


/*==========================================================
HERO
==========================================================*/

.arukas-hero {
	position: relative;
	width: 100%;
	min-height: 760px;
	padding-top: var(--arukas-header-height);
	overflow: hidden;
	background: #f5f5f5;
	color: #111;
}


/*----------------------------------------------------------
HERO上部
右側動画の 1018:460 比率に合わせて高さを可変
----------------------------------------------------------*/

.arukas-hero__main {
	display: grid;
	grid-template-columns: 42% 58%;

	width: 100%;
	height: calc(58vw * 460 / 1018);

	min-height: 0;
}


/*----------------------------------------------------------
左側コピー
----------------------------------------------------------*/

.arukas-hero__copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;

	padding:
		40px
		clamp(45px, 5vw, 95px);



	background: #fff;
	color: #17221c;
}


@media screen and (max-width: 1200px) {

	.arukas-hero__copy {
		padding:
			40px
			clamp(30px, 3.5vw, 65px);
	}

}

.arukas-hero__title {
	margin: 0;

	color: #17221c;
	font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
	
	

	font-size: clamp(
		40px,
		3.2vw,
		62px
	);

	font-weight: 500;
	line-height: 1.45;
	letter-spacing: -0.05em;

	text-shadow: none;


}


.arukas-hero__title span {
	color: var(--arukas-accent);
}


.arukas-hero__subtitle {
	margin: 26px 0 0;

	color: #17221c;

	font-size: clamp(
		13px,
		1vw,
		16px
	);

	font-weight: 500;
	line-height: 1.8;
	letter-spacing: 0.02em;

	text-shadow: none;
}



/*----------------------------------------------------------
右側動画
1018:460 の表示窓
----------------------------------------------------------*/

/*----------------------------------------------------------
右側動画
常に 1018 : 460 の表示窓
----------------------------------------------------------*/

.arukas-hero__visual {
	position: relative;

	width: 100%;
	min-width: 0;

	aspect-ratio: 1018 / 460;

	overflow: hidden;

	background: #111;
}


/*----------------------------------------------------------
YouTubeプレイヤー
16:9動画を中央配置し、上下均等クロップ
----------------------------------------------------------*/

.arukas-hero__players {
	position: absolute;
	inset: 0;

	width: 100%;
	height: 100%;

	overflow: hidden;

	background: #111;
}


#arukas-hero-player-a,
#arukas-hero-player-b {
	position: absolute !important;

	top: 50% !important;
	left: 50% !important;

	z-index: 1;

	width: 100% !important;
	height: auto !important;

	aspect-ratio: 16 / 9;

	border: 0;

	opacity: 0;

	transform: translate(-50%, -50%) !important;

	transition:
		opacity 0.65s ease;

	pointer-events: none;
}

/*----------------------------------------------------------
表示中
----------------------------------------------------------*/

#arukas-hero-player-a.is-active,
#arukas-hero-player-b.is-active {
	z-index: 2;

	opacity: 1;
}


/*----------------------------------------------------------
次動画：表示直前
----------------------------------------------------------*/

#arukas-hero-player-a.is-entering,
#arukas-hero-player-b.is-entering {
	z-index: 4;

	opacity: 0;
}


/*----------------------------------------------------------
旧動画：フェードアウト中
----------------------------------------------------------*/

#arukas-hero-player-a.is-leaving,
#arukas-hero-player-b.is-leaving {
	z-index: 3;

	opacity: 1;
}


/*----------------------------------------------------------
HERO 動画切替用 黒フェード
----------------------------------------------------------*/

.arukas-hero__fade {
	position: absolute;
	inset: 0;
	z-index: 20;

	background: rgba(0, 0, 0, 0.58);

	opacity: 0;

	pointer-events: none;

	transition:
		opacity 1.5s ease-in-out;
}


/* 前動画を暗くする */
.arukas-hero__fade.is-dark {
	opacity: 1;
}





/*=================================================== =======
HERO下部CTA帯
==========================================================*/

.arukas-hero__bottom {
	position: relative;
	z-index: 5;
	width: 100%;
	min-height: 205px;

	background: linear-gradient(
		90deg,
		#60AD5E 0%,
		#437A42 100%
	);

	color: #fff;
}

.arukas-hero__bottom-inner {
	display: flex;
	justify-content: center;
	align-items: center;

	width: 1400px;
	max-width: calc(100% - 80px);
	min-height: 205px;

	margin: 0 auto;
	padding: 22px 0 24px;
}

.arukas-hero__bottom-copy {
	width: 100%;
	text-align: center;
}

.arukas-hero__bottom-title {
	margin: 0;

	color: #fff;
	font-size: clamp(21px, 1.65vw, 28px);
	font-weight: 700;
	line-height: 1.55;
	letter-spacing: 0.02em;
}

.arukas-hero__bottom-text {
	margin: 12px 0 3px;

	color: #fff;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.02em;
}

.arukas-hero__bottom-button {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	gap: 16px;



	padding: 14px 28px;

	border: 2px solid #fff;
	border-radius: 999px;

	background: var(--arukas-accent);
	color: #fff;

	font-size: 14px;
	font-weight: 700;
	line-height: 1.4;

	text-decoration: none;

	box-shadow: none;

	transition:
		background-color 0.25s ease,
		transform 0.25s ease;
}

.arukas-hero__bottom-button:hover,
.arukas-hero__bottom-button:focus-visible {
	background: #c94f43;
	transform: translateY(-2px);
}

.arukas-hero__bottom-arrow {
	font-size: 20px;
	line-height: 1;
}









.arukas-hero__bottom-button:hover
.arukas-hero__bottom-arrow,
.arukas-hero__bottom-button:focus-visible
.arukas-hero__bottom-arrow {
	transform: translateX(4px);
}

.arukas-hero__bottom-figure {
	position: absolute;
	right: 2%;
	bottom: -6px;
	width: 180px;
	height: 175px;
	opacity: 0.9;
	background:
		url("./images/hero-bottom-figure.svg")
		no-repeat
		center bottom;
	background-size: contain;
}



/*----------------------------------------------------------
YouTube切替時カバー
----------------------------------------------------------*/

.arukas-hero__cover {
	position: absolute;
	inset: 0;
	z-index: 10;

	width: 100%;
	height: 100%;

	background-color: #111;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;

	opacity: 0;
	visibility: hidden;

	pointer-events: none;

	transition:
		opacity 0.35s ease,
		visibility 0.35s ease;
}

.arukas-hero__cover.is-visible {
	opacity: 1;
	visibility: visible;
}



/*----------------------------------------------------------
HERO：動画切替カバー
----------------------------------------------------------*/

.arukas-hero__cover {
	position: absolute;
	inset: 0;
	z-index: 10;

	width: 100%;
	height: 100%;

	background-color: #111;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;

	opacity: 0;
	visibility: hidden;

	pointer-events: none;

	transition:
		opacity 0.35s ease,
		visibility 0.35s ease;
}

.arukas-hero__cover.is-visible {
	opacity: 1;
	visibility: visible;
}







/*==========================================================
開発中の仮セクション
==========================================================*/

.arukas-placeholder {
	min-height: 500px;
	padding: 120px 0;
	background: #fff;
	color: #111;
}

.arukas-placeholder__inner {
	width: 1200px;
	max-width: calc(100% - 48px);
	margin: 0 auto;
	font-size: 24px;
	font-weight: 700;
	text-align: center;
}


/*==========================================================
アンカー位置補正
==========================================================*/

.arukas-renewal-page section[id] {
	scroll-margin-top: var(--arukas-header-height);
}



/*==========================================================
HEADER：中間PC
水平ナビを維持しながら横幅を圧縮
==========================================================*/

/*==========================================================
HEADER：中間PC
水平ナビを維持しながら横幅を圧縮
==========================================================*/

@media screen and (max-width: 1450px) {

	.arukas-header__inner {
		max-width: calc(100% - 28px);
	}


	.arukas-header__logos {
		gap: 10px;
	}


	.arukas-header__logo-sakura {
		height: 44px !important;
		max-height: 44px !important;
	}


	.arukas-header__logo-arukas {
		height: 38px !important;
		max-height: 38px !important;
	}


	.arukas-header__menu {
		gap: clamp(
			8px,
			0.65vw,
			12px
		);
	}


	.arukas-header__menu a {
		font-size: 1.3rem;
	}


	.arukas-header__contact-item {
		margin-left: 4px !important;
	}


	.arukas-header__menu .arukas-header__contact {
		gap: 8px;

		padding:
			12px
			16px;

		font-size: 1.3rem;
	}



	/*==========================================================
HERO動画
1488px以下：上下のクロップ量を少し増やす
==========================================================*/


	.arukas-hero__visual {
		aspect-ratio: 1018 / 420;
	}

		/* HERO動画
	   上下のクロップ量を増やす */

	.arukas-hero__main {
		height: calc(58vw * 420 / 1018);
	}

/*==========================================================
HERO左コピー
動画エリアの高さに合わせてコンパクト化
==========================================================*/

.arukas-hero__copy {
	padding:
		2.6rem
		clamp(3.5rem, 4vw, 6rem);
}

.arukas-hero__title {
	font-size: clamp(
		3.6rem,
		3vw,
		4.8rem
	);

	line-height: 1.35;
}

.arukas-hero__subtitle {
	margin-top: 1.6rem;

	font-size: 1.3rem;
	line-height: 1.65;
}




}



/*==========================================================
HEADER：1250px以下
水平ナビ → ハンバーガーメニュー
==========================================================*/

@media screen and (max-width: 1250px) {

	.arukas-header__inner {
		max-width: calc(100% - 32px);
	}


	/*----------------------------------------------
	ハンバーガーボタン
	----------------------------------------------*/

	.arukas-header__menu-button {
		position: relative;

		z-index: 2;

		display: flex;

		flex: 0 0 auto;
		flex-direction: column;

		justify-content: center;

		gap: 6px;

		width: 44px;
		height: 44px;

		margin-left: auto;

		padding: 8px;

		border: 0;

		background: transparent;

		cursor: pointer;
	}


	.arukas-header__menu-button span {
		display: block;

		width: 100%;
		height: 2px;

		background: #222;

		transition:
			transform 0.25s ease,
			opacity 0.25s ease;
	}


	.arukas-header__menu-button[
		aria-expanded="true"
	] span:nth-child(1) {

		transform:
			translateY(8px)
			rotate(45deg);
	}


	.arukas-header__menu-button[
		aria-expanded="true"
	] span:nth-child(2) {

		opacity: 0;
	}


	.arukas-header__menu-button[
		aria-expanded="true"
	] span:nth-child(3) {

		transform:
			translateY(-8px)
			rotate(-45deg);
	}


/*----------------------------------------------
ナビ本体
----------------------------------------------*/

.arukas-header__nav {
	position: absolute;

	top: 100%;
	right: 0;
	left: 0;

	display: none;

	width: 100%;
	height: calc(
		100dvh
		- var(--arukas-header-height)
	);

	margin: 0;

	padding:
		2.8rem
		2.4rem
		4rem;

	overflow-y: auto;

	background:
		rgba(
			28,
			28,
			28,
			0.99
		);

	color: #fff;

	overscroll-behavior: contain;
}


.arukas-header__nav.is-open {
	display: block;
}


/*----------------------------------------------
メニュー
----------------------------------------------*/

.arukas-header__menu {
	display: flex;

	flex-direction: column;
	align-items: stretch;

	gap: 0;

	width: 100%;

	margin: 0;
	padding: 0;
}


.arukas-header__menu > li {
	width: 100%;

	margin: 0;
	padding: 0;
}


.arukas-header__menu a {
	display: block;

	width: 100%;

	padding:
		1.6rem
		0.4rem;

	border-bottom:
		1px
		solid
		rgba(
			255,
			255,
			255,
			0.16
		);

	color: #fff;

	font-size: 1.6rem;
	line-height: 1.5;

	text-decoration: none;
}


/* PC用hover下線は解除 */
.arukas-header__menu
> li:not(.arukas-header__contact-item)
> a::after {
	display: none;
}


/*----------------------------------------------
お問い合わせ
----------------------------------------------*/

.arukas-header__contact-item {
	margin:
		2.4rem
		0
		0 !important;
}


.arukas-header__menu
.arukas-header__contact {
	display: flex;

	justify-content: center;
	align-items: center;

	width: 100%;

	padding:
		1.6rem
		1.8rem;

	border: 0;
	border-radius: 999px;

	color: #fff;

	font-size: 1.5rem;

	text-align: center;
}



	.arukas-hero__main {
		height: calc(58vw * 410 / 1018);
	}

	.arukas-hero__visual {
		aspect-ratio: 1018 / 410;
	}








}



/*==========================================================
HERO：小さめPC
==========================================================*/

@media screen and (max-width: 1100px) {

	.arukas-hero__copy {
		padding:
			2rem
			2.8rem;
	}

	.arukas-hero__title {
		font-size: clamp(
			3.2rem,
			3.6vw,
			4rem
		);

		line-height: 1.3;
	}

	.arukas-hero__subtitle {
		margin-top: 1.2rem;

		font-size: 1.2rem;
		line-height: 1.55;
	}


}



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

@media screen and (max-width: 960px) {

	:root {
		--arukas-header-height: 68px;
		--arukas-hero-bottom-height: 210px;
	}


	/*======================================================
	HERO
	======================================================*/

	.arukas-hero {
		position: relative;
		width: 100%;
		min-height: 0;
		padding-top: var(--arukas-header-height);
		overflow: hidden;
		background: #fff;
		color: #111;
	}


	/*----------------------------------------------
	左右比率
	----------------------------------------------*/

	.arukas-hero__main {
		grid-template-columns:
			44%
			56%;

		height: calc(56vw * 410 / 1018);
	}


	/*----------------------------------------------
	左側コピー
	----------------------------------------------*/

	.arukas-hero__copy {
		padding:
			1.5rem
			2.4rem;
	}


	.arukas-hero__title {
		font-size: clamp(
			2.9rem,
			3.7vw,
			3.4rem
		);

		line-height: 1.28;
		letter-spacing: 0.02em;
	}


	.arukas-hero__subtitle {
		margin-top: 1rem;

		font-size: 1.15rem;
		line-height: 1.45;
	}


	.arukas-hero__subtitle br {
		display: none;
	}


	/*----------------------------------------------
	HERO下部CTA
	----------------------------------------------*/

	.arukas-hero__bottom-inner {
		max-width: calc(100% - 36px);
	}


	.arukas-hero__bottom-title,
	.arukas-hero__bottom-text {
		font-size: 1.9rem;
	}


	.arukas-hero__bottom-figure {
		width: 130px;
		height: 150px;

		opacity: 0.35;
	}

}



/*==========================================================
HERO：小さめタブレット
760px以下 → 縦積み
==========================================================*/

@media screen and (max-width: 760px) {

	.arukas-hero {
		min-height: 0;
	}


	/*----------------------------------------------
	コピー + 動画を縦積み
	----------------------------------------------*/

	.arukas-hero__main {
		display: grid;

		grid-template-columns: 1fr;

		grid-template-rows:
			auto
			auto;

		width: 100%;

		height: auto;
		min-height: 0;
	}


	/*----------------------------------------------
	コピー
	----------------------------------------------*/

	.arukas-hero__copy {
		width: 100%;

		padding:
			4rem
			3rem;
	}


	.arukas-hero__title {
		font-size: 3.6rem;

		line-height: 1.45;

		letter-spacing: 0.03em;
	}


	.arukas-hero__subtitle {
		margin-top: 2rem;

		font-size: 1.3rem;

		line-height: 1.8;
	}


	.arukas-hero__subtitle br {
		display: none;
	}


	/*----------------------------------------------
	動画
	----------------------------------------------*/

.arukas-hero__visual {
	width: 100%;
	height: auto;

	aspect-ratio: 1018 / 410;
}

}



/*==========================================================
スマートフォン
640px以下
==========================================================*/

@media screen and (max-width: 640px) {

	:root {
		--arukas-hero-bottom-height: 230px;
	}


	/*======================================================
	HEADER
	======================================================*/

	.arukas-header__inner {
		max-width: calc(100% - 22px);
	}


	.arukas-header__logos {
		gap: 8px;
	}


	.arukas-header__logo-sakura {
		height: 38px !important;
		max-height: 38px !important;
	}


	.arukas-header__logo-arukas {
		height: 34px !important;
		max-height: 34px !important;
	}


	/*======================================================
	HERO
	======================================================*/

	.arukas-hero {
		min-height: 0;
	}


	.arukas-hero__copy {
		padding:
			3.5rem
			2rem;
	}


	.arukas-hero__title {
		font-size: clamp(
			2.7rem,
			8.5vw,
			3.8rem
		);

		line-height: 1.5;

		letter-spacing: 0.02em;
	}


	.arukas-hero__subtitle {
		margin-top: 1.8rem;

		font-size: 1.4rem;

		line-height: 1.8;
	}


	/*----------------------------------------------
	動画
	----------------------------------------------*/
.arukas-hero__visual {
	width: 100%;

	aspect-ratio: 1018 / 460;
}



	/*----------------------------------------------
	HERO下部CTA
	----------------------------------------------*/

	.arukas-hero__bottom-inner {
		max-width: calc(100% - 28px);
	}


	.arukas-hero__bottom-copy {
		width: 100%;
	}


	.arukas-hero__bottom-title,
	.arukas-hero__bottom-text {

		font-size: 1.6rem;

		line-height: 1.7;
	}


	.arukas-hero__bottom-text {
		margin-bottom: 16px;
	}


	.arukas-hero__bottom-button {
		width: 100%;

		min-width: 0;
		max-width: 340px;

		padding:
			13px
			18px;

		font-size: 1.3rem;
	}


	.arukas-hero__bottom-figure {
		display: none;
	}


	/*======================================================
	PLACEHOLDER
	======================================================*/

	.arukas-placeholder {
		min-height: 350px;

		padding:
			80px
			0;
	}


	.arukas-placeholder__inner {
		max-width: calc(100% - 30px);

		font-size: 1.8rem;
	}

}






















/*==========================================================
共通セクション見出し
==========================================================*/

.arukas-section-heading {
	display: flex;
	align-items: baseline;
	gap: 28px;
	margin: 0 0 65px;
}

.arukas-section-heading__en {
	margin: 0;
	color: var(--arukas-green);
	font-size: clamp(52px, 5vw, 82px);
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.12em;
}

.arukas-section-heading__jp {
	margin: 0;
	color: #4a4a4a;
	font-size: clamp(27px, 2.6vw, 43px);
	font-weight: 700;
	line-height: 1.4;
}



/*==========================================================
CASE
==========================================================*/

.arukas-case {
	padding: 78px 0 105px;
	background: #f5f5f5;
	color: #111;
}

.arukas-case__inner {
	width: 1420px;
	max-width: calc(100% - 110px);
	margin: 0 auto;
}

.arukas-case__list {
	display: grid;
	grid-template-columns:
		repeat(3, minmax(0, 1fr));
	column-gap: 52px;
	row-gap: 62px;
	align-items: start;
}

.arukas-case-card {
	min-width: 0;
}


/*==========================================================
CASE：カテゴリ見出し
==========================================================*/

.arukas-case-card__category {
	display: flex;
	align-items: center;
	gap: 13px;
	min-height: 31px;
	margin: 0 0 15px;
	color: #333;
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1.35;
}

.arukas-case-card__category-line {
	display: block;
	flex: 0 0 auto;
	width: 6px;
	height: 31px;
	background: var(--arukas-green);
}


/*==========================================================
CASE：動画サムネイル
==========================================================*/

.arukas-case-card__movie {
	position: relative;
	display: block;
	width: 100%;
	margin: 0;
	padding: 0;
	overflow: hidden;
	border: 0;
	background: #ccc;
	aspect-ratio: 16 / 8.8;
	cursor: pointer;
}

.arukas-case-card__movie img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.arukas-case-card__movie:hover img,
.arukas-case-card__movie:focus-visible img {
	transform: scale(1.025);
}

.arukas-case-card__movie:focus-visible {
	outline: 3px solid #278032;
	outline-offset: 3px;
}


/*==========================================================
CASE：再生ボタン
==========================================================*/

.arukas-case-card__play {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 42px;
	height: 30px;
	border-radius: 6px;
	background: #e83434;
	transform: translate(-50%, -50%);
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.arukas-case-card__play::before {
	position: absolute;
	top: 50%;
	left: 52%;
	border-top: 6px solid transparent;
	border-bottom: 6px solid transparent;
	border-left: 10px solid #fff;
	content: "";
	transform: translate(-50%, -50%);
}


/*==========================================================
CASE：会社名
==========================================================*/

.arukas-case-card__client {
	min-height: 0;
	margin: 16px 0 5px;
	color: var(--arukas-green-dark2);
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.45;
}


/*==========================================================
CASE：案件名
==========================================================*/

.arukas-case-card__project {
	min-height: 0;
	margin: 0 0 18px;
	color: #111;
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.4;
}


/*==========================================================
CASE：説明文
==========================================================*/

.arukas-case-card__description {
	margin: 0;
	color: #222;
	font-size: 13px;
	line-height: 1.75;
}











/*==========================================================
動画モーダル
==========================================================*/

body.arukas-renewal-page.is-modal-open {
	overflow: hidden;
}

.arukas-movie-modal {
	position: fixed;
	inset: 0;
	z-index: 3000;
	display: none;
	justify-content: center;
	align-items: center;
	padding: 40px;
}

.arukas-movie-modal.is-open {
	display: flex;
}

.arukas-movie-modal__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.82);
}

.arukas-movie-modal__dialog {
	position: relative;
	z-index: 1;
	width: 1000px;
	max-width: 94vw;
}

.arukas-movie-modal__frame {
	position: relative;
	width: 100%;
	overflow: hidden;
	background: #000;
	aspect-ratio: 16 / 9;
}

.arukas-movie-modal__frame iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.arukas-movie-modal__close {
	position: absolute;
	top: -48px;
	right: 0;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.arukas-movie-modal__close span {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 34px;
	height: 2px;
	background: #fff;
}

.arukas-movie-modal__close span:first-child {
	transform:
		translate(-50%, -50%)
		rotate(45deg);
}

.arukas-movie-modal__close span:last-child {
	transform:
		translate(-50%, -50%)
		rotate(-45deg);
}

/*==========================================================
CASE：問い合わせ
==========================================================*/

.arukas-case-card__media-wrap {
	position: relative;
}


/*
 * 問い合わせリンク
 * 見た目より大きめのクリック領域を確保
 */
.arukas-case-card__contact {
	position: absolute;
	inset: 0;
	z-index: 10;

	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;

	width: 100%;
	height: 100%;
	padding: 0;

	color: #fff;
	text-decoration: none;

	cursor: pointer;
}


/*
 * 封筒
 */
.arukas-case-card__contact-icon {
	display: block;
	flex: 0 0 54px;

	width: 54px;
	height: 38px;
}

.arukas-case-card__contact-icon svg {
	display: block;

	width: 54px;
	height: 38px;
}


/*
 * テキスト
 */
.arukas-case-card__contact-text {
	color: #fff;

	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.15;

	white-space: nowrap;

	text-shadow:
		0 1px 3px rgba(0, 0, 0, 0.9);
}


@media (hover: hover) and (pointer: fine) {

	.arukas-case-card__contact:hover {
		opacity: 0.85;
	}

}



/*==========================================================
CASE：タブレット
==========================================================*/

@media screen and (max-width: 960px) {

	.arukas-case {
		padding: 75px 0 90px;
	}

	.arukas-case__inner {
		max-width: calc(100% - 48px);
	}

	.arukas-section-heading {
		gap: 20px;
		margin-bottom: 50px;
	}

	.arukas-case__list {
		grid-template-columns:
			repeat(2, minmax(0, 1fr));
		gap: 55px 35px;
	}

	.arukas-case-card__contact {
		inset: 0;

		width: 100%;
		height: 100%;
		min-height: 0;

		padding: 0;

		display: flex;
		justify-content: center;
		align-items: center;

		gap: 8px;
	}

	.arukas-case-card__contact-icon {
		flex: 0 0 48px;

		width: 48px;
		height: 34px;
	}

	.arukas-case-card__contact-icon svg {
		display: block;

		width: 48px;
		height: 34px;
	}

	.arukas-case-card__contact-text {
		font-size: 1.4rem;
	}


}


/*==========================================================
CASE：スマートフォン
==========================================================*/

@media screen and (max-width: 640px) {

	.arukas-case {
		padding: 60px 0 75px;
	}

	.arukas-case__inner {
		max-width: calc(100% - 30px);
	}

	.arukas-section-heading {
		display: block;
		margin-bottom: 40px;
	}

	.arukas-section-heading__en {
		font-size: 48px;
	}

	.arukas-section-heading__jp {
		margin-top: 12px;
		font-size: 25px;
	}

	.arukas-case__list {
		grid-template-columns: 1fr;
		row-gap: 48px;
	}

	.arukas-case-card__category {
		margin-bottom: 14px;
		font-size: 21px;
	}

	.arukas-case-card__category-line {
		width: 6px;
		height: 30px;
	}

	.arukas-case-card__client {
		min-height: 0;
		font-size: 18px;
	}

	.arukas-case-card__project {
		min-height: 0;
	}

	.arukas-movie-modal {
		padding: 20px;
	}


/*==========================================================
CASE：問い合わせ SP
==========================================================*/


	.arukas-case-card__contact-icon {
		flex-basis: 48px;
		width: 48px;
		height: 34px;
	}

	.arukas-case-card__contact-icon svg {
		width: 48px;
		height: 34px;
	}

	.arukas-case-card__contact-text {
		font-size: 1.4rem;
	}




}


/*==========================================================
制作実績カテゴリナビ
==========================================================*/

.arukas-works-nav {
	padding: 70px 0 30px;
	background: #f5f5f5;
	color: #111;
}

.arukas-works-nav__inner {
	box-sizing: border-box;
	width: 1400px;
	max-width: calc(100% - 80px);
	margin: 0 auto;
	padding: 48px 32px 55px;
	border-radius: 20px;
	background: #fff;
}

.arukas-works-nav__title {
	margin: 0 0 48px;
	color: #555;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.5;
	text-align: center;
}

.arukas-works-nav__menu {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 16px;
}

.arukas-works-nav__item {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	box-sizing: border-box;
	min-width: 0;
	min-height: 92px;
	padding: 16px 24px;
	border: 1px solid var(--arukas-green);
	border-radius: 999px;
	background: #fff;
	color: #111;
	text-decoration: none;
	transition:
		background-color 0.25s ease,
		color 0.25s ease,
		transform 0.25s ease,
		box-shadow 0.25s ease;
}

.arukas-works-nav__item:hover,
.arukas-works-nav__item:focus-visible {
	background: var(--arukas-green);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 7px 18px rgba(0, 0, 0, 0.12);
}

.arukas-works-nav__item:focus-visible {
	outline: 3px solid rgba(69, 184, 88, 0.25);
	outline-offset: 4px;
}

.arukas-works-nav__copy {
	display: flex;
	flex: 1 1 auto;
	flex-direction: column;
	min-width: 0;
}

.arukas-works-nav__lead {
	margin: 0 0 3px;
	color: #444;
	font-size: 12px;
	font-weight: 400;
	line-height: 1.4;
	white-space: nowrap;
	transition: color 0.25s ease;
}

.arukas-works-nav__name {
	color: var(--arukas-green-dark2);
	font-size: 19px;
	font-weight: 700;
	line-height: 1.35;
	letter-spacing: 0.04em;
	white-space: nowrap;
	transition: color 0.25s ease;
}

.arukas-works-nav__item:hover
.arukas-works-nav__lead,
.arukas-works-nav__item:focus-visible
.arukas-works-nav__lead,
.arukas-works-nav__item:hover
.arukas-works-nav__name,
.arukas-works-nav__item:focus-visible
.arukas-works-nav__name {
	color: #fff;
}


/*==========================================================
制作実績カテゴリナビ：下向き矢印
==========================================================*/

.arukas-works-nav__arrow {
	position: relative;
	display: block;
	flex: 0 0 auto;
	width: 18px;
	height: 18px;
}

.arukas-works-nav__arrow::before,
.arukas-works-nav__arrow::after {
	position: absolute;
	top: 7px;
	width: 10px;
	height: 2px;
	border-radius: 999px;
	background: var(--arukas-green);
	content: "";
	transition: background-color 0.25s ease;
}

.arukas-works-nav__arrow::before {
	left: 1px;
	transform: rotate(45deg);
}

.arukas-works-nav__arrow::after {
	right: 1px;
	transform: rotate(-45deg);
}

.arukas-works-nav__item:hover
.arukas-works-nav__arrow::before,
.arukas-works-nav__item:hover
.arukas-works-nav__arrow::after,
.arukas-works-nav__item:focus-visible
.arukas-works-nav__arrow::before,
.arukas-works-nav__item:focus-visible
.arukas-works-nav__arrow::after {
	background: #fff;
}


/*==========================================================
制作実績カテゴリナビ：タブレット
==========================================================*/

@media screen and (max-width: 1100px) {

	.arukas-works-nav {
		padding: 60px 0 75px;
	}

	.arukas-works-nav__inner {
		max-width: calc(100% - 48px);
		padding: 42px 28px 48px;
	}

	.arukas-works-nav__menu {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 16px;
	}

	.arukas-works-nav__lead {
		white-space: normal;
	}

}


/*==========================================================
制作実績カテゴリナビ：スマートフォン
==========================================================*/

@media screen and (max-width: 640px) {

	.arukas-works-nav {
		padding: 45px 0 60px;
	}

	.arukas-works-nav__inner {
		max-width: calc(100% - 30px);
		padding: 35px 18px 38px;
		border-radius: 14px;
	}

	.arukas-works-nav__title {
		margin-bottom: 28px;
		font-size: 17px;
	}

	.arukas-works-nav__menu {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.arukas-works-nav__item {
		min-height: 76px;
		padding: 13px 22px;
	}

	.arukas-works-nav__lead {
		font-size: 11px;
		white-space: normal;
	}

	.arukas-works-nav__name {
		font-size: 17px;
		white-space: normal;
	}

}

/*==========================================================
アンカー移動位置
==========================================================*/

#works-movie-technique,
#works-business-result,
#works-others {
	scroll-margin-top:
		calc(
			var(--arukas-header-height)
			+ 24px
		);
}


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

@media screen and (max-width: 960px) {

	.arukas-works-nav {
		padding: 65px 0 85px;
	}

	.arukas-works-nav__inner {
		max-width: calc(100% - 48px);
	}

	.arukas-works-nav__menu {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.arukas-works-nav__item {
		min-height: 95px;
		padding: 18px 30px;
	}

	.arukas-works-nav__lead {
		font-size: 13px;
	}

	.arukas-works-nav__name {
		font-size: 19px;
	}

}


/*==========================================================
スマートフォン
==========================================================*/

@media screen and (max-width: 640px) {

	.arukas-works-nav {
		padding: 55px 0 70px;
	}

	.arukas-works-nav__inner {
		max-width: calc(100% - 30px);
	}

	.arukas-works-nav__title {
		margin-bottom: 35px;
		font-size: 24px;
	}

	.arukas-works-nav__menu {
		gap: 18px;
	}

	.arukas-works-nav__item {
		min-height: 88px;
		padding: 17px 24px;
		border-radius: 30px;
	}

	.arukas-works-nav__lead {
		font-size: 12px;
	}

	.arukas-works-nav__name {
		font-size: 16px;
	}

	.arukas-works-nav__arrow {
		width: 18px;
		height: 18px;
	}

	.arukas-works-nav__arrow::before,
	.arukas-works-nav__arrow::after {
		top: 7px;
		width: 11px;
		height: 2px;
	}

}

/*==========================================================
映像制作のお困りごと
==========================================================*/

.arukas-problems {
	position: relative;
	overflow: visible;
	/*background: #fff;*/
	color: #333;
}

.arukas-problems__upper {
	position: relative;
	padding: 52px 0 0;
	background: #f5f5f5;
}

.arukas-problems__inner {
	width: 1200px;
	max-width: calc(100% - 80px);
	margin: 0 auto;
}


/*==========================================================
見出し
==========================================================*/

.arukas-problems__heading {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 24px;
	margin: 0 auto 28px;
	text-align: center;
}

.arukas-problems__title {
	margin: 0;
	color: #3f3f3f;
	font-size: clamp(22px, 2vw, 32px);
	font-weight: 700;
	line-height: 1.28;
	letter-spacing: 0.02em;
}

.arukas-problems__title-top,
.arukas-problems__title-bottom {
	display: block;
}

.arukas-problems__title-bottom {
	color: var(--arukas-green-dark);
}

.arukas-problems__heading-line {
	display: block;
	flex: 0 0 auto;
	width: 5px;
	height: 65px;
	background: var(--arukas-green-dark);
}

.arukas-problems__heading-line--left {
	transform: rotate(-38deg);
}

.arukas-problems__heading-line--right {
	transform: rotate(38deg);
}


/*==========================================================
吹き出し・人物
==========================================================*/

.arukas-problems__content {
	display: grid;
	grid-template-columns:
		minmax(260px, 1fr)
		minmax(380px, 500px)
		minmax(260px, 1fr);
	align-items: center;
	gap: 50px;
	min-height: 470px;
}

.arukas-problems__side {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 32px;
}

.arukas-problems__person {
	align-self: end;
	position: relative;
	z-index: 2;
	text-align: center;
}

.arukas-problems__person img {
	display: block;
	width: 100%;
	max-width: 550px;
	max-height: 590px;
	margin: 0 auto;
	object-fit: contain;
	object-position: center bottom;
}


/*==========================================================
吹き出し
==========================================================*/

.arukas-problems__bubble {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	min-height: 64px;
	padding: 13px 24px;
	border-radius: 8px;
	background: #fff;
	box-shadow:
		0 2px 4px rgba(0, 0, 0, 0.12),
		0 5px 12px rgba(0, 0, 0, 0.06);
}

.arukas-problems__bubble p {
	margin: 0;
	color: var(--arukas-green-dark);
	font-size: clamp(1.2rem, 0.95vw, 1.6rem);
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
}

.arukas-problems__bubble::before,
.arukas-problems__bubble::after {
	position: absolute;
	border-radius: 50%;
	background: #fff;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
	content: "";
}

.arukas-problems__bubble--left::before {
	right: -18px;
	bottom: -6px;
	width: 14px;
	height: 14px;
}

.arukas-problems__bubble--left::after {
	right: -30px;
	bottom: -14px;
	width: 7px;
	height: 7px;
}

.arukas-problems__bubble--right::before {
	left: -18px;
	bottom: -6px;
	width: 14px;
	height: 14px;
}

.arukas-problems__bubble--right::after {
	left: -30px;
	bottom: -14px;
	width: 7px;
	height: 7px;
}

/*==========================================================
下部グリーン帯
==========================================================*/

.arukas-problems__solution {
	position: relative;
	z-index: 3;
	padding: 50px 0 42px;
	background: linear-gradient(
		90deg,
		#60AD5E 0%,
		#60AD5E 18%,
		#437A42 58%,
		#437A42 100%
	);
	color: #fff;
	text-align: center;
}


/*==========================================================
中央ラベル
==========================================================*/

.arukas-problems__label-wrap {
	position: absolute;
	top: -31px;
	left: 0;
	z-index: 4;
	display: flex;
	justify-content: center;
	width: 100%;
	pointer-events: none;
}

.arukas-problems__label {
	position: relative;
	width: 470px;
	max-width: calc(100% - 40px);
	padding: 20px 36px;
	border: 3px solid #287f35;
	border-radius: 6px;
	background: #fff;
	text-align: center;
}

.arukas-problems__label p {
	margin: 0;
	color: #287f35;
	font-size: clamp(22px, 1.7vw, 30px);
	font-weight: 700;
	line-height: 1.4;
}


/*==========================================================
解決コピー
==========================================================*/

.arukas-problems__solution-inner {
	width: 1000px;
	max-width: calc(100% - 50px);
	margin: 0 auto;
}

.arukas-problems__solution-text {
	margin: 8px 0 0;
	color: #fff;
	font-size: clamp(1.7rem, 1.55vw, 2.4rem);
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.02em;
}


/*==========================================================
下向き三角
==========================================================*/

.arukas-problems__solution::after {
	position: absolute;
	top: 100%;
	left: 50%;
	z-index: 4;
	width: 110px;
	height: 42px;
	background: linear-gradient(
		90deg,
		#4b8548 0%,
		#437A42 100%
	);
	content: "";
	clip-path: polygon(
		0 0,
		100% 0,
		50% 100%
	);
	transform: translateX(-50%);
}


/*==========================================================
お困りごと：下部CTA
==========================================================*/

.arukas-problems__cta {
	position: relative;
	z-index: 1;
	padding: 72px 0 58px;
	/*background: #fff;*/
	text-align: center;
}

.arukas-problems__cta-lead {
	margin: 0 0 3px;
	color: #111;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.5;
}

.arukas-problems__cta-button {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	gap: 14px;
	
	padding: 14px 28px;
	border-radius: 999px;
	background: var(--arukas-accent);
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.4;
	text-decoration: none;
	transition:
		background-color 0.25s ease,
		transform 0.25s ease;
}

.arukas-problems__cta-button:hover,
.arukas-problems__cta-button:focus-visible {
	background: #c94f43;
	transform: translateY(-2px);
}

.arukas-problems__cta-arrow {
	font-size: 20px;
	line-height: 1;
	transition: transform 0.25s ease;
}

.arukas-problems__cta-button:hover
.arukas-problems__cta-arrow,
.arukas-problems__cta-button:focus-visible
.arukas-problems__cta-arrow {
	transform: translateX(3px);
}

.arukas-renewal-page .arukas-problems__cta-button,
.arukas-renewal-page .arukas-problems__cta-button:hover,
.arukas-renewal-page .arukas-problems__cta-button:focus-visible {
	color: #fff;
}


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

@media screen and (max-width: 960px) {

	.arukas-problems__inner {
		max-width: calc(100% - 48px);
	}

	.arukas-problems__content {
		grid-template-columns:
			minmax(190px, 1fr)
			minmax(240px, 300px)
			minmax(190px, 1fr);
		gap: 30px;
	}

	.arukas-problems__side {
		gap: 24px;
	}

	.arukas-problems__person img {
		max-width: 280px;
	}

}


/*==========================================================
スマートフォン
==========================================================*/

/*==========================================================
スマートフォン・縦並び
==========================================================*/

@media screen and (max-width: 760px) {

	.arukas-problems__upper {
		padding: 45px 0 25px;
	}

	.arukas-problems__inner {
		max-width: calc(100% - 30px);
	}

	.arukas-problems__heading {
		gap: 14px;
		margin-bottom: 30px;
	}

	.arukas-problems__heading-line {
		width: 4px;
		height: 48px;
	}

	.arukas-problems__title {
		font-size: 21px;
	}

	.arukas-problems__content {
		display: flex;
		flex-direction: column;
		gap: 20px;
		min-height: 0;
	}





/*----------------------------------------------
吹き出しを1件ずつ並べ替える
----------------------------------------------*/

.arukas-problems__side {
	display: contents;
}


/* 1：急に映像担当にされて不安だ */
.arukas-problems__side--left
.arukas-problems__bubble:nth-child(1) {
	order: 1;
}


/* 2：映像制作っていくらかかるの？ */
.arukas-problems__side--right
.arukas-problems__bubble:nth-child(1) {
	order: 2;
}


/* 3：どんな映像を作れば効果が出るのかわからない */
.arukas-problems__side--left
.arukas-problems__bubble:nth-child(2) {
	order: 3;
}


/* 4：映像は作ったけど問い合わせや売上に繋がらない */
.arukas-problems__side--right
.arukas-problems__bubble:nth-child(2) {
	order: 4;
}


/* 5：アイデアがなくて途方に暮れている */
.arukas-problems__side--left
.arukas-problems__bubble:nth-child(3) {
	order: 5;
}


/* 6：人物 */
.arukas-problems__person {
	order: 6;
	width: 75%;
	margin: 10px auto 0;
}

.arukas-problems__person img {
	max-width: 240px;
}





	.arukas-problems__person img {
		max-width: 240px;
	}

.arukas-problems__bubble {
	width: calc(100% - 40px);
	min-width: 0;
	max-width: 620px;
	min-height: 70px;
	margin-right: auto;
	margin-left: auto;
	padding: 14px 20px;
}

/*----------------------------------------------
スマホでも吹き出しの丸を残す
----------------------------------------------*/

.arukas-problems__bubble::before,
.arukas-problems__bubble::after {
	display: block;
}


/* 左側に配置する吹き出し */
.arukas-problems__bubble--right::before {
	left: -12px;
	right: auto;
	bottom: -6px;

	width: 14px;
	height: 14px;
}

.arukas-problems__bubble--right::after {
	left: -22px;
	right: auto;
	bottom: -14px;

	width: 7px;
	height: 7px;
}


/* 右側に配置する吹き出し */
.arukas-problems__bubble--left::before {
	right: -12px;
	left: auto;
	bottom: -6px;

	width: 14px;
	height: 14px;
}

.arukas-problems__bubble--left::after {
	right: -22px;
	left: auto;
	bottom: -14px;

	width: 7px;
	height: 7px;
}

.arukas-problems__label {
	top: auto;
	width: 240px;
	padding: 10px 18px;
}

	.arukas-problems__label p {
		font-size: 16px;
	}

	.arukas-problems__solution {
		min-height: 110px;
		padding: 35px 0 30px;
	}

	.arukas-problems__solution-text {
		margin-top: 10px;
		font-size: 16px;
	}

	.arukas-problems__solution::after {
		width: 76px;
		height: 30px;
	}

	.arukas-problems__cta {
		padding: 55px 15px 45px;
	}

	.arukas-problems__cta-lead {
		font-size: 12px;
	}

	.arukas-problems__cta-button {
		width: 100%;
		min-width: 0;
		max-width: 340px;
		padding: 13px 20px;
		font-size: 13px;
	}

}





/*==========================================================
ABOUT US
==========================================================*/

.arukas-about {
	position: relative;
	padding: 80px 0 0;
	overflow: visible;
	color: #333;
}

@media screen and (max-width: 600px) {

.arukas-about {

	padding: 40px 0 0;
	
}
}

.arukas-about__inner {
	width: 1400px;
	max-width: calc(100% - 80px);
	margin: 0 auto;
}


/*==========================================================
ABOUT US：見出し
==========================================================*/

.arukas-about__heading {
	display: flex;
	align-items: baseline;
	gap: 32px;
	margin: 0 0 28px;
}

.arukas-about__heading-en {
	margin: 0;
	color: var(--arukas-green);
	font-size: clamp(
		52px,
		5vw,
		82px
	);
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.12em;
}

.arukas-about__heading-jp {
	margin: 0;
	color: #555;
	font-size: clamp(
		27px,
		2.6vw,
		43px
	);
	font-weight: 700;
	line-height: 1.4;
}


/*==========================================================
ABOUT US：説明文
==========================================================*/

.arukas-about__description {
	max-width: 1180px;
	margin: 0;
	color: #333;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.9;
}


/*==========================================================
ABOUT US：メンバー写真エリア
==========================================================*/

.arukas-about__members {
	position: relative;
	margin-top: 42px;
}

.arukas-about__member-photos {
	position: relative;
	width: 1120px;
	max-width: 100%;
	height: 520px;
	margin: 0 auto;
}


/*==========================================================
円形写真 共通
==========================================================*/

.arukas-about__member-photo {
	position: absolute;
	z-index: 2;
	width: 155px;
	height: 155px;
	overflow: hidden;
	border-radius: 50%;
	background: #f3f3f3;
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.14);
}

.arukas-about__member-photo img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}


/*==========================================================
6人配置
==========================================================*/

.arukas-about__member-photo--1 {
	top: 0;
	left: 275px;
}

.arukas-about__member-photo--2 {
	top: 0;
	right: 275px;
}

.arukas-about__member-photo--3 {
	top: 175px;
	left: 70px;
}

.arukas-about__member-photo--4 {
	top: 175px;
	right: 70px;
}

.arukas-about__member-photo--5 {
	top: 350px;
	left: 300px;
}

.arukas-about__member-photo--6 {
	top: 350px;
	right: 300px;
}




/*==========================================================
中央メッセージ
==========================================================*/

.arukas-about__message {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 390px;
	min-height: 100px;
	padding: 14px 25px;
	background: var(--arukas-green);
	color: #fff;
	text-align: center;
	transform: translate(-50%, -50%);
}


.arukas-about__message-main {
	margin: 0;
	color: #fff;
	font-size: 30px;
	font-weight: 700;
	line-height: 1.2;
}

.arukas-about__message-sub {
	margin: 3px 0 0;
	color: #fff;
	font-size: 10px;
	font-weight: 700;
	line-height: 1.4;
}


/*==========================================================
Slick dots
==========================================================*/

.arukas-about__skills .slick-dots {
	position: static;
	display: flex !important;
	justify-content: center;
	align-items: center;
	gap: 8px;
	margin: 15px 0 0;
	padding: 0;
	list-style: none;
}

.arukas-about__skills .slick-dots li {
	width: 8px;
	height: 8px;
	margin: 0;
}

.arukas-about__skills .slick-dots li button {
	width: 8px;
	height: 8px;
	padding: 0;
	border: 0;
	background: transparent;
	font-size: 0;
	line-height: 0;
}

.arukas-about__skills .slick-dots li button::before {
	position: static;
	display: block;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: #ccc;
	content: "";
	opacity: 1;
}

.arukas-about__skills .slick-dots li.slick-active button::before {
	background: var(--arukas-green-dark2);
}








/*==========================================================
ABOUT US：メンバー写真
小さめPC・タブレット
==========================================================*/

@media screen and (max-width: 1100px) {

	.arukas-about__member-photos {
		width: 100%;
		max-width: 900px;
		height: 470px;
	}


	/*======================================================
	円形写真
	======================================================*/

	.arukas-about__member-photo {
		width: 135px;
		height: 135px;
	}


	/*======================================================
	上段
	======================================================*/

	.arukas-about__member-photo--1 {
		top: 0;
		left: 23%;
	}

	.arukas-about__member-photo--2 {
		top: 0;
		right: 23%;
	}


	/*======================================================
	中段
	======================================================*/

	.arukas-about__member-photo--3 {
		top: 155px;
		left: 3%;
	}

	.arukas-about__member-photo--4 {
		top: 155px;
		right: 3%;
	}


	/*======================================================
	下段
	======================================================*/

	.arukas-about__member-photo--5 {
		top: 310px;
		left: 23%;
	}

	.arukas-about__member-photo--6 {
		top: 310px;
		right: 23%;
	}


	/*======================================================
	中央メッセージ
	======================================================*/

	.arukas-about__message {
		width: 350px;
		min-height: 92px;
		padding: 12px 20px;
	}

	.arukas-about__message-main {
		font-size: 2.6rem;
	}

	.arukas-about__message-sub {
		font-size: 0.9rem;
	}

}



/*==========================================================
ABOUT US：メンバー写真
スマートフォン
==========================================================*/

@media screen and (max-width: 640px) {



	.arukas-about__heading {
		display: block;
		margin-bottom: 24px;
	}

	.arukas-about__heading-en {
		font-size: 4.2rem;
		line-height: 1;
		letter-spacing: 0.12em;
		white-space: nowrap;
	}

	.arukas-about__heading-jp {
		margin-top: 8px;
		font-size: 2.2rem;
		line-height: 1.4;
		white-space: nowrap;
	}	

	.arukas-about__members {
		margin-top: 45px;
	}


	.arukas-about__member-photos {
		position: relative;
		width: 100%;
		max-width: 100%;
		height: 390px;
		margin: 0 auto;
	}


	/*======================================================
	円形写真
	======================================================*/

	.arukas-about__member-photo {
		width: 72px;
		height: 72px;
	}


	/*======================================================
	上段3人
	======================================================*/

	/* 左 */
	.arukas-about__member-photo--3 {
		top: 35px;
		left: 4%;
	}


	/* 中央 */
	.arukas-about__member-photo--6 {
		top: 0;
		right: auto;
		left: 50%;
		transform: translateX(-50%);
	}


	/* 右 */
	.arukas-about__member-photo--1 {
		top: 35px;
		right: 4%;
		left: auto;
	}


	/*======================================================
	中央メッセージ
	======================================================*/

	.arukas-about__message {
		top: 130px;
		left: 0;
		width: 100%;
		min-height: 72px;
		padding: 10px 12px;
		transform: none;
	}


	.arukas-about__message-main {
		font-size: 2.8rem;
		line-height: 1.15;
		white-space: nowrap;
	}


	.arukas-about__message-sub {
		margin-top: 2px;
		font-size: 0.8rem;
		line-height: 1.3;
		white-space: nowrap;
	}


	/*======================================================
	下段3人
	======================================================*/

	/* 左 */
	.arukas-about__member-photo--4 {
		top: 250px;
		left: 4%;
	}


	/* 中央 */
	.arukas-about__member-photo--5 {
		top: 300px;
		left: 50%;
		transform: translateX(-50%);
	}


	/* 右 */
	.arukas-about__member-photo--2 {
		top: 250px;
		right: 4%;
		left: auto;
	}




}





/*==========================================================
スタッフスキル スライダー
==========================================================*/

.arukas-about__skills-wrap {
	position: relative;

	width: auto;
	max-width: none;

	margin-top: 28px;
	margin-right: 0;
	margin-left: max(
		40px,
		calc((100% - 1400px) / 2 + 80px)
	);

	padding: 42px 55px 58px;

	box-sizing: border-box;
	overflow: visible;

	border-radius: 18px 0 0 18px;

	background: #fff;

	box-shadow:
		0 10px 28px rgba(0, 0, 0, 0.14);
}


/*==========================================================
スライダー本体
==========================================================*/

.arukas-about__skills {
	width: 100%;
	margin: 0;
	padding: 0 35px;
	box-sizing: border-box;
	padding-bottom: 30px;
}

/*==========================================================
スライダー本体
==========================================================*/

.arukas-about__skills {
	width: 100%;
	margin: 0;
	padding: 0 35px 20px;
	box-sizing: border-box;
}


/*==========================================================
Slick適用後
==========================================================*/

.arukas-about__skills .slick-list {
	overflow: hidden;
	padding-bottom: 35px;
}

.arukas-about__skills .slick-track {
	display: flex;
	align-items: flex-start;
}

.arukas-about__skills .slick-slide {
	height: auto;
}

.arukas-about__skills .slick-slide > div {
	height: auto;
}


/*==========================================================
スキルカード
==========================================================*/

.arukas-about__skill-card {
	box-sizing: border-box;

	min-height: 250px;

	margin: 0 12px;
	padding: 28px 25px 26px;

	border-radius: 8px;

	background: var(--arukas-green-dark2);
	color: #fff;

	box-shadow:
		0 3px 5px rgba(0, 0, 0, 0.18);
}

/*==========================================================
スキルカード：ジグザグ配置
==========================================================*/

.arukas-about__skills .slick-slide {
	transform: translateY(0);
}

.arukas-about__skills .slick-slide:nth-child(even) {
	transform: translateY(30px);
}


.arukas-about__skill-title {
	margin: 0 0 24px;

	color: #fff;

	font-size: 2.2rem;
	font-weight: 700;
	line-height: 1.4;

	text-align: center;
}

.arukas-about__skill-text {
	margin: 0;

	color: #fff;

	font-size: 1.6rem;
	font-weight: 400;
	line-height: 1.75;
}


/*==========================================================
Slick 矢印
==========================================================*/

.arukas-about__skills .slick-arrow {
	position: absolute;
	top: 50%;
	z-index: 100;

	display: block;

	width: 52px;
	height: 52px;

	margin: 0;
	padding: 0;

	border: 0;
	border-radius: 50%;

	background: #fff;

	box-shadow:
		0 2px 8px rgba(0, 0, 0, 0.15);

	font-size: 0;
	line-height: 0;

	cursor: pointer;

	transform: translateY(-50%);
}

.arukas-about__skills .slick-prev {
	left: 8px;
}

.arukas-about__skills .slick-next {
	right: 8px;
}


/*==========================================================
Slick標準矢印リセット
==========================================================*/

.arukas-about__skills .slick-prev::before,
.arukas-about__skills .slick-next::before {
	position: absolute;
	top: 50%;
	left: 50%;

	width: 13px;
	height: 13px;

	border: 0;
	border-top: 3px solid var(--arukas-green-dark2);
	border-right: 3px solid var(--arukas-green-dark2);

	background: transparent;

	content: "";

	font-family: inherit;
	font-size: 0;
	line-height: 1;

	opacity: 1;
}

.arukas-about__skills .slick-prev::before {
	transform:
		translate(-35%, -50%)
		rotate(-135deg);
}

.arukas-about__skills .slick-next::before {
	transform:
		translate(-65%, -50%)
		rotate(45deg);
}


/*==========================================================
Slick 矢印：hover / focus
==========================================================*/

.arukas-about__skills .slick-arrow:hover,
.arukas-about__skills .slick-arrow:focus,
.arukas-about__skills .slick-arrow:focus-visible,
.arukas-about__skills .slick-arrow:active {
	background: #fff;
	opacity: 1;
}

.arukas-about__skills .slick-prev:hover::before,
.arukas-about__skills .slick-prev:focus::before,
.arukas-about__skills .slick-prev:focus-visible::before,
.arukas-about__skills .slick-prev:active::before,
.arukas-about__skills .slick-next:hover::before,
.arukas-about__skills .slick-next:focus::before,
.arukas-about__skills .slick-next:focus-visible::before,
.arukas-about__skills .slick-next:active::before {
	border-top-color: var(--arukas-green-dark2);
	border-right-color: var(--arukas-green-dark2);
	opacity: 1;
}


/*==========================================================
disabled
==========================================================*/

.arukas-about__skills .slick-arrow.slick-disabled {
	opacity: 0.4;
	cursor: default;
}







/*==========================================================
下説明
==========================================================*/

.arukas-about__footer {
	width: 1200px;
	max-width: calc(100% - 80px);

	margin: 0 auto;
	padding: 0 0 80px;

	color: #333;

	font-size: 14px;
	line-height: 1.8;

	text-align: center;
}

@media screen and (max-width: 640px) {

	/*======================================================
	スライダー全体
	======================================================*/

	.arukas-about__skills-wrap {
		padding: 0 15px;
	}

.arukas-about__skills {
	box-sizing: border-box;

	width: 100%;

	margin: 0 auto;
	padding: 22px 16px 18px;

	border-radius: 0;

	background: transparent;

	box-shadow: none;
}


	/*======================================================
	Slick
	======================================================*/

	.arukas-about__skills .slick-list {
		overflow: hidden;

		padding: 0;
	}

	.arukas-about__skills .slick-track {
		display: flex;
		align-items: flex-start;
	}

	.arukas-about__skills .slick-slide,
	.arukas-about__skills .slick-slide:nth-child(even) {
		height: auto;

		transform: none;
	}


	/*======================================================
	カード
	======================================================*/

	.arukas-about__skill-card {
		box-sizing: border-box;

		width: auto;
		min-height: 0;

		margin: 0 2px;
		padding: 24px 18px 22px;

		border-radius: 6px;

		background: var(--arukas-green-dark2);
		color: #fff;

		box-shadow:
			0 2px 5px rgba(0, 0, 0, 0.2);
	}


	.arukas-about__skill-title {
		margin: 0 0 20px;

		font-size: 1.7rem;
		line-height: 1.4;

		text-align: center;
	}


	.arukas-about__skill-text {
		font-size: 1.3rem;
		line-height: 1.7;
	}


	/*======================================================
	矢印
	======================================================*/

	.arukas-about__skills .slick-arrow {
		position: absolute;
		top: 50%;
		z-index: 20;

		display: block !important;

		width: 36px;
		height: 36px;

		padding: 0;

		border: 0;
		border-radius: 50%;

		background: #fff;

		box-shadow:
			0 2px 6px rgba(0, 0, 0, 0.14);

		font-size: 0;

		transform: translateY(-50%);
	}


	.arukas-about__skills .slick-prev {
		left: -4px;
	}


	.arukas-about__skills .slick-next {
		right: -4px;
	}


	.arukas-about__skills .slick-prev::before,
	.arukas-about__skills .slick-next::before {
		position: absolute;
		top: 50%;
		left: 50%;

		width: 10px;
		height: 10px;

		border-top: 2px solid var(--arukas-green-dark2);
		border-right: 2px solid var(--arukas-green-dark2);

		content: "";

		opacity: 1;
	}


	.arukas-about__skills .slick-prev::before {
		transform:
			translate(-35%, -50%)
			rotate(-135deg);
	}


	.arukas-about__skills .slick-next::before {
		transform:
			translate(-65%, -50%)
			rotate(45deg);
	}


	/*======================================================
	dots
	======================================================*/

	.arukas-about__skills .slick-dots {
		position: static;

		display: flex;
		justify-content: center;
		gap: 6px;

		margin: 12px 0 0;
		padding: 0;
	}


	.arukas-about__skills .slick-dots li {
		width: 6px;
		height: 6px;

		margin: 0;
	}


	.arukas-about__skills .slick-dots li button {
		width: 6px;
		height: 6px;

		padding: 0;
	}


	.arukas-about__skills .slick-dots li button::before {
		width: 6px;
		height: 6px;

		font-size: 0;

		border-radius: 50%;

		background: #ccc;

		content: "";

		opacity: 1;
	}


	.arukas-about__skills .slick-dots li.slick-active button::before {
		background: #e05a47;
	}

}

/*==========================================================
STUDIO ARUKASの得意なこと
==========================================================*/

.arukas-strength-points {
	padding: 100px 0 115px;
	/*background: #fff;*/
	color: #333;
}

.arukas-strength-points__inner {
	width: 1400px;
	max-width: calc(100% - 80px);
	margin: 0 auto;
}

.arukas-strength-points__title {
	margin: 0 0 65px;
	color: #263229;
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1.5;
	text-align: center;
}

.arukas-strength-points__list {
	width: 1200px;
	max-width: 100%;
	margin: 0 auto;
}

.arukas-strength-points__item {
	display: flex;
	align-items: center;
	gap: 28px;
	box-sizing: border-box;
	min-height: 88px;
	margin-bottom: 20px;
	padding: 18px 55px;
	border-radius: 8px;
	background: #f7f7f7;
	box-shadow: 0 4px 5px rgba(0, 0, 0, 0.18);
}

.arukas-strength-points__item:last-child {
	margin-bottom: 0;
}

.arukas-strength-points__item p {
	margin: 0;
	color: var(--arukas-green-dark2);
	font-size: 2.2rem;
	font-weight: 700;
	line-height: 1.55;
}
/*==========================================================
チェックアイコン
==========================================================*/

.arukas-strength-points__check {
	display: block;
	flex: 0 0 50px;

	width: 50px;
	height: 50px;
}

.arukas-strength-points__check svg {
	display: block;
	width: 100%;
	height: 100%;
}


/*==========================================================
STUDIO ARUKASの得意なこと：タブレット
==========================================================*/

@media screen and (max-width: 960px) {

	.arukas-strength-points {
		padding: 80px 0 90px;
	}

	.arukas-strength-points__inner {
		max-width: calc(100% - 48px);
	}

	.arukas-strength-points__title {
		margin-bottom: 50px;
	}

	.arukas-strength-points__item {
		padding: 18px 35px;
	}

}


/*==========================================================
STUDIO ARUKASの得意なこと：スマートフォン
==========================================================*/

@media screen and (max-width: 640px) {

	.arukas-strength-points {
		padding: 65px 0 75px;
	}

	.arukas-strength-points__inner {
		max-width: calc(100% - 30px);
	}

	.arukas-strength-points__title {
		margin-bottom: 35px;
		font-size: 18px;
	}

	.arukas-strength-points__item {
		align-items: flex-start;
		gap: 18px;
		min-height: 0;
		margin-bottom: 15px;
		padding: 20px;
	}

	.arukas-strength-points__item p {
		font-size: 14px;
	}

	.arukas-strength-points__check {
		width: 27px;
		height: 27px;
		margin-top: 2px;
		border-width: 3px;
	}

	.arukas-strength-points__check::after {
		top: 2px;
		left: 7px;
		width: 9px;
		height: 16px;
		border-right-width: 3px;
		border-bottom-width: 3px;
	}

}


/*==========================================================
PRICE
==========================================================*/

.arukas-price {
	position: relative;
	padding: 90px 0 170px;
	overflow: hidden;
	background: #f5f5f5;
	color: #333;
}

.arukas-price__inner {
	width: 1400px;
	max-width: calc(100% - 80px);
	margin: 0 auto;
}


/*==========================================================
PRICE：説明
==========================================================*/

.arukas-price__intro {
	margin: -40px 0 55px;
	color: #444;
	font-size: 13px;
	line-height: 1.8;
}


/*==========================================================
3プラン
==========================================================*/

.arukas-price__cards {
	display: grid;
	grid-template-columns:
		repeat(3, minmax(0, 1fr));
	gap: 18px;
	align-items: start;
}

/*==========================================================
PRICE：タブ
PCでは非表示
==========================================================*/

.arukas-price__tabs {
	display: none;
}



/*==========================================================
カード
==========================================================*/

.arukas-price-card {
	position: relative;
	min-width: 0;
}

.arukas-price-card__recommend-copy {
	min-height: 64px;
	margin-bottom: 8px;
	color: var(--arukas-green-dark2);
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1.25;
	text-align: center;
}


/*==========================================================
プラン上部：飾り線
==========================================================*/

.arukas-price-card__line {
	position: relative;
	width: 300px;
	max-width: 90%;
	height: 28px;
	margin: 0 auto 15px;

	background:
		linear-gradient(
			135deg,
			transparent 47%,
			var(--arukas-green-dark2) 48%,
			var(--arukas-green-dark2) 53%,
			transparent 54%
		)
		center 0 / 34px 28px
		no-repeat;
}

.arukas-price-card__line::before,
.arukas-price-card__line::after {
	position: absolute;
	top: 0;

	width: 135px;
	height: 3px;

	background: var(--arukas-green-dark2);
	content: "";
}

.arukas-price-card__line::before {
	left: 0;
}

.arukas-price-card__line::after {
	right: 0;
}


/*==========================================================
カード本体
==========================================================*/

.arukas-price-card__header,
.arukas-price-card__body {
	background: #fff;
}

.arukas-price-card__header {
	padding: 17px 20px;
	border-radius: 8px 8px 0 0;
	text-align: center;
}

.arukas-price-card__header h3 {
	margin: 0;
	color: var(--arukas-green-dark2);
	font-size: 28px;
	font-weight: 700;
	line-height: 1.2;
}

.arukas-price-card__body {
	overflow: hidden;
	border-radius: 0 0 8px 8px;
}


/*==========================================================
Standard
==========================================================*/

.arukas-price-card--standard {
	border: 0;
	border-radius: 0;
}

.arukas-price-card--standard
.arukas-price-card__header {
	border-top: 4px solid var(--arukas-green-dark2);
	border-right: 4px solid var(--arukas-green-dark2);
	border-left: 4px solid var(--arukas-green-dark2);

	border-radius: 8px 8px 0 0;

	background: var(--arukas-green-dark2);
}

.arukas-price-card--standard
.arukas-price-card__header h3 {
	color: #fff;
}

.arukas-price-card--standard
.arukas-price-card__body {
	border-right: 4px solid var(--arukas-green-dark2);
	border-bottom: 4px solid var(--arukas-green-dark2);
	border-left: 4px solid var(--arukas-green-dark2);

	border-radius: 0 0 8px 8px;
}


/*==========================================================
おすすめリボン
==========================================================*/

.arukas-price-card__badge {
	position: absolute;
	top: 80px;
	right: -3px;
	z-index: 5;

	width: 62px;
	height: 74px;

	padding: 0;

	background: #fff;

	clip-path: polygon(
		0 0,
		100% 0,
		100% 100%,
		50% 82%,
		0 100%
	);
}

.arukas-price-card__badge::before {
	position: absolute;
	top: 2px;
	right: 2px;
	bottom: 2px;
	left: 2px;

	display: flex;
	justify-content: center;
	align-items: flex-start;

	padding-top: 7px;

	background: var(--arukas-accent);
	color: #fff;

	font-size: 1.1rem;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;

	clip-path: polygon(
		0 0,
		100% 0,
		100% 100%,
		50% 82%,
		0 100%
	);

	content: "おすすめ\Aプラン";
	white-space: pre;
}

.arukas-price-card__badge::after {
	display: none;
	content: none;
}


/*==========================================================
カード上部内容
==========================================================*/

.arukas-price-card__lead {
	min-height: 75px;
	margin: 0;
	padding: 35px 25px 0;

	color: var(--arukas-green-dark2);

	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1.45;

	text-align: center;
}

.arukas-price-card__price {
	margin: 28px 0 25px;
	text-align: center;
}

.arukas-price-card__price span {
	font-size: 17px;
	font-weight: 700;
}

.arukas-price-card__price strong {
	margin: 0 5px;
	font-size: 36px;
	line-height: 1;
}


/*==========================================================
画像
==========================================================*/

.arukas-price-card__image {
	margin: 0 25px 22px;
	overflow: hidden;
	aspect-ratio: 16 / 9;
}

.arukas-price-card__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}


/*==========================================================
説明ブロック
==========================================================*/

.arukas-price-card__section {
	padding: 0 16px 25px;
	text-align: center;
}



.arukas-price-card__section h4,
.arukas-price-card__other h4 {
	margin: 0 0 8px;
	font-size: 2.4rem;
	font-weight: 700;
	line-height: 1.4;
}

.arukas-price-card__section p {
	font-size: 1.6rem;
	line-height: 1.7;

	word-break: normal;
	overflow-wrap: normal;
	line-break: strict;
}


/*==========================================================
比較行
==========================================================*/

.arukas-price-card__feature {
	display: grid;
	grid-template-columns:
		minmax(0, 1fr)
		180px;
	align-items: center;

	min-height: 82px;
	padding: 15px 30px;

	background: #fff;
}

.arukas-price-card__feature--tint {
	background: #f1f6eb;
}

.arukas-price-card__feature--green {
	background: var(--arukas-green-dark2);
	color: #fff;
}

.arukas-price-card__feature-name {
	font-size: 17px;
	font-weight: 700;
}

.arukas-price-card__feature strong {
	font-size: 16px;
	text-align: center;
}


/*==========================================================
○ ×
==========================================================*/

.arukas-price-card__mark,
.arukas-price-card__feature > strong {
	justify-self: center;
}

.arukas-price-card__mark {
	font-size: 42px;
	font-weight: 200;
	line-height: 1;
}

.arukas-price-card__mark-wrap {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 180px;
	text-align: center;
}

.arukas-price-card__mark--white {
	color: #fff;
}

.arukas-price-card__mark-wrap
.arukas-price-card__mark {
	margin: 0;
}

.arukas-price-card__mark-wrap small {
	display: block;
	margin: 5px 0 0;
	color: inherit;
	font-size: 10px;
	font-weight: 700;
	line-height: 1.35;
	text-align: center;
}


/*==========================================================
その他
==========================================================*/

.arukas-price-card__other {
	min-height: 225px;
	padding: 30px 28px 35px;
	background: #fff;
}

.arukas-price-card__other h4 {
	text-align: center;
}

.arukas-price-card__other ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.arukas-price-card__other li {
	position: relative;
	margin-top: 10px;
	padding-left: 12px;
	font-size: 1.6rem;
	line-height: 1.55;
}

.arukas-price-card__other li::before {
	position: absolute;
	top: 0;
	left: 0;
	content: "・";
}

.arukas-price-card__premium-title {
	margin-top: 34px !important;
	color: var(--arukas-accent);
}


/*==========================================================
PRICE：タブレット
1000px以下
==========================================================*/

/*==========================================================
PRICE：タブ上キャッチ
PCでは非表示
==========================================================*/

.arukas-price__tab-leads {
	display: none;
}


/*==========================================================
PRICE：900px以下
==========================================================*/

@media screen and (max-width: 900px) {

	.arukas-price {
		padding: 80px 0 130px;
	}

	.arukas-price__inner {
		max-width: calc(100% - 48px);
	}


	/*======================================================
	キャッチコピー
	======================================================*/

	.arukas-price__tab-leads {
		display: block;

		width: 100%;
		max-width: 760px;

		margin:
			0
			auto
			20px;
	}


	.arukas-price__tab-lead {
		display: none;
		text-align: center;
	}


	.arukas-price__tab-lead.is-active {
		display: block;
	}


	.arukas-price__tab-lead p {
		margin: 0;

		color: var(--arukas-green-dark2);

		font-size: 2.2rem;
		font-weight: 700;
		line-height: 1.4;
	}


	/*======================================================
	キャッチ下の飾り線
	======================================================*/

	.arukas-price__tab-lead-line {
		position: relative;

		display: block;

		width: 300px;
		max-width: 75%;
		height: 30px;

		margin: 8px auto 0;

		border-top:
			3px solid
			var(--arukas-green-dark2);
	}


.arukas-price__tab-lead-line::after {
	position: absolute;
	top: -2px;
	left: 50%;

	width: 34px;
	height: 3px;

	background: var(--arukas-green-dark2);

	content: "";

	transform: rotate(135deg);
	transform-origin: left center;
}

	/*======================================================
	タブ
	======================================================*/

	.arukas-price__tabs {
		display: grid;

		grid-template-columns:
			repeat(3, minmax(0, 1fr));

		width: 100%;
		max-width: 760px;

		margin: 0 auto;

		border-bottom:
			2px solid
			var(--arukas-green-dark2);
	}


	.arukas-price__tab {
		position: relative;

		display: flex;
		justify-content: center;
		align-items: center;

		min-height: 54px;

		margin: 0;
		padding: 12px 10px;

		border: 0;

		background: #fff;
		color: var(--arukas-green-dark2);

		font-size: 1.6rem;
		font-weight: 700;
		line-height: 1.3;

		cursor: pointer;
	}


	.arukas-price__tab + .arukas-price__tab {
		border-left: 1px solid #ddd;
	}


	.arukas-price__tab.is-active {
		background: var(--arukas-green-dark2);
		color: #fff;
	}


	.arukas-price__tab[
		data-price-tab="standard"
	]::after {
		position: absolute;

		top: -19px;
		left: 50%;

		padding: 3px 8px;

		border-radius: 999px;

		background: var(--arukas-accent);
		color: #fff;

		font-size: 0.9rem;
		font-weight: 700;
		line-height: 1.2;

		content: "おすすめ";

		transform: translateX(-50%);
	}


		/* タブ表示時はカード内のプラン名ヘッダーを非表示 */
	.arukas-price-card__header {
		display: none;
	}

		/*======================================================
	タブ上部の角丸
	======================================================*/
	/* 3タブすべて上部を角丸 */
	.arukas-price__tab {
		border-radius: 8px 8px 0 0;
	}

	/* 選択中のタブを隣のタブより前面へ */
	.arukas-price__tab.is-active {
		z-index: 2;
	}

	/*======================================================
	おすすめリボン
	カード上端に合わせる
	======================================================*/

	.arukas-price-card__badge {
		top: 52px;
		right: -3px;
		transform: translateY(-100%);
	}

	/*======================================================
	カード
	======================================================*/

	.arukas-price__cards {
		display: block;

		width: 100%;
		max-width: 760px;

		margin: 0 auto;
	}


	.arukas-price-card {
		display: none;
		width: 100%;
	}


	.arukas-price-card.is-active {
		display: block;
	}


	/*
	 * PCの各カード上にある
	 * キャッチコピー・飾り線は
	 * タブレットでは使わない
	 */
	.arukas-price-card__recommend-copy,
	.arukas-price-card__line {
		display: none;
	}


	/*======================================================
	カード上部
	======================================================*/

	.arukas-price-card__lead {
		min-height: 0;

		padding:
			38px
			35px
			0;
	}


	.arukas-price-card__image {
		margin:
			0
			35px
			22px;
	}

}


/*==========================================================
PRICE：スマートフォン
640px以下
==========================================================*/
@media screen and (max-width: 640px) {

	.arukas-price {
		padding: 35px 0 115px;
	}


	.arukas-price__inner {
		max-width: calc(100% - 30px);
	}


	.arukas-price__intro {
		margin: -20px 0 45px;
		font-size: 1.3rem;
		line-height: 1.8;
	}


	/*======================================================
	タブ
	======================================================*/

	.arukas-price__tabs {
		max-width: 100%;
	}


	.arukas-price__tab {
		min-height: 46px;
		padding: 10px 5px;
		font-size: 1.3rem;
	}


	.arukas-price__tab[
		data-price-tab="standard"
	]::after {
		top: -17px;
		padding: 3px 6px;
		font-size: 1.2rem;
		white-space: nowrap;
	}


	.arukas-price-card__badge {
		display: none;
	}




	/*======================================================
	カード
	======================================================*/

	.arukas-price__cards {
		max-width: 100%;
	}


	.arukas-price-card__recommend-copy {
		margin-top: 25px;
		font-size: 1.8rem;
	}


	.arukas-price-card__line {
		width: 280px;
		max-width: 85%;
		height: 24px;
		margin-bottom: 12px;

		background-size:
			30px
			24px;
	}


	.arukas-price__tab-lead-line::after {
		display: none;
	}

	.arukas-price-card__line::before,
	.arukas-price-card__line::after {
		width: 50%;
		height: 2px;
	}
		


	/*======================================================
	プラン名
	======================================================*/

	.arukas-price-card__header {
		padding: 15px 18px;
	}


	.arukas-price-card__header h3 {
		font-size: 2.4rem;
	}


	/*======================================================
	おすすめリボン
	======================================================*/

	.arukas-price-card__badge {
		top: 49px;
		right: -2px;

		width: 56px;
		height: 68px;
	}


	.arukas-price-card__badge::before {
		padding-top: 6px;
		font-size: 1rem;
	}


	/*======================================================
	リード
	======================================================*/

	.arukas-price-card__lead {
		padding:
			30px
			20px
			0;

		font-size: 2rem;
		line-height: 1.45;
	}


	/*======================================================
	料金
	======================================================*/

	.arukas-price-card__price {
		margin: 24px 0 22px;
	}


	.arukas-price-card__price span {
		font-size: 1.5rem;
	}


	.arukas-price-card__price strong {
		font-size: 3.2rem;
	}


	/*======================================================
	画像
	======================================================*/

	.arukas-price-card__image {
		margin:
			0
			18px
			20px;
	}


	/*======================================================
	説明
	======================================================*/

	.arukas-price-card__section {
		padding:
			0
			15px
			22px;
	}


	.arukas-price-card__section h4,
	.arukas-price-card__other h4 {
		font-size: 2rem;
	}


	.arukas-price-card__section p {
		font-size: 1.4rem;
		line-height: 1.7;
	}


	/*======================================================
	比較行
	======================================================*/

	.arukas-price-card__feature {
		grid-template-columns:
			minmax(0, 1fr)
			125px;

		min-height: 72px;

		padding:
			13px
			18px;
	}


	.arukas-price-card__feature-name {
		font-size: 1.4rem;
	}


	.arukas-price-card__feature strong {
		font-size: 1.4rem;
	}


	.arukas-price-card__mark {
		font-size: 3.6rem;
	}


	.arukas-price-card__mark-wrap {
		width: 125px;
	}


	.arukas-price-card__mark-wrap small {
		font-size: 0.9rem;
	}


	/*======================================================
	その他
	======================================================*/

	.arukas-price-card__other {
		min-height: 0;

		padding:
			27px
			20px
			30px;
	}


	.arukas-price-card__other li {
		font-size: 1.4rem;
	}


	.arukas-price-card__premium-title {
		margin-top: 28px !important;
	}

}

/*==========================================================
FLOW
==========================================================*/

.arukas-flow {
	position: relative;
	/*background: #fff;*/
	color: #333;
}


/*==========================================================
緑背景エリア
==========================================================*/

.arukas-flow__green {
	position: relative;
	width: 100%;
	padding: 95px 0 75px;
	background:
		linear-gradient(
			to bottom,
			#22A629 0%,
			#28802C 100%
		);
}


/*==========================================================
上部カーブ
==========================================================*/

.arukas-flow__green::before {
	position: absolute;
	top: -68px;
	left: 50%;
	width: 120%;
	height: 135px;
	border-radius: 50% 50% 0 0 / 100% 100% 0 0;
	background: #22A629;
	content: "";
	transform: translateX(-50%);
}


/*==========================================================
中身
==========================================================*/

.arukas-flow__inner {
	position: relative;
	z-index: 2;
	width: 1400px;
	max-width: calc(100% - 80px);
	margin: 0 auto;
}


/*==========================================================
見出し
==========================================================*/

.arukas-flow__heading {
	margin-bottom: 45px;
	color: #fff;
}

.arukas-flow__heading-row {
	display: flex;
	align-items: baseline;
	gap: 28px;
}

.arukas-flow__heading-en {
	margin: 0;
	color: #fff;
	font-size: clamp(52px, 4.5vw, 72px);
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.12em;
}

.arukas-flow__heading-jp {
	margin: 0;
	color: #fff;
	font-size: clamp(2.7rem, 2.6vw, 4.1rem);
	font-weight: 700;
	line-height: 1.4;
}

.arukas-flow__intro {
	margin: 13px 0 0;
	color: #fff;
	font-size: 14px;
	line-height: 1.7;
}


/*==========================================================
カードグリッド
==========================================================*/

.arukas-flow__grid {
	display: grid;
	grid-template-columns:
		repeat(5, minmax(0, 1fr));
	gap: 28px 24px;
	align-items: stretch;
}


/*==========================================================
カード
==========================================================*/

.arukas-flow-card {
	position: relative;
	min-width: 0;
	min-height: 310px;
	padding: 36px 22px 24px;
	border-radius: 6px;
	background: #fff;
	color: #333;
}

.arukas-flow-card--wide {
	grid-column: span 2;
}


/* カード番号 */

.arukas-flow-card__number {
	position: absolute;
	top: -16px;
	left: 50%;

	display: flex;
	justify-content: center;
	align-items: center;

	width: 48px;
	height: 48px;
	padding: 0;

	border-radius: 50%;

	background: #fff;
	color: var(--arukas-green);

	font-size: 26px;
	font-weight: 700;
	font-style: italic;
	line-height: 1;

	transform: translateX(-50%);
}

.arukas-flow-card--04
.arukas-flow-card__badge {
	right: -8px;
}

/*==========================================================
カードアイコン
==========================================================*/

.arukas-flow-card__icon {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 55px;
	margin-bottom: 18px;
	color: var(--arukas-green-dark2);
	font-size: 38px;
	line-height: 1;
}


.arukas-flow-card__icon img {
	display: block;
	width: 56px;
	height: 56px;
	object-fit: contain;
}

/* カードタイトル */

.arukas-flow-card__title {
	margin: 0 0 17px;
	color: #333;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.45;
	text-align: center;
}


/* カード本文 */

.arukas-flow-card__text {
	margin: 0;
	color: #333;
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 1.75;
}


/* 03のタグ */

.arukas-flow-card__tags span {
	padding: 5px 11px;
	border-radius: 999px;
	background: var(--arukas-green-dark2);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	line-height: 1.2;
}




/*==========================================================
03：タグ
==========================================================*/

.arukas-flow-card__tags {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 6px;

	width: 100%;
	margin-top: 16px;
}

.arukas-flow-card__tags span {
	display: flex;
	justify-content: center;
	align-items: center;

	min-width: 0;
	padding: 7px 8px;

	border-radius: 999px;
	background: var(--arukas-green-dark2);
	color: #fff;

	font-size: 11px;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;

	white-space: nowrap;
}

.arukas-flow-card__badge {
	position: absolute;
	top: -24px;
	right: 8px;
	z-index: 5;

	display: flex;
	justify-content: center;
	align-items: flex-start;

	width: 58px;
	height: 72px;
	padding: 11px 6px 0;

	background: #fff;
	color: #fff;

	font-size: 12px;
	font-weight: 700;
	line-height: 1.15;
	text-align: center;

	box-sizing: border-box;

	clip-path: polygon(
		0 0,
		100% 0,
		100% 100%,
		50% 82%,
		0 100%
	);
}

.arukas-flow-card__badge::before {
	position: absolute;
	top: 3px;
	right: 3px;
	bottom: 4px;
	left: 3px;
	z-index: -1;

	background: var(--arukas-accent);

	clip-path: polygon(
		0 0,
		100% 0,
		100% 100%,
		50% 82%,
		0 100%
	);

	content: "";
}


/*==========================================================
CTA
==========================================================*/

.arukas-flow__cta {
	padding: 75px 20px 65px;
	/*background: #fff;*/
	text-align: center;
}

.arukas-flow__cta-lead {
	margin: 0 0 3px;
	color: #333;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.5;
}

.arukas-flow__cta-button {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	gap: 15px;

	width: 474px;
	max-width: 100%;
	padding: 14px 28px;

	border-radius: 999px;
	background: var(--arukas-accent);
	color: #fff;

	font-size: 14px;
	font-weight: 700;
	line-height: 1.4;
	text-decoration: none;

	box-sizing: border-box;
}

.arukas-flow__cta-button span {
	font-size: 20px;
	line-height: 1;
}





/*==========================================================
FLOW CTA：文字色固定
==========================================================*/

.arukas-flow__cta-button,
.arukas-flow__cta-button:link,
.arukas-flow__cta-button:visited,
.arukas-flow__cta-button:hover,
.arukas-flow__cta-button:active,
.arukas-flow__cta-button:focus,
.arukas-flow__cta-button span {
	color: #fff !important;
	text-decoration: none;
}


/*==========================================================
FLOW：続きを読む
PCでは通常表示
==========================================================*/

.arukas-flow__more {
	display: contents;
}

.arukas-flow__more-button {
	display: none;
}


/*==========================================================
FLOW：970px以下
2列
==========================================================*/

@media screen and (max-width: 970px) {

	.arukas-flow__inner {
		max-width: calc(100% - 48px);
	}

	.arukas-flow__grid {
		grid-template-columns:
			repeat(2, minmax(0, 1fr));
		gap: 32px 24px;
	}

	/* 03の横長指定を解除 */
	.arukas-flow-card--wide {
		grid-column: span 1;
	}

	.arukas-flow-card {
		min-height: 310px;
		padding: 36px 24px 26px;
	}

	/* 03のタグ */
	.arukas-flow-card__tags {
		grid-template-columns:
			repeat(3, minmax(0, 1fr));
	}

}

/*==========================================================
FLOW：560px以下
1列
==========================================================*/

@media screen and (max-width: 560px) {


	.arukas-flow__green {
		border-radius: 50% 50% 0 0 / 32px 32px 0 0;
		overflow: hidden;
	}

	.arukas-flow__green::before {
		display: none;
	}


	.arukas-flow__inner {
		max-width: calc(100% - 30px);
	}

	.arukas-flow__grid {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.arukas-flow-card--wide {
		grid-column: span 1;
	}

	.arukas-flow-card {
		min-height: 0;
		padding: 36px 24px 28px;
	}

	/* 03のタグ */
	.arukas-flow-card__tags {
		grid-template-columns:
			repeat(2, minmax(0, 1fr));
	}

.arukas-flow__more {
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;

	max-height: 0;
	padding-top: 0;
	overflow: hidden;

	opacity: 0;
	visibility: hidden;

	transition:
		max-height 0.7s ease,
		padding-top 0.7s ease,
		opacity 0.4s ease,
		visibility 0.4s ease;
}


.arukas-flow__more.is-open {
	max-height: 3000px;

	padding-top: 20px;

	opacity: 1;
	visibility: visible;
}


.arukas-flow__more-button {
		position: relative;
		overflow: hidden;

		display: inline-flex;
		justify-content: center;
		align-items: center;
		gap: 16px;

		justify-self: center;

		width: 200px;
		min-height: 58px;

		margin: 4px auto 0;
		padding: 14px 24px;

		border: 1px solid #2b7f28;

		background: #fff;
		color: var(--arukas-green-dark2);

		font-size: 1.6rem;
		font-weight: 700;
		line-height: 1;

		cursor: pointer;
	}


	/* 左下のグリーン三角 */
	.arukas-flow__more-button::before {
		position: absolute;
		bottom: 0;
		left: 0;

		width: 68px;
		height: 100%;

		background: #2b7f28;

		content: "";

		clip-path: polygon(
			0 0,
			0 100%,
			100% 100%
		);
	}


	.arukas-flow__more-text,
	.arukas-flow__more-arrow {
		position: relative;
		z-index: 1;
	}


	.arukas-flow__more-arrow {
		font-size: 2.4rem;
		line-height: 1;

		transform: rotate(90deg);

		transition:
			transform 0.35s ease;
	}


	.arukas-flow__more-button[aria-expanded="true"]
	.arukas-flow__more-arrow {
		transform: rotate(-90deg);
	}
}








/*==========================================================
FEATURE
==========================================================*/

.arukas-feature {
	position: relative;
	padding: 110px 0 130px;
	overflow: hidden;
	/*background: #fff;*/
	color: #333;
}

.arukas-feature__inner {
	width: 1400px;
	max-width: calc(100% - 80px);
	margin: 0 auto;
}


/*==========================================================
FEATURE：見出し
==========================================================*/

.arukas-feature__heading {
	display: flex;
	align-items: baseline;
	gap: 22px;
	margin: 0 0 65px;
}

.arukas-feature__heading-en {
	margin: 0;

	color: var(--arukas-green);

	font-family: "Montserrat", sans-serif;
	font-size: clamp(52px, 5vw, 72px);
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.1em;
	transform: scaleX(1.04);
}

.arukas-feature__heading-jp {
	margin: 0;
	color: #555;
	font-size: clamp(2.7rem, 2.6vw, 4.1rem);
	font-weight: 700;
	line-height: 1.4;
}


/*==========================================================
FEATURE：一覧
==========================================================*/

.arukas-feature__list {
	display: flex;
	flex-direction: column;
	gap: 105px;
}


/*==========================================================
FEATURE：各項目
==========================================================*/

.arukas-feature-item {
	display: grid;
	grid-template-columns: 52% 52%;
	align-items: center;
	width: 100%;
}


/*==========================================================
画像
==========================================================*/

.arukas-feature-item__image {
	position: relative;
	z-index: 1;
	overflow: hidden;
	aspect-ratio: 1.42 / 1;
}

.arukas-feature-item__image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}


/*==========================================================
テキストカード
==========================================================*/

.arukas-feature-item__content {
	position: relative;
	z-index: 2;
	box-sizing: border-box;
	min-height: 300px;
	padding: 45px 45px 38px;
	background: #fff;
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.18);
	border-radius: 10px;
}

.arukas-feature-item--image-left
.arukas-feature-item__content {
	margin-left: -8%;
}

.arukas-feature-item--image-right
.arukas-feature-item__content {
	margin-right: -8%;
}

.arukas-feature-item--image-right
.arukas-feature-item__image {
	position: relative;
	z-index: 1;
}

/*==========================================================
番号＋タイトル
==========================================================*/

.arukas-feature-item__title-row {
	display: grid;
	grid-template-columns: 72px minmax(0, 1fr);
	align-items: start;
	gap: 18px;
}

.arukas-feature-item__number {
	color: var(--arukas-green);
	font-size: 5.2rem;
	font-weight: 700;
	font-style: italic;
	line-height: 1;
}

.arukas-feature-item__title {
	margin: 0;
	color: #333;
	font-size: 2.8rem;
	font-weight: 700;
	line-height: 1.55;
}


/*==========================================================
リード
==========================================================*/

.arukas-feature-item__lead {
	margin: 32px 0 20px;
	color: #333;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.7;
}


/*==========================================================
ポイント
==========================================================*/

.arukas-feature-item__points {
	margin: 0;
	padding: 0;
	list-style: none;
}

.arukas-feature-item__points li {
	position: relative;
	margin-top: 12px;
	padding-left: 18px;
	color: #555;
	font-size: 1.6rem;
	line-height: 1.65;
}

.arukas-feature-item__points li::before {
	position: absolute;
	top: 0.62em;
	left: 0;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--arukas-accent);
	content: "";
}


/*==========================================================
FEATURE：840px以下
画像 → 白カード
==========================================================*/

@media screen and (max-width: 840px) {


	/*======================================================
FEATURE：セクション見出し
======================================================*/

.arukas-feature__heading {
	display: block;
	margin-bottom: 45px;
	text-align: left;
}

.arukas-feature__heading-en {
	display: block;
	margin: 0;

	font-size: 4.8rem;
	line-height: 1;
	letter-spacing: 0.12em;

	text-align: left;
	white-space: nowrap;
}

.arukas-feature__heading-jp {
	display: block;
	margin: 10px 0 0;

	font-size: 2.2rem;
	line-height: 1.4;

	text-align: left;
	white-space: normal;
}

	.arukas-feature__list {
		gap: 75px;
	}


	/*======================================================
	各項目
	======================================================*/

	.arukas-feature-item {
		display: flex;
		flex-direction: column;
		width: 100%;
	}


	/*======================================================
	画像
	======================================================*/

	.arukas-feature-item__image {
		order: 1;
		width: 100%;
		aspect-ratio: 16 / 9;
	}


	/*======================================================
	白カード
	画像に少し重ねる
	======================================================*/

	.arukas-feature-item__content {
		order: 2;
		z-index: 2;

		width: calc(100% - 24px);
		min-height: 0;

		margin: -22px auto 0;
		padding: 34px 28px 32px;

		border-radius: 10px;

		background: #fff;

		box-shadow:
			0 3px 8px
			rgba(0, 0, 0, 0.18);

		text-align: left;
	}


	/* PC版の左右重なりを解除 */
	.arukas-feature-item--image-left
	.arukas-feature-item__content,
	.arukas-feature-item--image-right
	.arukas-feature-item__content {
		margin-right: auto;
		margin-left: auto;
	}


	/* 右画像タイプも
	   840px以下では必ず画像→カード */
	.arukas-feature-item--image-right
	.arukas-feature-item__image {
		order: 1;
	}

	.arukas-feature-item--image-right
	.arukas-feature-item__content {
		order: 2;
	}


	/*======================================================
	番号＋見出し
	左揃え
	======================================================*/

	.arukas-feature-item__title-row {
		display: grid;
		grid-template-columns:
			58px
			minmax(0, 1fr);

		align-items: start;
		gap: 14px;

		text-align: left;
	}


	.arukas-feature-item__number {
		margin: 0;

		color: var(--arukas-green);

		font-size: 4.8rem;
		font-weight: 700;
		font-style: italic;
		line-height: 1;

		text-align: left;
	}


	.arukas-feature-item__title {
		margin: 0;

		color: #333;

		font-size: 2rem;
		font-weight: 700;
		line-height: 1.5;

		text-align: left;
	}


	/*======================================================
	リード
	======================================================*/

	.arukas-feature-item__lead {
		margin: 28px 0 18px;

		font-size: 1.6rem;
		line-height: 1.7;

		text-align: left;
	}


	/*======================================================
	ポイント
	======================================================*/

	.arukas-feature-item__points {
		margin: 0;
		padding: 0;

		text-align: left;
	}


	.arukas-feature-item__points li {
		margin-top: 12px;
		padding-left: 18px;

		font-size: 1.5rem;
		line-height: 1.65;

		text-align: left;
	}

}


/*==========================================================
FEATURE：600px以下
スマートフォン
==========================================================*/

@media screen and (max-width: 600px) {

		.arukas-feature {
					padding-top: 40px;
		padding-bottom: 40px;

	}


.arukas-feature__inner {
  max-width: calc(100% - 40px);
}


	.arukas-feature__heading {
		margin-bottom: 32px;
	}

	.arukas-feature__heading-en {
		font-size: 4.2rem;
	}

	.arukas-feature__heading-jp {
		margin-top: 8px;
		font-size: 1.8rem;
		line-height: 1.35;
	}



	.arukas-feature__list {
		gap: 60px;
	}


	/*======================================================
	画像
	======================================================*/

	.arukas-feature-item__image {
		aspect-ratio: 1.45 / 1;
	}


	/*======================================================
	白カード
	======================================================*/

	.arukas-feature-item__content {
		width: calc(100% - 16px);

		margin-top: -18px;

		padding:
			28px
			20px
			28px;

		border-radius: 9px;
	}


	/*======================================================
	番号＋タイトル
	======================================================*/

	.arukas-feature-item__title-row {
		grid-template-columns:
			48px
			minmax(0, 1fr);

		gap: 10px;
	}


	.arukas-feature-item__number {
		font-size: 4.2rem;
	}


	.arukas-feature-item__title {
		font-size: 1.7rem;
		line-height: 1.45;
	}


	/*======================================================
	リード
	======================================================*/

	.arukas-feature-item__lead {
		margin: 25px 0 16px;

		font-size: 1.5rem;
		line-height: 1.6;
	}


	/*======================================================
	ポイント
	======================================================*/

	.arukas-feature-item__points li {
		margin-top: 11px;

		font-size: 1.4rem;
		line-height: 1.6;
	}

}









/*==========================================================
スクロールアニメーション初期状態
==========================================================*/

.js-scroll-item {
	opacity: 0;
	transform: translateY(35px);
	transition:
		opacity 0.7s ease var(--delay, 0s),
		transform 0.7s ease var(--delay, 0s);
}

.js-scroll-item.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.arukas-problems__side--left .js-scroll-item {
	transform: translateX(-45px);
}

.arukas-problems__side--right .js-scroll-item {
	transform: translateX(45px);
}

.arukas-problems__side .js-scroll-item.is-visible {
	transform: translateX(0);
}

.arukas-problems__person.js-scroll-item {
	transform: translateY(55px) scale(0.96);
}

.arukas-problems__person.js-scroll-item.is-visible {
	transform: translateY(0) scale(1);
}


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

@media screen and (max-width: 960px) {

	.arukas-problems__upper {
		padding-top: 60px;
	}

	.arukas-problems__inner {
		max-width: calc(100% - 48px);
	}

	.arukas-problems__heading {
		gap: 22px;
	}

	.arukas-problems__heading-line {
		width: 9px;
		height: 75px;
	}

	.arukas-problems__content {
		grid-template-columns:
			minmax(210px, 1fr)
			minmax(260px, 320px)
			minmax(210px, 1fr);
		gap: 30px;
	}

	.arukas-problems__side {
		gap: 30px;
	}

	.arukas-problems__bubble {
		padding: 16px 20px;
	}

	.arukas-problems__person img {
		max-height: 370px;
	}

}






/*==========================================================
制作実績
==========================================================*/

#studio-arukas-works {
	padding: 90px 0 110px;
	overflow: hidden;
	/*background: #fff;*/
	color: #111;
}

#studio-arukas-works .works-inner {
	width: 1400px;
	max-width: calc(100% - 80px);
	margin: 0 auto;
}

#studio-arukas-works .works-title {
	margin: 0 0 65px;
	color: #444;
	font-size: clamp(32px, 3vw, 48px);
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
}



/*==========================================================
制作実績：見出し
==========================================================*/

#studio-arukas-works .works-heading {
	display: flex;
	align-items: baseline;
	gap: 18px;

	width: 100%;
	margin: 0 0 42px;
}

#studio-arukas-works .works-heading__en {
	margin: 0;

	color: var(--arukas-green);
	font-size: clamp(48px, 4.5vw, 72px);
	font-weight: 600;
	line-height: 1;

	letter-spacing: 0.16em;
}

#studio-arukas-works .works-heading__jp {
	margin: 0;

	color: #4a4a4a;
	font-size: clamp(2.7rem, 2.6vw, 4.1rem);
	font-weight: 700;
	line-height: 1.4;
}


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

@media screen and (max-width: 960px) {

	#studio-arukas-works .works-heading {
		gap: 14px;
		margin-bottom: 34px;
	}

	#studio-arukas-works .works-heading__en {
		font-size: 48px;
	}

	#studio-arukas-works .works-heading__jp {
		font-size: 20px;
	}

}



/*==========================================================
カテゴリ内スライダー
==========================================================*/

#studio-arukas-works .works-category-results {
	position: relative;
	display: block;
	box-sizing: border-box;
	width: 100%;
	min-width: 0;
}

#studio-arukas-works .works-category-results .slick-list {
	display: block;
	width: 100%;

	margin-top: -20px;
	margin-bottom: -24px;
	padding-top: 20px;
	padding-bottom: 24px;

	overflow: hidden;
}

#studio-arukas-works .works-category-results .slick-track {
	display: flex;
	align-items: stretch;
}

#studio-arukas-works .works-category-results .slick-slide {
	float: none;
	flex-shrink: 0;
	height: auto;
	margin-right: 25px;
}


/*==========================================================
実績カード
==========================================================*/

#studio-arukas-works .works-item {
	display: flex;
	flex-direction: column;
	box-sizing: border-box;

	height: 560px;
	min-height: 560px;
	max-height: 560px;

	margin: 0;
	padding: 32px;

	overflow: visible;

	border: 1px solid rgba(0, 0, 0, 0.06);
	border-radius: 10px;

	background: #fff;

	box-shadow:
		0 2px 4px rgba(0, 0, 0, 0.16),
		0 8px 16px rgba(0, 0, 0, 0.20);
}

#studio-arukas-works .works-item.layout-movie_only {
	width: 304px;
	min-width: 304px;
	max-width: 304px;
}

#studio-arukas-works .works-item.layout-movie_image {
	width: 633px;
	min-width: 633px;
	max-width: 633px;
}


/*==========================================================
カード見出し
==========================================================*/

#studio-arukas-works .works-head {
	display: flex;
	flex: 0 0 32px;
	justify-content: space-between;
	align-items: flex-end;
	gap: 20px;
	box-sizing: border-box;
	width: 100%;
	height: 32px;
	min-height: 32px;
	margin: 0 0 12px;
}

#studio-arukas-works .works-client {
	min-width: 0;
	margin: 0;
	overflow: hidden;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.4;
	text-overflow: ellipsis;
	white-space: nowrap;
}

#studio-arukas-works .works-project {
	flex-shrink: 0;
	margin: 0;
	font-size: 12px;
	line-height: 1.4;
}


/*==========================================================
画像・動画
==========================================================*/

#studio-arukas-works .works-media {
	flex: 0 0 270px;
	box-sizing: border-box;
	width: 100%;
	height: 270px;
	min-height: 270px;
	max-height: 270px;
	overflow: hidden;
}

#studio-arukas-works .layout-movie_only .works-media {
	display: block;
}

#studio-arukas-works .layout-movie_image .works-media {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

#studio-arukas-works .works-movie,
#studio-arukas-works .works-sub-image {
	position: relative;
	display: block;
	box-sizing: border-box;
	width: 100%;
	height: 270px;
	min-height: 270px;
	max-height: 270px;
	margin: 0;
	padding: 0;
	overflow: hidden;
	border: 0;
	background: #000;
	cursor: pointer;
}

#studio-arukas-works .works-movie img,
#studio-arukas-works .works-sub-image img {
	display: block;
	width: 100%;
	height: 270px;
	min-height: 270px;
	max-height: 270px;
	object-fit: cover;
	transition: transform 0.3s ease;
}

#studio-arukas-works .works-movie:hover img,
#studio-arukas-works .works-movie:focus-visible img {
	transform: scale(1.035);
}

#studio-arukas-works .works-movie:focus-visible {
	outline: 3px solid #278032;
	outline-offset: -3px;
}


/*==========================================================
再生アイコン
==========================================================*/

#studio-arukas-works .play-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: #f20d18;
	transform: translate(-50%, -50%);
	pointer-events: none;
}

#studio-arukas-works .play-icon::before {
	position: absolute;
	top: 50%;
	left: 53%;
	border-top: 7px solid transparent;
	border-bottom: 7px solid transparent;
	border-left: 11px solid #fff;
	content: "";
	transform: translate(-50%, -50%);
}


/*==========================================================
説明文
==========================================================*/

#studio-arukas-works .works-description {
	flex: 1 1 auto;
	min-height: 0;
	margin: 14px 0 0;
	overflow: hidden;
	font-size: 14px;
	line-height: 1.6;
}


/*==========================================================
制作実績：Slick矢印
==========================================================*/

#studio-arukas-works .slick-prev,
#studio-arukas-works .slick-next {
	position: absolute;
	top: 50%;
	z-index: 30;

	width: 54px;
	height: 54px;
	margin: 0;
	padding: 0;

	border: 0;
	border-radius: 50%;

	background: #58c96b;

	font-size: 0;

	transform: translateY(-50%);

	cursor: pointer;

	transition:
		background-color 0.25s ease,
		transform 0.25s ease;
}


#studio-arukas-works .slick-prev {
	left: -27px;
}

#studio-arukas-works .slick-next {
	right: -27px;
}


#studio-arukas-works .slick-prev:hover,
#studio-arukas-works .slick-next:hover {
	background: #27883b;
}


/*
 * Slick標準の矢印文字を消す
 */
#studio-arukas-works .slick-prev::before,
#studio-arukas-works .slick-next::before {
	position: absolute;
	top: 50%;

	width: 14px;
	height: 14px;

	border-top: 3px solid #fff;
	border-right: 3px solid #fff;

	content: "";

	opacity: 1;
}


/*
 * 左
 */
#studio-arukas-works .slick-prev::before {
	left: 54%;

	transform:
		translate(-50%, -50%)
		rotate(-135deg);
}


/*
 * 右
 */
#studio-arukas-works .slick-next::before {
	left: 46%;

	transform:
		translate(-50%, -50%)
		rotate(45deg);
}


/*
 * disabled
 */
#studio-arukas-works .slick-prev.slick-disabled,
#studio-arukas-works .slick-next.slick-disabled {
	opacity: 0.35;
	cursor: default;
}



/*==========================================================
Slickドット
==========================================================*/

#studio-arukas-works .slick-dots {
	position: relative;
	bottom: auto;
	margin: 28px 0 0;
	padding: 0;
}

#studio-arukas-works .slick-dots li {
	width: 16px;
	height: 16px;
	margin: 0 7px;
}

#studio-arukas-works .slick-dots li button {
	width: 16px;
	height: 16px;
	padding: 0;
}

#studio-arukas-works .slick-dots li button::before {
	width: 16px;
	height: 16px;
	color: #999;
	font-size: 14px;
	line-height: 16px;
	opacity: 1;
}

#studio-arukas-works
.slick-dots
li.slick-active
button::before {
	color: #111;
}


/*==========================================================
制作実績：1階層目
==========================================================*/

#studio-arukas-works .works-main-category {
	position: relative;
	width: 100%;
	margin: 0 0 110px;
}

#studio-arukas-works .works-main-category:last-child {
	margin-bottom: 0;
}


/* 1階層目：グリーン帯 */
#studio-arukas-works .works-main-category-header {
	position: relative;
	box-sizing: border-box;
	width: 100vw;
	margin:
		0
		calc(50% - 50vw)
		45px;
	padding: 26px 0 92px;
	background: var(--arukas-green);
	color: #112317;
}


/*
 * 見出し自体は1400px内へ戻す
 */
#studio-arukas-works .works-main-category-title {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 14px;
	width: 1400px;
	max-width: calc(100% - 80px);
	margin: 0 auto;
	font-weight: 700;
	line-height: 1.4;
	text-align: left;
	letter-spacing: 0.06em;
}


/*
 * カチンコ風アイコン
 * 仮実装。SVG等に変えてもOK
 */
#studio-arukas-works .works-main-category-title::before {
	display: block;
	flex: 0 0 auto;
	width: 34px;
	height: 34px;
	background:
		url("../images/works-icon-clapperboard.svg")
		no-repeat
		center
		center;
	background-size: contain;
	content: "";
}


/* 1階層目カテゴリ名 */
#studio-arukas-works .works-main-category-name {
	font-size: clamp(24px, 2vw, 34px);
	font-weight: 700;
}


/* 1階層目コピー */
#studio-arukas-works .works-main-category-copy {
	font-size: clamp(22px, 1.9vw, 32px);
	font-weight: 700;
	letter-spacing: 0.14em;
}


/*==========================================================
制作実績：2階層目
==========================================================*/

#studio-arukas-works .works-sub-category {
	position: relative;
	margin: -105px 0 95px;
}

#studio-arukas-works .works-sub-category:last-child {
	margin-bottom: 0;
}


/*
 * 2階層目は
 * 「左：デザイン画像」
 * 「右：実績スライダー」
 * の横並び
 */
#studio-arukas-works .works-sub-category {
	display: grid;
	grid-template-columns:
		470px
		minmax(0, 1fr);
	align-items: stretch;
	gap: 45px;
}

/*==========================================================
2階層目：表紙画像
==========================================================*/

#studio-arukas-works .works-sub-category-visual {
	position: relative;
	z-index: 5;
	box-sizing: border-box;
	width: 470px;
	height: 560px;
	min-height: 560px;
	margin: 0;
	overflow: hidden;
	border-radius: 10px;
	background: #222;

	box-shadow:
		0 2px 4px rgba(0, 0, 0, 0.18),
		0 8px 16px rgba(0, 0, 0, 0.20);
}

#studio-arukas-works .works-sub-category-visual img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(0.48);
}


/*==========================================================
表紙画像：文字オーバーレイ
==========================================================*/

#studio-arukas-works .works-sub-category-visual__overlay {
	position: absolute;
	inset: 0;
	z-index: 2;

	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 30px;

	padding: 45px;

	color: #fff;
	text-align: center;

	pointer-events: none;
}

#studio-arukas-works .works-sub-category-visual__title {
	margin: 0;
	color: #fff;
	font-size: 28px;
	font-weight: 700;
	line-height: 1.45;
	letter-spacing: 0.02em;
	text-shadow: 0 2px 6px rgba(0, 0, 0, 0.45);
}

#studio-arukas-works .works-sub-category-visual__line {
	display: block;
	width: 88%;
	height: 2px;
	background: rgba(255, 255, 255, 0.9);
}





/*==========================================================
2階層目：右側スライダー
==========================================================*/

#studio-arukas-works
.works-sub-category
.works-category-results {
	min-width: 0;
	padding-top: 0;
}


/*==========================================================
2階層目なしのカテゴリ
ブース集客・柔軟な演出
==========================================================*/

#studio-arukas-works
.works-main-category
> .works-category-results {
	position: relative;
	margin-top: -105px;
}


/*==========================================================
実績カード：デザイン調整
==========================================================*/

#studio-arukas-works .works-item {
	display: flex;
	flex-direction: column;
	box-sizing: border-box;

	height: 560px;
	min-height: 560px;
	max-height: 560px;

	margin: 0;
	padding: 32px;

	overflow: hidden;

	border: 1px solid rgba(0, 0, 0, 0.06);
	border-radius: 10px;

	background: #fff;

	box-shadow:
		0 2px 4px rgba(0, 0, 0, 0.16),
		0 8px 16px rgba(0, 0, 0, 0.20);
}



/*
 * 動画のみ
 */
#studio-arukas-works .works-item.layout-movie_only {
	width: 470px;
	min-width: 470px;
	max-width: 470px;
}


/*
 * 動画＋画像
 */
#studio-arukas-works .works-item.layout-movie_image {
	width: 760px;
	min-width: 760px;
	max-width: 760px;
}


/*==========================================================
カード見出し
==========================================================*/

#studio-arukas-works .works-head {
	order: 2;
	display: block;
	flex: none;
	width: 100%;
	height: auto;
	min-height: 0;
	margin: 22px 0 0;
}

#studio-arukas-works .works-client {
	margin: 0 0 3px;
	overflow: visible;
	color: #17251c;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.4;
	text-overflow: clip;
	white-space: normal;
}

#studio-arukas-works .works-project {
	margin: 0;
	color: #17251c;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.45;
}


/*==========================================================
動画・画像
==========================================================*/

#studio-arukas-works .works-media {
	order: 1;
	flex: none;
	width: 100%;
	height: 250px;
	min-height: 250px;
	max-height: 250px;
}

#studio-arukas-works .works-movie,
#studio-arukas-works .works-sub-image {
	height: 250px;
	min-height: 250px;
	max-height: 250px;
}

#studio-arukas-works .works-movie img,
#studio-arukas-works .works-sub-image img {
	height: 250px;
	min-height: 250px;
	max-height: 250px;
}


/*==========================================================
説明文
==========================================================*/

#studio-arukas-works .works-description {
	order: 3;
	flex: 1 1 auto;
	min-height: 0;
	margin: 24px 0 0;

	overflow: visible;

	color: #333;
	font-size: 1.6rem;
	line-height: 1.8;
}

#studio-arukas-works .works-item {
	position: relative;
	overflow: visible;
}

/*==========================================================
WORKS：NEWバッジ
==========================================================*/

#studio-arukas-works .works-item:has(.works-item__new-badge) {
	overflow: visible;
}

#studio-arukas-works
.works-category-results
.slick-list {
	margin-top: -14px;
	padding-top: 14px;
}

#studio-arukas-works .works-item__new-badge {
	position: absolute;
	top: -12px;
	right: 12px;
	z-index: 20;

	display: block;

	width: 64px;
	height: 72px;
}

#studio-arukas-works .works-item__new-badge svg {
	display: block;

	width: 100%;
	height: 100%;

	overflow: visible;
}

/*==========================================================
Slick
==========================================================*/

#studio-arukas-works .works-category-results {
	position: relative;
	width: 100%;
	min-width: 0;
}

#studio-arukas-works
.works-category-results
.slick-list {
	overflow: hidden;
}

#studio-arukas-works
.works-category-results
.slick-track {
	display: flex;
	align-items: stretch;
}

#studio-arukas-works
.works-category-results
.slick-slide {
	float: none;
	flex-shrink: 0;
	height: auto;
	margin-right: 45px;
}


/*==========================================================
矢印
==========================================================*/

#studio-arukas-works .slick-prev,
#studio-arukas-works .slick-next {
	z-index: 30;
	width: 70px;
	height: 70px;
	border-radius: 50%;
	background:  var(--arukas-green2 );
	opacity: 0.7;
}

#studio-arukas-works .slick-prev {
	left: -35px;
}

#studio-arukas-works .slick-next {
	right: -35px;
}

#studio-arukas-works .slick-prev::before,
#studio-arukas-works .slick-next::before {
	color: #fff;
	font-size: 38px;
	opacity: 1;
}


/*==========================================================
2階層目あり：
左矢印を表紙画像の左側へ移動
==========================================================*/

#studio-arukas-works
.works-sub-category
.works-category-results
.slick-prev {
	left: -542px;
}


/*
 * 右矢印は実績スライダー右端のまま
 */
#studio-arukas-works
.works-sub-category
.works-category-results
.slick-next {
	right: -27px;
}

/*==========================================================
WORKS：NEWバッジ
==========================================================*/

#studio-arukas-works .works-item:has(.works-item__new-badge) {
	overflow: visible;
}


/*
 * Slick上端でバッジが切れないようにする
 */
#studio-arukas-works
.works-category-results
.slick-list {
	margin-top: -14px;
	padding-top: 14px;
}

/*==========================================================
WORKS：NEWバッジ
==========================================================*/

#studio-arukas-works .works-item:has(.works-item__new-badge) {
	overflow: visible;
}

#studio-arukas-works
.works-category-results
.slick-list {
	margin-top: -14px;
	padding-top: 14px;
}

#studio-arukas-works .works-item__new-badge {
	position: absolute;
	top: -12px;
	right: 12px;
	z-index: 20;

	display: block;

	width: 64px;
	height: 72px;
}

#studio-arukas-works .works-item__new-badge svg {
	display: block;

	width: 100%;
	height: 100%;

	overflow: visible;
}


/* =========================================================
WORKS：問い合わせ表示
========================================================= */

.arukas-renewal-page .works-movie--contact {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  text-decoration: none;
  cursor: pointer;
}

.arukas-renewal-page .works-movie--contact img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.arukas-renewal-page .works-movie--contact::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.42);
  transition: background 0.3s ease;
}

.arukas-renewal-page .works-movie--contact:hover::after {
  background: rgba(0, 0, 0, 0.52);
}

.arukas-renewal-page .works-contact {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  height: 100%;
  padding: 20px;
  color: #fff;
  text-align: left;
  pointer-events: none;
}

.arukas-renewal-page .works-contact__icon {
  display: block;
  flex: 0 0 auto;
  width: 54px;
  color: #fff;
}

.arukas-renewal-page .works-contact__icon svg {
  display: block;
  width: 100%;
  height: auto;
}

.arukas-renewal-page .works-contact__text {
  display: block;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
}



/*==========================================================
WORKS：1100px以下
2階層目タイトルカード固定を解除
==========================================================*/

@media screen and (max-width: 1100px) {

	/*======================================================
	2階層目
	左タイトルカード＋右スライダーを解除
	======================================================*/

	#studio-arukas-works .works-sub-category {
		display: block;
		margin-top: -85px;
		margin-bottom: 75px;
	}


	/*======================================================
	タイトルカード
	======================================================*/

	#studio-arukas-works .works-sub-category-visual {
		width: 100%;
		height: auto;
		min-height: 0;

		margin: 0 0 35px;

		aspect-ratio: 16 / 7;

		border-radius: 10px;
	}


	#studio-arukas-works
	.works-sub-category-visual img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}


	#studio-arukas-works
	.works-sub-category-visual__overlay {
		padding: 35px;
		gap: 22px;
	}


	#studio-arukas-works
	.works-sub-category-visual__title {
		font-size: 2.4rem;
	}


	/*======================================================
	Slickを通常幅へ戻す
	======================================================*/

	#studio-arukas-works
	.works-sub-category
	.works-category-results {
		width: 100%;
		min-width: 0;
	}


	/*======================================================
	PC用の特殊な左矢印位置を解除
	======================================================*/

	#studio-arukas-works
	.works-sub-category
	.works-category-results
	.slick-prev {
		left: -25px;
	}


	#studio-arukas-works
	.works-sub-category
	.works-category-results
	.slick-next {
		right: -25px;
	}

}

/*==========================================================
WORKS：640px以下
==========================================================*/

@media screen and (max-width: 640px) {

	#studio-arukas-works {
		padding: 60px 0 75px;
	}


	#studio-arukas-works .works-inner {
		max-width: calc(100% - 30px);
	}


	/*======================================================
	見出し
	======================================================*/

	#studio-arukas-works .works-heading {
		align-items: baseline;
		gap: 10px;
		margin-bottom: 28px;
	}


	#studio-arukas-works .works-heading__en {
		font-size: 3.8rem;
		letter-spacing: 0.12em;
	}


	#studio-arukas-works .works-heading__jp {
		font-size: 1.7rem;
	}


	/*======================================================
	1階層目カテゴリ
	======================================================*/

	#studio-arukas-works .works-main-category {
		margin-bottom: 75px;
	}


	#studio-arukas-works .works-main-category-header {
		margin-bottom: 30px;
		padding: 20px 0 65px;
	}


	#studio-arukas-works .works-main-category-title {
		display: flex;
		flex-wrap: wrap;
		gap: 6px 10px;

		width: 100%;
		max-width: calc(100% - 30px);
	}


	#studio-arukas-works .works-main-category-title::before {
		width: 28px;
		height: 28px;
	}


	#studio-arukas-works .works-main-category-name {
		font-size: 2.1rem;
	}


	#studio-arukas-works .works-main-category-copy {
		width: 100%;
		padding-left: 38px;
		font-size: 1.6rem;
	}


	/*======================================================
	2階層目
	======================================================*/

	#studio-arukas-works .works-sub-category {
		display: block;
		margin-top: -65px;
		margin-bottom: 55px;
	}


	#studio-arukas-works
	.works-main-category
	> .works-category-results {
		margin-top: -65px;
	}


	/*======================================================
	2階層目：表紙画像
	======================================================*/

	#studio-arukas-works .works-sub-category-visual {
		width: 100%;
		height: auto;
		min-height: 0;

		margin: 0 0 25px;

		aspect-ratio: 16 / 9;

		border-radius: 10px;
	}


	#studio-arukas-works
	.works-sub-category-visual img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}


	#studio-arukas-works
	.works-sub-category-visual__overlay {
		padding: 25px 20px;
		gap: 18px;
	}


	#studio-arukas-works
	.works-sub-category-visual__title {
		font-size: 2rem;
	}


	/*======================================================
	実績カード
	======================================================*/

	#studio-arukas-works
	.works-category-results
	.works-item,
	#studio-arukas-works
	.works-category-results
	.works-item.layout-movie_only,
	#studio-arukas-works
	.works-category-results
	.works-item.layout-movie_image {
		flex: none;

		box-sizing: border-box;

		width: calc(100vw - 50px);
		min-width: calc(100vw - 50px);
		max-width: calc(100vw - 50px);

		height: auto;
		min-height: 0;
		max-height: none;

		margin: 0;
		padding: 20px;

		overflow: hidden;
	}


	/*======================================================
	メディア共通
	======================================================*/

	#studio-arukas-works .works-media {
		order: 1;
		flex: none;

		box-sizing: border-box;

		width: 100%;

		height: auto;
		min-height: 0;
		max-height: none;

		overflow: hidden;
	}


	/*======================================================
	動画のみ
	======================================================*/

	#studio-arukas-works
	.layout-movie_only
	.works-media {
		display: block;

		width: 100%;
		height: auto;

		aspect-ratio: 16 / 9;
	}


	#studio-arukas-works
	.layout-movie_only
	.works-movie {
		width: 100%;
		height: 100%;

		min-height: 0;
		max-height: none;

		aspect-ratio: auto;
	}


	/*======================================================
	動画＋画像
	スマホでも横2列
	======================================================*/

	#studio-arukas-works
	.layout-movie_image
	.works-media {
		display: grid;

		grid-template-columns:
			repeat(2, minmax(0, 1fr));

		gap: 8px;

		width: 100%;
		height: auto;

		aspect-ratio: 16 / 9;
	}


	#studio-arukas-works
	.layout-movie_image
	.works-movie,
	#studio-arukas-works
	.layout-movie_image
	.works-sub-image {
		width: 100%;
		height: 100%;

		min-height: 0;
		max-height: none;

		aspect-ratio: auto;
	}


	/*======================================================
	動画・画像の箱
	======================================================*/

	#studio-arukas-works .works-movie,
	#studio-arukas-works .works-sub-image {
		position: relative;
		display: block;

		box-sizing: border-box;

		margin: 0;
		padding: 0;

		overflow: hidden;

		border: 0;

		background: #000;
	}


	/*======================================================
	画像本体
	======================================================*/

	#studio-arukas-works .works-movie img,
	#studio-arukas-works .works-sub-image img {
		display: block;

		width: 100%;
		height: 100%;

		min-height: 0;
		max-height: none;

		object-fit: cover;
	}


	/*======================================================
	カード見出し
	======================================================*/

	#studio-arukas-works .works-head {
		order: 2;
		display: block;
		flex: none;

		width: 100%;

		height: auto;
		min-height: 0;

		margin: 18px 0 0;
	}


	#studio-arukas-works .works-client {
		margin: 0 0 3px;

		overflow: visible;

		color: #17251c;

		font-size: 1.6rem;
		font-weight: 700;
		line-height: 1.4;

		text-overflow: clip;
		white-space: normal;
	}


	#studio-arukas-works .works-project {
		margin: 0;

		color: #17251c;

		font-size: 1.3rem;
		font-weight: 700;
		line-height: 1.45;
	}


	/*======================================================
	説明文
	======================================================*/

	#studio-arukas-works .works-description {
		order: 3;
		flex: none;

		min-height: 0;

		margin: 18px 0 0;

		overflow: visible;

		color: #333;

		font-size: 1.4rem;
		line-height: 1.7;
	}




	
	/*======================================================
	Slick
	======================================================*/

	#studio-arukas-works
	.works-category-results {
		width: 100%;
		min-width: 0;
	}


	#studio-arukas-works
	.works-category-results
	.slick-list {
		width: 100%;
		overflow: hidden;
	}


	#studio-arukas-works
	.works-category-results
	.slick-track {
		display: flex;
		align-items: stretch;
	}


	#studio-arukas-works
	.works-category-results
	.slick-slide {
		float: none;
		flex-shrink: 0;

		height: auto;

		margin-right: 16px;
	}



	/*======================================================
	Slick矢印
	======================================================*/

	#studio-arukas-works .slick-prev,
	#studio-arukas-works .slick-next {
		width: 44px;
		height: 44px;
	}


	#studio-arukas-works .slick-prev {
		left: -5px;
	}


	#studio-arukas-works .slick-next {
		right: -5px;
	}


	#studio-arukas-works .slick-prev::before,
	#studio-arukas-works .slick-next::before {
		width: 11px;
		height: 11px;

		border-width: 2px 2px 0 0;
	}


	/*======================================================
	2階層目ありの矢印位置もSPでは解除
	======================================================*/

	#studio-arukas-works
	.works-sub-category
	.works-category-results
	.slick-prev {
		left: -5px;
	}


	#studio-arukas-works
	.works-sub-category
	.works-category-results
	.slick-next {
		right: -5px;
	}


	/*======================================================
	Slickドット
	======================================================*/

	#studio-arukas-works .slick-dots {
		position: relative;
		bottom: auto;

		margin: 28px 0 0;
		padding: 0;
	}


  .arukas-renewal-page .works-contact {
    gap: 10px;
    padding: 15px;
  }

  .arukas-renewal-page .works-contact__icon {
    width: 44px;
  }

  .arukas-renewal-page .works-contact__text {
    font-size: 1.4rem;
    line-height: 1.5;
  }




}




/*==========================================================
SERVICE
==========================================================*/

.arukas-service {
	padding: 105px 0 125px;
	/*background: #fff;*/
	color: #333;
}

.arukas-service__inner {
	width: 1400px;
	max-width: calc(100% - 80px);
	margin: 0 auto;
}


/*==========================================================
見出し
==========================================================*/

.arukas-service__heading {
	margin-bottom: 48px;
}

.arukas-service__heading-row {
	display: flex;
	align-items: baseline;
	gap: 22px;
}

.arukas-service__heading-en {
	margin: 0;
	color: var(--arukas-green);
	font-size: clamp(52px, 5vw, 72px);
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.12em;
}

.arukas-service__heading-jp {
	margin: 0;
	color: #333;
	font-size: clamp(2.7rem, 2.6vw, 4.1rem);
	font-weight: 700;
	line-height: 1.4;
}

.arukas-service__intro {
	margin: 14px 0 0;
	color: #555;
	font-size: 1.6rem;
	line-height: 1.7;
}


/*==========================================================
カード一覧
==========================================================*/

.arukas-service__grid {
	display: grid;
	grid-template-columns:
		repeat(4, minmax(0, 1fr));
	gap: 24px 20px;
}


/*==========================================================
カード
==========================================================*/

.arukas-service-card {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: 190px;
	padding: 18px 18px 17px;
	border-radius: 6px;
	background: #fff;
	color: #222;
	text-decoration: none;
	box-shadow:
		0 3px 5px rgba(0, 0, 0, 0.2);
	transition:
		transform 0.25s ease,
		box-shadow 0.25s ease;
}

.arukas-service-card:hover,
.arukas-service-card:focus-visible {
	transform: translateY(-3px);
	box-shadow:
		0 7px 16px rgba(0, 0, 0, 0.16);
}


/*==========================================================
画像
==========================================================*/

.arukas-service-card__image {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 115px;
	margin-bottom: 8px;
}

.arukas-service-card__image img {
	display: block;
	width: auto;
	max-width: 100%;
	height: 100%;
	max-height: 110px;
	object-fit: contain;
}


/*==========================================================
タイトル
==========================================================*/

.arukas-service-card__title {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 48px;
	margin: 0;
	color: #222;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.25;
	text-align: center;
}


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

@media screen and (max-width: 960px) {

	.arukas-service {
		padding: 80px 0 95px;
	}

	.arukas-service__inner {
		max-width: calc(100% - 48px);
	}

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

}

/*==========================================================
スマートフォン
==========================================================*/

@media screen and (max-width: 640px) {

	.arukas-service {
		padding: 25px 0 55px;
	}


	.arukas-service__inner {
		max-width: calc(100% - 20px);
	}


	/*======================================================
	見出し
	======================================================*/

	.arukas-service__heading {
		margin-bottom: 32px;
	}


	.arukas-service__heading-row {
		display: block;
	}


	.arukas-service__heading-en {
		font-size: 3.8rem;
		letter-spacing: 0.12em;
	}


	.arukas-service__heading-jp {
		margin-top: 8px;
		font-size: 2.2rem;
	}


	.arukas-service__intro {
		margin-top: 14px;
		font-size: 1.4rem;
		line-height: 1.7;
	}


	/*======================================================
	カード一覧
	SPでも2列
	======================================================*/

	.arukas-service__grid {
		display: grid;

		grid-template-columns:
			repeat(2, minmax(0, 1fr));

		gap: 16px 10px;
	}


	/*======================================================
	カード
	======================================================*/

	.arukas-service-card {
		min-width: 0;
		min-height: 0;

		padding: 12px 8px 11px;

		border-radius: 4px;
	}


	/*======================================================
	画像
	======================================================*/

	.arukas-service-card__image {
		height: 78px;
		margin-bottom: 5px;
	}


	.arukas-service-card__image img {
		width: auto;
		max-width: 100%;

		height: 100%;
		max-height: 74px;

		object-fit: contain;
	}


	/*======================================================
	タイトル
	======================================================*/

	.arukas-service-card__title {
		min-height: 38px;

		font-size: 1.5rem;
		font-weight: 700;
		line-height: 1.2;
	}


	/*======================================================
	最後が1枚だけの場合は中央配置
	======================================================*/

	.arukas-service-card:last-child:nth-child(odd) {
		grid-column: 1 / -1;

		width: calc(50% - 5px);

		justify-self: center;
	}

}



/*==========================================================
FAQ
==========================================================*/

.arukas-faq {
	padding: 100px 0 120px;
	/*background: #fff;*/
	color: #333;
}

.arukas-faq__inner {
	width: 1400px;
	max-width: calc(100% - 80px);
	margin: 0 auto;
}


/*==========================================================
FAQ：見出し
==========================================================*/

.arukas-faq__heading {
	display: flex;
	align-items: baseline;
	gap: 30px;
	margin: 0 0 60px;
}

.arukas-faq__heading-en {
	margin: 0;
	color: var(--arukas-green);
	font-size: clamp(5.2rem, 5vw, 8.2rem);
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.12em;
}

.arukas-faq__heading-jp {
	margin: 0;
	color: #555;
	font-size: clamp(2.7rem, 2.6vw, 4.1rem);
	font-weight: 700;
	line-height: 1.4;
}


/*==========================================================
FAQ：タブ
==========================================================*/

.arukas-faq__tabs {
	display: grid;
	grid-template-columns:
		repeat(4, minmax(0, 1fr));
	gap: 24px;
	margin-bottom: 52px;
}

.arukas-faq__tab {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 82px;
	padding: 18px 20px;
	border: 0;
	border-bottom: 7px solid #ddd;
	background: #fff;
	color: #333;
	font-size: 2.2rem;
	font-weight: 700;
	line-height: 1.45;
	text-align: center;
	cursor: pointer;
	transition:
		color 0.25s ease,
		border-color 0.25s ease,
		background-color 0.25s ease;
}

.arukas-faq__tab:hover,
.arukas-faq__tab:focus-visible {
	color: var(--arukas-green-dark2);
}


/*==========================================================
選択中タブ
==========================================================*/

.arukas-faq__tab.is-active {
	border: 2px solid var(--arukas-green-dark2);
	border-bottom: 9px solid var(--arukas-green-dark2);
	border-radius: 8px 8px 0 0;
	color: var(--arukas-green-dark2);
}

.arukas-faq__tab.is-active::after {
	position: absolute;
	top: 100%;
	left: 50%;
	width: 0;
	height: 0;
	border-top:
		18px solid
		var(--arukas-green-dark2);
	border-right:
		15px solid transparent;
	border-left:
		15px solid transparent;
	content: "";
	transform: translateX(-50%);
}




/*==========================================================
FAQ：パネル
==========================================================*/

.arukas-faq__panel[hidden] {
	display: none;
}

.arukas-faq__list {
	display: flex;
	flex-direction: column;
	gap: 22px;
}


/*==========================================================
FAQ：各項目
==========================================================*/

.arukas-faq-item {
	overflow: hidden;
	border: 1px solid var(--arukas-green-dark2);
	border-radius: 9px;
	background: #fff;
}

.arukas-faq-item__heading {
	margin: 0;
}


/*==========================================================
質問
==========================================================*/

.arukas-faq-item__question {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 25px;
	width: 100%;
	min-height: 72px;
	padding: 18px 25px;
	border: 0;
	background: #fff;
	color: var(--arukas-green-dark2);
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.5;
	text-align: left;
	cursor: pointer;
}

.arukas-faq-item.is-open
.arukas-faq-item__question {
	background: #0aa525;
	color: #fff;
}

.arukas-faq-item__question-text {
	display: flex;
	align-items: flex-start;
	gap: 7px;
	min-width: 0;
}

.arukas-faq-item__q {
	flex: 0 0 auto;
	font-size: 1.08em;
	font-weight: 700;
}


.arukas-renewal-page .arukas-faq__tab {
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.45;
}

.arukas-renewal-page .arukas-faq-item__question {
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.5;
}

/*==========================================================
＋ / －
==========================================================*/

.arukas-faq-item__toggle {
	position: relative;
	flex: 0 0 auto;
	width: 28px;
	height: 28px;
}

.arukas-faq-item__toggle::before,
.arukas-faq-item__toggle::after {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 25px;
	height: 3px;
	border-radius: 999px;
	background: var(--arukas-green-dark2);
	content: "";
	transform: translate(-50%, -50%);
}

.arukas-faq-item__toggle::after {
	transform:
		translate(-50%, -50%)
		rotate(90deg);
}

.arukas-faq-item.is-open
.arukas-faq-item__toggle::before,
.arukas-faq-item.is-open
.arukas-faq-item__toggle::after {
	background: #fff;
}

.arukas-faq-item.is-open
.arukas-faq-item__toggle::after {
	transform:
		translate(-50%, -50%)
		rotate(0);
}


/*==========================================================
回答
==========================================================*/

.arukas-faq-item__answer {
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	background: #fff;

	transition:
		max-height 0.38s ease,
		opacity 0.25s ease;
}

.arukas-faq-item.is-open
.arukas-faq-item__answer {
	opacity: 1;
}

.arukas-faq-item__answer-inner {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	padding: 22px 25px 26px;
}

.arukas-faq-item__a {
	flex: 0 0 auto;
	color: #941414;
	font-size: 2.2rem;
	font-weight: 700;
	line-height: 1.7;
}

.arukas-faq-item__answer p {
	margin: 0;
	color: #333;
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 1.85;
}


/*==========================================================
FAQなし
==========================================================*/

.arukas-faq__empty {
	margin: 0;
	padding: 35px;
	border: 1px solid #ddd;
	text-align: center;
}


/*==========================================================
FAQ：タブレット
==========================================================*/

@media screen and (max-width: 960px) {

	.arukas-faq {
		padding: 80px 0 95px;
	}

	.arukas-faq__inner {
		max-width: calc(100% - 48px);
	}

	.arukas-faq__tabs {
		grid-template-columns:
			repeat(2, minmax(0, 1fr));
		gap: 16px;
	}

}

.arukas-faq__panels {
	position: relative;
}


/*==========================================================
FAQ：スマートフォン
==========================================================*/

/*==========================================================
FAQ：スマートフォン
==========================================================*/

@media screen and (max-width: 640px) {

	.arukas-faq {
		padding: 65px 0 75px;
	}


	.arukas-faq__inner {
		max-width: calc(100% - 20px);
	}


	/*======================================================
	見出し
	======================================================*/

	.arukas-faq__heading {
		display: block;
		margin-bottom: 28px;
	}


	.arukas-faq__heading-en {
		font-size: 4rem;
		line-height: 1;
	}


	.arukas-faq__heading-jp {
		margin-top: 8px;
		font-size: 2.2rem;
		line-height: 1.35;
	}


	/*======================================================
	カテゴリタブ
	4列横並び
	======================================================*/

	.arukas-faq__tabs {
		display: grid;

		grid-template-columns:
			repeat(4, minmax(0, 1fr));

		gap: 5px;

		margin-bottom: 36px;
	}


	.arukas-faq__tab {
		position: relative;

		display: flex;
		justify-content: center;
		align-items: center;

		box-sizing: border-box;

		min-width: 0;
		min-height: 78px;

		padding: 8px 5px;

		border: 0;
		border-bottom: 4px solid #ddd;
		border-radius: 0;

		background: #fff;

		color: #222;

		font-size: 1.1rem;
		font-weight: 700;
		line-height: 1.25;
		text-align: center;

		white-space: normal;
	}

	.arukas-renewal-page .arukas-faq__tab {
		font-size: 1.3rem;
		line-height: 1.3;
	}

	/*======================================================
	選択中タブ
	======================================================*/

	.arukas-faq__tab.is-active {
		border: 2px solid var(--arukas-green-dark2);
		border-bottom: 5px solid var(--arukas-green-dark2);

		color: var(--arukas-green-dark2);
	}


	.arukas-faq__tab.is-active::after {
		position: absolute;

		bottom: -17px;
		left: 50%;

		width: 0;
		height: 0;

		border-top: 13px solid var(--arukas-green-dark2);
		border-right: 11px solid transparent;
		border-left: 11px solid transparent;

		content: "";

		transform: translateX(-50%);
	}


	/*======================================================
	質問一覧
	======================================================*/

	.arukas-faq__panels {
		margin-top: 0;
	}


	.arukas-renewal-page .arukas-faq-item__question {
font-size: 1.7rem;
	}

	.arukas-faq-item {
		margin-bottom: 16px;
	}


	.arukas-faq-item__question {
		min-height: 72px;

		padding: 14px 16px;

		font-size: 1.6rem;
		line-height: 1.45;
	}


	/*======================================================
	開いている質問
	======================================================*/

	.arukas-faq-item.is-open
	.arukas-faq-item__question {
		background: var(--arukas-green-dark2);
		color: #fff;
	}


	.arukas-faq-item__toggle {
		width: 24px;
		height: 24px;
	}


	.arukas-faq-item__toggle::before,
	.arukas-faq-item__toggle::after {
		width: 21px;
		height: 3px;
	}


	/*======================================================
	回答
	======================================================*/

	.arukas-faq-item__answer-inner {
		gap: 8px;
		padding: 18px 16px 22px;
	}


	.arukas-faq-item__a {
		font-size: 1.8rem;
		line-height: 1.7;
	}


	.arukas-faq-item__answer p {
		font-size: 1.4rem;
		line-height: 1.8;
	}


	.arukas-faq__list {

  gap: 5px;
}

}



/*==========================================================
STUDIO
==========================================================*/

.arukas-studio {
	padding: 100px 0 125px;
	background: #FAFAF9;
	color: #333;
}

/*==========================================================
STUDIO：閉じているときの下余白調整
==========================================================*/

.arukas-studio:not(.is-layout-open)
.arukas-studio__layout-area {
	margin-bottom: -150px;
}

/*==========================================================
STUDIO：レイアウトを開いたとき
==========================================================*/

.arukas-studio.is-layout-open
.arukas-studio__layout-area {
	margin-bottom: 30px;
}






.arukas-studio__inner {
	width: 1400px;
	max-width: calc(100% - 80px);
	margin: 0 auto;
}


/*==========================================================
見出し
==========================================================*/

.arukas-studio__heading {
	margin-bottom: 55px;
}

.arukas-studio__heading-row {
	display: flex;
	align-items: baseline;
	gap: 26px;
}

.arukas-studio__heading-en {
	margin: 0;
	color: var(--arukas-green);
	font-size: clamp(52px, 5vw, 82px);
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.12em;
}

.arukas-studio__heading-jp {
	margin: 0;
	color: #555;
	font-size: clamp(27px, 2.6vw, 43px);
	font-weight: 700;
	line-height: 1.4;
}

.arukas-studio__intro {
	margin: 16px 0 0;
	color: #555;
	font-size: 14px;
	line-height: 1.8;
}


/*==========================================================
STUDIO：ギャラリー
==========================================================*/

.arukas-studio__gallery-wrap {
	position: relative;

	margin:
		55px
		calc(50% - 50vw)
		80px;

	padding: 0 0 38px;

	overflow: hidden;
}


/*
 * 画像の下半分に敷くグリーン帯
 */
.arukas-studio__gallery-wrap::before {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;

	height: 48%;

	background: var(--arukas-green);

	content: "";
}


/*==========================================================
スライダー本体
==========================================================*/

.arukas-studio__gallery {
	position: relative;
	z-index: 2;

	width: 100%;
}


/*
 * Slick適用前
 */
.arukas-studio__gallery:not(.slick-initialized) {
	display: flex;
	gap: 38px;
}


/*==========================================================
各画像
==========================================================*/

.arukas-studio__slide {
	box-sizing: border-box;

	width: 420px;

	margin: 0 20px;

	overflow: hidden;

	border-radius:
		0
		24px
		0
		0;
}

.arukas-studio__slide img {
	display: block;

	width: 100%;
	height: 300px;

	object-fit: cover;
}


/*==========================================================
Slick調整
==========================================================*/

.arukas-studio__gallery .slick-list {
	overflow: visible;
}

.arukas-studio__gallery .slick-track {
	display: flex;
	align-items: stretch;
}


/*==========================================================
矢印
==========================================================*/

.arukas-studio__gallery .slick-arrow {
	position: absolute;
	top: 50%;
	z-index: 20;

	width: 52px;
	height: 52px;

	padding: 0;

	border: 0;
	border-radius: 50%;

	background: #fff;

	box-shadow:
		0 2px 8px
		rgba(0, 0, 0, 0.12);

	font-size: 0;

	cursor: pointer;

	transform:
		translateY(-50%);
}

.arukas-studio__gallery .slick-prev {
	left: 8%;
}

.arukas-studio__gallery .slick-next {
	right: 8%;
}

.arukas-studio__gallery .slick-prev::before,
.arukas-studio__gallery .slick-next::before {
	position: absolute;
	top: 50%;
	left: 50%;

	width: 13px;
	height: 13px;

	border-top:
		3px solid
		var(--arukas-green-dark2);

	border-right:
		3px solid
		var(--arukas-green-dark2);

	content: "";

	opacity: 1;
}

.arukas-studio__gallery .slick-prev::before {
	transform:
		translate(-35%, -50%)
		rotate(-135deg);
}

.arukas-studio__gallery .slick-next::before {
	transform:
		translate(-65%, -50%)
		rotate(45deg);
}

/*==========================================================
スタジオレイアウト
==========================================================*/

.arukas-studio__layouts {
	display: grid;
	grid-template-columns:
		repeat(2, minmax(0, 1fr));
	gap: 70px;
	margin-top: 45px;
}

.arukas-studio-layout__title {
	display: flex;
	align-items: center;
	gap: 15px;
	margin: 0 0 22px;
	color: #888;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.4;
}

.arukas-studio-layout__line {
	width: 6px;
	height: 32px;
	background: var(--arukas-green);
}

.arukas-studio-layout__place {
	color: #888;
}

.arukas-studio-layout__name {
	color: #999;
}

.arukas-studio-layout__image {
	overflow: hidden;
}

.arukas-studio-layout__image img {
	display: block;
	width: 100%;
	height: auto;
}

.arukas-studio-layout__spec {
	margin-top: 18px;

	color: #333;

	font-size: 2.4rem;
	font-weight: 400;
	line-height: 1.45;
}

.arukas-studio-layout__spec p {
	margin: 0;
}

/*==========================================================
STUDIO：レイアウト表示エリア
==========================================================*/

.arukas-studio__layout-area {
	position: relative;
	padding-bottom: 90px;
}


/*==========================================================
白いぼかし
==========================================================*/

.arukas-studio__layout-fade {
	position: absolute;
	z-index: 2;
	right: 0;
	bottom: 0;
	left: 0;

	height: 78%;

	pointer-events: none;

	background:
		linear-gradient(
			to bottom,
			rgba(250, 250, 249, 0.18) 0%,
			rgba(250, 250, 249, 0.55) 18%,
			rgba(250, 250, 249, 0.88) 38%,
			rgba(250, 250, 249, 0.98) 58%,
			rgba(250, 250, 249, 1) 72%,
			rgba(250, 250, 249, 1) 100%
		);

	opacity: 1;

	transition:
		opacity 0.55s ease,
		visibility 0.55s ease;
}

/*==========================================================
開いた状態
==========================================================*/

.arukas-studio.is-layout-open
.arukas-studio__layout-fade {
	opacity: 0;
	visibility: hidden;
}


/*==========================================================
ボタン
==========================================================*/

.arukas-studio__button-wrap {
	position: absolute;
	z-index: 3;
	right: 0;
	bottom: 270px;
	left: 0;

	margin: 0;

	text-align: center;
}

.arukas-studio__button {
	position: relative;
overflow: hidden;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	gap: 22px;

	

	padding: 16px 30px;

	border: 2px solid var(--arukas-green-dark2);

	background: #fff;

	color: var(--arukas-green-dark2);

	font-size: 17px;
	font-weight: 700;
	line-height: 1.4;

	cursor: pointer;

	transition:
		background-color 0.25s ease,
		color 0.25s ease;
}

/*
 * 左端の緑装飾
 * 左側を緑で塗り、
 * 右上 → 左下の斜めラインを作る
 */
.arukas-studio__button::before {
	position: absolute;
	top: 0;
	left: 0;

	width: 52px;
	height: 100%;

	background: var(--arukas-green-dark2);

	clip-path: polygon(
		0 0,
		0 100%,
		100% 100%
	);

	content: "";
}

.arukas-studio__button-text,
.arukas-studio__button-arrow {
	position: relative;
	z-index: 1;
}

.arukas-studio.is-layout-open
.arukas-studio__button-arrow {
	transform: rotate(180deg);
}


.arukas-studio__button:hover,
.arukas-studio__button:focus-visible {
	background: var(--arukas-green-dark2);
	color: #fff;
}



.arukas-studio__button-arrow {
	font-size: 24px;
	line-height: 1;

	transition:
		transform 0.35s ease;
}

.arukas-studio.is-layout-open
.arukas-studio__button-wrap {
	opacity: 1;
	pointer-events: auto;

	bottom: 0;
	transform: translateY(55px);
}
/*==========================================================
STUDIO：Slick 矢印
==========================================================*/

.arukas-studio__gallery .slick-arrow {
	position: absolute;
	top: 50%;
	z-index: 20;

	width: 52px;
	height: 52px;

	padding: 0;

	border: 0;
	border-radius: 50%;

	background: #fff !important;

	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);

	font-size: 0;

	cursor: pointer;

	transform: translateY(-50%);
}


/* hover / focus / activeでも白背景を維持 */
.arukas-studio__gallery .slick-arrow:hover,
.arukas-studio__gallery .slick-arrow:focus,
.arukas-studio__gallery .slick-arrow:active {
	background: #fff !important;
}


/* Slick標準のfocusアウトラインを消す */
.arukas-studio__gallery .slick-arrow:focus {
	outline: none;
}


/* 左右位置 */
.arukas-studio__gallery .slick-prev {
	left: 45px;
}

.arukas-studio__gallery .slick-next {
	right: 45px;
}


/*==========================================================
矢印本体
==========================================================*/

.arukas-studio__gallery .slick-prev::before,
.arukas-studio__gallery .slick-next::before {
	position: absolute;
	top: 50%;
	left: 50%;

	width: 13px;
	height: 13px;

	border-top: 3px solid var(--arukas-green-dark2);
	border-right: 3px solid var(--arukas-green-dark2);

	content: "";

	opacity: 1;
}


/* hover / focus / activeでも矢印を維持 */
.arukas-studio__gallery .slick-arrow:hover::before,
.arukas-studio__gallery .slick-arrow:focus::before,
.arukas-studio__gallery .slick-arrow:active::before {
	opacity: 1;
}


.arukas-studio__gallery .slick-prev::before {
	transform: translate(-35%, -50%) rotate(-135deg);
}

.arukas-studio__gallery .slick-next::before {
	transform: translate(-65%, -50%) rotate(45deg);
}




@media screen and (min-width: 1700px) {

	.arukas-studio__slide img {
		height: auto;
		object-fit: initial;
	}

}

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

@media screen and (max-width: 960px) {

	.arukas-studio {
		padding: 80px 0 95px;
	}

	.arukas-studio__inner {
		max-width: calc(100% - 48px);
	}

	.arukas-studio__gallery {
		gap: 24px;
	}

	.arukas-studio__layouts {
		gap: 40px;
	}

	.arukas-studio__button-wrap {
	
	bottom: 160px;
	
}


/*==========================================================
STUDIO：閉じているときの下余白調整
==========================================================*/

.arukas-studio:not(.is-layout-open)
.arukas-studio__layout-area {
	margin-bottom: -50px;
}

/*==========================================================
STUDIO：レイアウトを開いたとき
==========================================================*/

.arukas-studio.is-layout-open
.arukas-studio__layout-area {
	margin-bottom: 50px;
}


}


/*==========================================================
スマートフォン
==========================================================*/

@media screen and (max-width: 640px) {

	.arukas-studio {
		padding: 65px 0 75px;
	}

	.arukas-studio__inner {
		max-width: calc(100% - 30px);
	}

	.arukas-studio__heading-row {
		display: block;
	}

	.arukas-studio__heading-jp {
		margin-top: 10px;
		font-size: 24px;
	}


	
	.arukas-studio__layouts {
		grid-template-columns: 1fr;
		gap: 45px;
	}

	.arukas-studio__button {
		width: 100%;
		min-width: 0;
		max-width: 340px;
		font-size: 15px;
	}


		.arukas-studio__gallery .slick-arrow {
		display: block !important;

		width: 44px;
		height: 44px;

		z-index: 30;
	}

	.arukas-studio__gallery .slick-prev {
		left: 10px;
	}

	.arukas-studio__gallery .slick-next {
		right: 10px;
	}

	.arukas-studio__gallery .slick-prev::before,
	.arukas-studio__gallery .slick-next::before {
		width: 11px;
		height: 11px;

		border-top-width: 2px;
		border-right-width: 2px;
	}


	/* レイアウトエリア */
	.arukas-studio__layout-area {
		padding-bottom: 80px;
	}

	/* 縦1列 */
	.arukas-studio__layouts {
		grid-template-columns: 1fr;
		gap: 0;
	}

	/* 2件目＝東京を初期状態では完全に隠す */
	.arukas-studio-layout:nth-child(2) {
		max-height: 0;
		margin-top: 0;
		overflow: hidden;
		opacity: 0;
		visibility: hidden;

		transition:
			max-height 0.6s ease,
			margin-top 0.6s ease,
			opacity 0.4s ease,
			visibility 0.4s ease;
	}

	/* 開いたら東京を表示 */
	.arukas-studio.is-layout-open
	.arukas-studio-layout:nth-child(2) {
		max-height: 1000px;
		margin-top: 45px;
		opacity: 1;
		visibility: visible;
	}

/* 白い靄は残す */
.arukas-studio__layout-fade {
	display: block;

	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;

	z-index: 2;

	height: 52%;

	background:
		linear-gradient(
			to bottom,
			rgba(250, 250, 249, 0) 0%,
			rgba(250, 250, 249, 0.35) 18%,
			rgba(250, 250, 249, 0.75) 42%,
			rgba(250, 250, 249, 0.96) 68%,
			rgba(250, 250, 249, 1) 100%
		);

	pointer-events: none;
}

	/* ボタン */
	.arukas-studio__button-wrap {
		right: 0;
		bottom: 20px;
		left: 0;
	}

	.arukas-studio__button {
		width: calc(100% - 30px);
		max-width: 340px;

		padding: 13px 24px;

		font-size: 1.4rem;
	}	

}


/*==========================================================
CONTACT
==========================================================*/

.arukas-contact {
	padding: 70px 0 60px;
	background: #FAFAF9;
	color: #333;
}

.arukas-contact__inner {
	width: 1400px;
	max-width: calc(100% - 80px);
	margin: 0 auto;
}


/*==========================================================
見出し
==========================================================*/

.arukas-contact__heading {
	margin-bottom: 45px;
}

.arukas-contact__heading-row {
	display: flex;
	align-items: baseline;
	gap: 28px;
}

.arukas-contact__heading-en {
	margin: 0;
	color: var(--arukas-green);
	font-size: clamp(52px, 5vw, 82px);
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.12em;
}

.arukas-contact__heading-jp {
	margin: 0;
	color: #555;
	font-size: clamp(27px, 2.6vw, 43px);
	font-weight: 700;
	line-height: 1.4;
}

.arukas-contact__intro,
.arukas-contact__note {
	margin: 14px 0 0;
	color: #555;
	font-size: 13px;
	line-height: 1.8;
}

.arukas-contact__note {
	margin-top: 2px;
}


/*==========================================================
電話お問い合わせ
==========================================================*/

.arukas-contact__phone {
	width: 780px;
	max-width: 100%;
	margin: 40px auto 45px;
	padding: 16px 24px 18px;
	border: 1px solid var(--arukas-green-dark2);
	border-radius: 8px;
	background: #fff;
}

.arukas-contact__phone-title {
	margin: 0 0 12px;
	color: #444;
	font-size: 18px;
	font-weight: 700;
	text-align: center;
}

.arukas-contact__phone-list {
	display: grid;
	grid-template-columns:
		repeat(2, minmax(0, 1fr));
	gap: 35px;
}

.arukas-contact__phone-item {
	display: flex;
	align-items: center;
	gap: 14px;
}

.arukas-contact__phone-icon {
	display: flex;
	justify-content: center;
	align-items: center;
	flex: 0 0 auto;

	width: 44px;
	height: 44px;

	border-radius: 50%;

	background: var(--arukas-green-dark2);
}

.arukas-contact__phone-icon svg {
	display: block;

	width: 22px;
	height: 22px;

	fill: #fff;
}

.arukas-contact__phone-office {
	margin: 0;
	color: #333;
	font-size: 12px;
	line-height: 1.4;
}

.arukas-contact__phone-number {
	display: block;
	margin-top: 2px;
	color: var(--arukas-green-dark2);
	font-size: 24px;
	font-weight: 700;
	line-height: 1.2;
	text-decoration: none;
}


/*==========================================================
Tayoriフォーム
==========================================================*/


.arukas-contact__form {
	width: 760px;
	max-width: 100%;
	margin: 0 auto;
}

.arukas-contact__tayori {
	width: 100%;
	height: 1600px;
	overflow: hidden;
}

.arukas-contact__tayori iframe {
	display: block;
	width: 100%;
	height: 100%;
	border: 0;
}


.arukas-renewal-page .arukas-contact__phone-number,
.arukas-renewal-page .arukas-contact__phone-number:link,
.arukas-renewal-page .arukas-contact__phone-number:visited,
.arukas-renewal-page .arukas-contact__phone-number:hover,
.arukas-renewal-page .arukas-contact__phone-number:active {
	color: var(--arukas-green-dark2);
}


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

@media screen and (max-width: 960px) {

	.arukas-contact {
		padding: 80px 0 95px;
	}

	.arukas-contact__inner {
		max-width: calc(100% - 48px);
	}

}


/*==========================================================
スマートフォン
==========================================================*/

@media screen and (max-width: 640px) {

	.arukas-contact {
		padding: 25px 0 55px;
	}

	

	.arukas-contact__inner {
		max-width: calc(100% - 30px);
	}

	.arukas-contact__heading-row {
		display: block;
	}

	.arukas-contact__heading-jp {
		margin-top: 10px;
		font-size: 24px;
	}

	.arukas-contact__phone {
		padding: 18px;
	}

	.arukas-contact__phone-list {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.arukas-contact__phone-number {
		font-size: 22px;
	}

}


/*==========================================================
ACCESS
==========================================================*/

.arukas-access {
	padding: 95px 0 0;
	background: #FAFAF9;
	color: #333;
}


/*==========================================================
内側
==========================================================*/

.arukas-access__inner {
	width: 1400px;
	max-width: calc(100% - 80px);
	margin: 0 auto;
}


/*==========================================================
見出し
==========================================================*/

.arukas-access__heading {
	display: flex;
	justify-content: center;
	align-items: baseline;
	gap: 28px;
	margin-bottom: 55px;
	text-align: center;
}

.arukas-access__heading-en {
	margin: 0;
	color: var(--arukas-green);
	font-size: clamp(52px, 5vw, 82px);
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.12em;
}

.arukas-access__heading-jp {
	margin: 0;
	color: #555;
	font-size: clamp(27px, 2.6vw, 43px);
	font-weight: 700;
	line-height: 1.4;
}


/*==========================================================
ACCESS：タブ
==========================================================*/

.arukas-access__tabs {
	display: grid;
	grid-template-columns:
		repeat(2, minmax(0, 1fr));
	gap: 20px;

	width: 780px;
	max-width: 100%;

	margin: 0 auto 38px;
}

.arukas-access__tab {
	position: relative;

	display: flex;
	justify-content: center;
	align-items: center;
	gap: 16px;

	min-height: 70px;

	padding: 18px 34px;

	border: 0;
	border-bottom: 6px solid #ddd;
	border-radius: 10px 10px 0 0;

	background: #fff;
	color: #888;

	font-size: 17px;
	font-weight: 700;

	cursor: pointer;

	transition:
		background-color 0.25s ease,
		color 0.25s ease,
		border-color 0.25s ease;
}

.arukas-access__tab::before {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;

	height: 6px;

	background: transparent;

	content: "";

	transition:
		background-color 0.25s ease;
}

.arukas-access__tab:hover::before,
.arukas-access__tab:focus-visible::before {
	background: #fff;
}

.arukas-access__tab.is-active {
	border-bottom-color: var(--arukas-green-dark2);
	background: var(--arukas-green-dark2);
	color: #fff;
}

.arukas-access__tab.is-active::before {
	background: #fff;
}

.arukas-access__tab.is-active::after {
	position: absolute;
	top: 100%;
	left: 50%;

	width: 0;
	height: 0;

	border-top: 18px solid var(--arukas-green-dark2);
	border-right: 15px solid transparent;
	border-left: 15px solid transparent;

	content: "";

	transform: translateX(-50%);
}






.arukas-access__tab-place {
	flex: 0 0 auto;
	font-size: 15px;
}

.arukas-access__tab-name {
	font-size: 18px;
}

.arukas-access__tab::before {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;

	height: 6px;

	background: transparent;

	content: "";

	transition:
		background-color 0.25s ease;
}

.arukas-access__tab:hover::before,
.arukas-access__tab:focus-visible::before {
	background: #fff;
}

/*==========================================================
パネル
==========================================================*/

.arukas-access__panel[hidden] {
	display: none;
}


/*==========================================================
地図
==========================================================*/

.arukas-access__map {
	width: 100%;
	height: 370px;

	overflow: hidden;

	background: #ddd;
}

.arukas-access__map iframe {
	display: block;

	width: 100%;
	height: 100%;

	border: 0;
}


/*==========================================================
乗り物アイコン
==========================================================*/

.arukas-access__station {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;

	margin-top: 12px;
}

.arukas-access__station-icon {
	display: inline-flex;
	flex: 0 0 auto;
	align-items: center;
	justify-content: center;

	width: 24px;
	height: 24px;
}

.arukas-access__station-icon svg {
	display: block;
	width: 100%;
	height: 100%;
	fill: var(--arukas-green);
}

/*==========================================================
住所
==========================================================*/

.arukas-access__info {
	padding: 55px 20px 110px;
	text-align: center;
}

.arukas-access__address,
.arukas-access__station {
	margin: 0;
	color: #777;
	font-size: 14px;
	line-height: 1.8;
}

.arukas-access__station {
	margin-top: 12px;
}

.arukas-access__station-icon {
	margin-right: 7px;
	color: var(--arukas-green);
}


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

@media screen and (max-width: 960px) {

	.arukas-access {
		padding-top: 40px;
	}

	.arukas-access__inner {
		max-width: calc(100% - 48px);
	}

	.arukas-access__map {
		height: 330px;
	}

}


/*==========================================================
スマートフォン
==========================================================*/

@media screen and (max-width: 640px) {

	.arukas-access {
		padding-top: 65px;
	}

	.arukas-access__inner {
		max-width: calc(100% - 30px);
	}

	.arukas-access__heading {
		display: block;
		margin-bottom: 40px;
	}

	.arukas-access__heading-jp {
		margin-top: 10px;
		font-size: 24px;
	}

	.arukas-access__tabs {
		grid-template-columns: 1fr;
		gap: 12px;
		margin-bottom: 28px;
	}

	.arukas-access__tab {
		min-height: 58px;
		padding: 14px 20px;
	}

	.arukas-access__map {
		height: 300px;
	}

	.arukas-access__info {
		padding:
			38px
			20px
			70px;
	}

}


/*==========================================================
RELATED
==========================================================*/

.arukas-related {
	position: relative;
	padding: 60px 0 35px;
	background: #f5f5f5;
	color: #333;
	border-bottom: 7px solid var(--arukas-green-dark2);
}

.arukas-related__inner {
	position: relative;
	width: 1400px;
	max-width: calc(100% - 80px);
	margin: 0 auto;
}


/*==========================================================
見出し
==========================================================*/

.arukas-related__title {
	margin: 0 0 22px;
	color: #555;
	font-size: 34px;
	font-weight: 700;
	line-height: 1.3;
}


/*==========================================================
関連サービス
==========================================================*/

.arukas-related__services {
	display: grid;
	grid-template-columns:
		repeat(2, minmax(0, 1fr));
	gap: 42px 100px;
}

.arukas-related-card {
	display: grid;
	grid-template-columns:
		190px minmax(0, 1fr);
	gap: 24px;

	color: inherit;
	text-decoration: none;
}

.arukas-related-card__image {
	overflow: hidden;
}

.arukas-related-card__image img {
	display: block;
	width: 100%;
	height: 112px;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.arukas-related-card:hover
.arukas-related-card__image img,
.arukas-related-card:focus-visible
.arukas-related-card__image img {
	transform: scale(1.03);
}

.arukas-related-card__title {
	margin: 0 0 7px;
	color: #333;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.4;
}

.arukas-related-card__text {
	margin: 0;
	color: #444;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.65;
}


/*==========================================================
関連サイト
==========================================================*/

.arukas-related__group--site {
	margin-top: 48px;
}

.arukas-related-site {
	display: block;
	width: 520px;
	max-width: 100%;
	color: inherit;
	text-decoration: none;
}

.arukas-related-site__image {
	margin-bottom: 16px;
	overflow: hidden;
}

.arukas-related-site__image img {
	display: block;
	width: 100%;
	height: auto;
}

.arukas-related-site__text {
	margin: 0;
	color: #444;
	font-size: 14px;
	line-height: 1.7;
}


/*==========================================================
TOPへ
==========================================================*/

.arukas-related__top {
	position: absolute;
	right: 0;
	bottom: 0;

	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;

	width: 58px;
	height: 58px;

	border-radius: 50%;

	background: #20ab43;
	color: #fff !important;

	font-size: 10px;
	font-weight: 700;
	line-height: 1.1;

	text-decoration: none;

	transition:
		transform 0.25s ease,
		background-color 0.25s ease;
}

.arukas-related__top:hover,
.arukas-related__top:focus-visible {
	background: var(--arukas-green-dark2);
	transform: translateY(-3px);
}

.arukas-related__top-arrow {
	width: 9px;
	height: 9px;

	margin-bottom: 2px;

	border-top: 2px solid #fff;
	border-left: 2px solid #fff;

	transform: rotate(45deg);
}


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

@media screen and (max-width: 960px) {

	.arukas-related__inner {
		max-width: calc(100% - 48px);
	}

	.arukas-related__services {
		gap: 35px 45px;
	}

	.arukas-related-card {
		grid-template-columns: 150px minmax(0, 1fr);
	}

	.arukas-related-card__image img {
		height: 95px;
	}

}


/*==========================================================
スマートフォン
==========================================================*/

@media screen and (max-width: 640px) {

	.arukas-related {
		padding: 50px 0 35px;
	}

	.arukas-related__inner {
		max-width: calc(100% - 30px);
	}

	.arukas-related__title {
		font-size: 28px;
	}

	.arukas-related__services {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.arukas-related-card {
		grid-template-columns: 120px minmax(0, 1fr);
		gap: 16px;
	}

	.arukas-related-card__image img {
		height: 85px;
	}

	.arukas-related-card__title {
		font-size: 17px;
	}

	.arukas-related-card__text,
	.arukas-related-site__text {
		font-size: 13px;
	}

	.arukas-related__top {
		position: static;
		margin: 35px 0 0 auto;
	}

}



/*==========================================================
通常説明文：PC 16px統一
==========================================================*/

.arukas-about__description,
.arukas-price__intro,
.arukas-flow__intro {
	font-size: 1.6rem;
}


/*==========================================================
共通CTA：PC
==========================================================*/

.arukas-hero__bottom-button,
.arukas-problems__cta-button,
.arukas-flow__cta-button {
	width: 474px;
	max-width: 100%;
	min-width: 0;

	padding: 18px 32px;

	box-sizing: border-box;

	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.4;
}

.arukas-hero__bottom-text,
.arukas-problems__cta-lead,
.arukas-flow__cta-lead {
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.5;
}


/*==========================================================
共通CTA：スマートフォン
==========================================================*/

@media screen and (max-width: 640px) {

	.arukas-hero__bottom-button,
	.arukas-problems__cta-button,
	.arukas-flow__cta-button {
		width: 100%;
		max-width: 340px;

		padding: 14px 20px;

		font-size: 1.4rem;
	}

	.arukas-hero__bottom-text,
	.arukas-problems__cta-lead,
	.arukas-flow__cta-lead {
		font-size: 1.4rem;
		line-height: 1.5;
	}

}


/*==========================================================
通常説明文：PC 16px統一
==========================================================*/

.arukas-about__description,
.arukas-price__intro,
.arukas-price-card__section p,
.arukas-flow__intro,

/* 事例紹介 */
.arukas-case-card__text,
.arukas-case-card__description {
	font-size: 1.6rem;
	line-height: 1.75;
}


/*==========================================================
FOOTER
==========================================================*/

.arukas-footer {
	background: #FAFAF9;
	color: #fff;
}


/*==========================================================
上段
==========================================================*/

.arukas-footer__main {
	padding: 70px 0 105px;
	background: var(--arukas-green-dark2);
}

.arukas-footer__inner {
	display: grid;
	grid-template-columns:
		360px minmax(0, 1fr);
	gap: 110px;

	width: 1400px;
	max-width: calc(100% - 80px);
	margin: 0 auto;
}


/*==========================================================
ナビゲーション
==========================================================*/

.arukas-footer__nav {
	display: grid;
	grid-template-columns:
		repeat(2, minmax(0, 1fr));
	gap: 50px;
}

.arukas-footer__nav-list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.arukas-footer__nav-list li + li {
	margin-top: 25px;
}

.arukas-footer__nav-list a {
	color: #fff !important;
	font-size: 15px;
	font-weight: 700;
	line-height: 1.4;
	text-decoration: none;

	transition: opacity 0.25s ease;
}

.arukas-footer__nav-list a:hover,
.arukas-footer__nav-list a:focus-visible {
	opacity: 0.7;
}


/*==========================================================
会社情報
==========================================================*/

.arukas-footer__company {
	min-width: 0;
}

.arukas-footer__logo {
	margin-bottom: 20px;
}

.arukas-footer__logo img {
	display: block;
	width: 330px;
	max-width: 100%;
	height: auto;
}


/*==========================================================
住所
==========================================================*/

.arukas-footer__company-info {
	font-size: 15px;
	font-weight: 700;
	line-height: 1.5;
}

.arukas-footer__company-row {
	display: grid;
	grid-template-columns:
		150px minmax(0, 1fr);
	gap: 15px;
}

.arukas-footer__company-row
+ .arukas-footer__company-row {
	margin-top: 8px;
}

.arukas-footer__company-row strong {
	font-weight: 700;
}

.arukas-footer__company-row span {
	font-weight: 700;
}


/*==========================================================
下段
==========================================================*/

.arukas-footer__bottom {
	background: #FAFAF9;
	color: #333;
}

.arukas-footer__bottom-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;

	width: 1400px;
	max-width: calc(100% - 80px);
	min-height: 50px;

	margin: 0 auto;
}

.arukas-footer__privacy {
	color: #333 !important;
	font-size: 11px;
	font-weight: 400;
	text-decoration: none;
}

.arukas-footer__copyright {
	color: #333;
	font-size: 10px;
	font-weight: 400;
}


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

@media screen and (max-width: 960px) {

	.arukas-footer__inner {
		grid-template-columns:
			300px minmax(0, 1fr);

		gap: 60px;

		max-width: calc(100% - 48px);
	}

	.arukas-footer__bottom-inner {
		max-width: calc(100% - 48px);
	}

	.arukas-footer__nav {
		gap: 40px;
	}

	.arukas-footer__company-row {
		grid-template-columns: 1fr;
		gap: 2px;
	}

}


/*==========================================================
スマートフォン
==========================================================*/

@media screen and (max-width: 640px) {

	.arukas-footer__main {
		padding: 50px 0 55px;
	}

	.arukas-footer__inner {
		display: block;
		max-width: calc(100% - 30px);
	}

	.arukas-footer__nav {
		gap: 25px;
		margin-bottom: 50px;
	}

	.arukas-footer__nav-list li + li {
		margin-top: 18px;
	}

	.arukas-footer__nav-list a {
		font-size: 13px;
	}

	.arukas-footer__logo img {
		width: 280px;
	}

	.arukas-footer__company-info {
		font-size: 12px;
	}

	.arukas-footer__company-row {
		display: block;
	}

	.arukas-footer__company-row strong,
	.arukas-footer__company-row span {
		display: block;
	}

	.arukas-footer__company-row span {
		margin-top: 3px;
	}

	.arukas-footer__company-row
	+ .arukas-footer__company-row {
		margin-top: 14px;
	}


	/* 下段 */

	.arukas-footer__bottom-inner {
		display: block;
		max-width: calc(100% - 30px);
		padding: 16px 0;
		text-align: center;
	}

	.arukas-footer__privacy {
		display: block;
		margin-bottom: 8px;
	}

	.arukas-footer__copyright {
		display: block;
	}

}

/*==========================================================
セクション英字見出し：Montserrat 統一
==========================================================*/

.arukas-section-heading__en,
.arukas-about__heading-en,
.arukas-flow__heading-en,
.arukas-feature__heading-en,
#studio-arukas-works .works-heading__en,
.arukas-service__heading-en,
.arukas-faq__heading-en,
.arukas-studio__heading-en,
.arukas-contact__heading-en,
.arukas-access__heading-en {
	margin: 0;

	font-family: "Montserrat", sans-serif;
	font-size: clamp(52px, 5vw, 72px);
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.1em;
	transform: scaleX(1.04);
}