@charset "UTF-8";

/*
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
WP Maruso Group Theme
	ver.2023.08.16.Custom-
	ホーム　スタイルシート
────────────────────────────────────────
FileName:		/marusogroupTheme/assets/css/index.css
Editor:			TRUSTEC
Description:	ホーム　スタイルシート。
────────────────────────────────────────
2023/09/19:		グループ会社詳細モーダルウィンドウをstyle-modalmenu.cssへ移動。
2023/08/16:		スクロールスナップの全面改訂に伴う更新。
2023/07/25:		公開。
2023/05/30:		1.グループ会社の新規追加に伴う更新
					INDEX-SNAP-GROUP を1つ追加
				2. 見出し差し替えに伴う更新
					INDEX-SNAP-MOVIE の調整
2022/12/01:		開発開始。
2022/11/01:		サンプル開発開始。
────────────────────────────────────────
背景色:					#ee2621	rgba(283, 38, 33, 1)
本文文字色:				#ffffff	rgba(255, 255, 255, 1)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
*/





/* ::::: [COMMON] ::::: */

/* Custom Properties
--------- --------- --------- ------- */
:root {

	/*
	 * フォントサイズ
	 */
	--snap-section-title-font-size: max(2.5rem, 5.1vw);				/*	--title-font-size-100	*/
	--snap-section-title-small-font-size: max(0.89rem, 1.67vw);		/*	--title-font-size-32	*/

	/*
	 * 水平方向の余白
	 */
	--index-space-width: var(--header-padding-x);
	--index-space-width-double: calc(var(--header-padding-x) * 2);

	/*
	 * 垂直方向の余白
	 */
	--index-space-height: calc(var(--header-padding-x) * 2);
}


/* Media Query
--------- --------- --------- ------- */
/*	DisplayWidth < SM	*/
@media (max-width: 767px) {

	/* Custom Properties
	--------- --------- --------- ------- */
	:root {
		/*
		 * 水平方向の余白
		 */
		--index-space-width: var(--header-padding-x);
		--index-space-width-double: var(--header-padding-x);

		/*
		 * 垂直方向の余白
		 */
		--index-space-height: calc(var(--header-padding-x) * 2);
	}
}

/*	DisplayWidth < XS	*/
@media (max-width: 575px) {

	/* Custom Properties
	--------- --------- --------- ------- */
	:root {
		/*
		 * フォントサイズ
		 */
		--snap-section-title-font-size: 3.21rem;			/*	--title-font-size-45	*/
		--snap-section-title-small-font-size: 1.14rem;		/*	--title-font-size-16	*/
	}
}



/* Common Tags
--------- --------- --------- ------- */
body {
	/*	スクロールバー非表示（IE・Edge）	*/
	-ms-overflow-style: none;
	/*	スクロールバー非表示（Firefox）	*/
	scrollbar-width: none;

	/*
	 * スクロール領域の境界に達したときの挙動
	 * モバイルのPull-to-Refresh（下に引っ張ると再読み込み）を防ぐために使用しています
	 */
	overscroll-behavior: none;
}
body::-webkit-scrollbar{
	/*	スクロールバー非表示（Chrome・Safari）	*/
	display: none;
}

html, body {
}

* {
}





/* ::::: [SECTION : HEADER] ::::: */

/* Page Header
--------- --------- --------- ------- */
#pageHeader {
	color: #ffffff;
}





/* ::::: [LOADING-SPLASH] ::::: */

/* Setting		https://coco-factory.jp/ugokuweb/move01/4-1-4/
--------- --------- --------- ------- */
#loading-splash {
	background-color: #ffffff;

/*	width: 100vw;*/
	width: 100%;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
}
.loading-splash-wrapper {
}

/* Logo Setting
--------- --------- --------- ------- */
#loading-splash-logo {
	width: max(260px, 50vw);
	position: absolute;
	top: 45%;
	left: 50%;
	opacity: 0;
	transform: translate(-50%, -50%);

/*	background-color: rgba(0, 255, 0, 0.3);*/
}

.loading-splash-logo-wrapper {
	width: inherit;
	height: inherit;
	position: relative;

/*	background-color: rgba(0, 0, 255, 0.3);*/
}

/*	2秒（2s）かけてスケールアウトしながらフェードイン	*/
#loading-splash-logo.scaleOut-fadeIn {
	animation-name: scaleOut-fadeIn;
	animation-duration: 2s;
	animation-fill-mode: forwards;
}
@keyframes scaleOut-fadeIn {

	0% {
		opacity: 0;
		transform: translate(-50%, -50%) scale(1);
	}
	10% {
		opacity: 0;
		animation-timing-function: ease-in;
	}
	100% {
		opacity: 1;
		transform: translate(-50%, -50%) scale(1);
		animation-timing-function: ease-out;
	}
}

/*	1秒（1s）かけてフェードイン	*/
#loading-splash-logo.fadeIn {
	animation-name: logo-fadeIn;
	animation-duration: 1s;
	animation-timing-function: ease-in;
	animation-fill-mode: forwards;
	animation-direction: normal;
}
@keyframes logo-fadeIn {
	0% {
		opacity: 0;
	}
	40% {
		opacity: 1;
	}
	100% {
		opacity: 1;
	}
}

/*	1秒（1s）かけてフェードアウト	*/
#loading-splash-logo.fadeOut {
	animation-name: logo-fadeOut;
	animation-duration: 1s;
	animation-timing-function: ease-in;
	animation-fill-mode: forwards;
	animation-direction: normal;
}
@keyframes logo-fadeOut {
	0% {
		opacity: 1;
	}
	20% {
		opacity: 1;
	}
	80% {
		opacity: 0.1;
	}
	100% {
		opacity: 0;
	}
}

/* Media Query
--------- --------- --------- ------- */
/*	DisplayWidth > XL	*/
@media (min-width: 1400px) {
}

/*	DisplayWidth < SM	*/
@media (max-width: 767px) {
}

/*	DisplayWidth < XS	*/
@media (max-width: 575px) {
}





/* ::::: [INDEX-SECTION-WAVES] ::::: */

/* Setting
--------- --------- --------- ------- */
#index-section-waves {
	width: 100%;
	height: 100%;
	display: none;
	overflow: hidden;
	position: fixed;
	bottom: 0;
	z-index: 9999;
}
.index-section-waves-wrapper {
}

#index-section-waves .svg {
/*	width: 100%;*/
	height: auto;
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
}

/* Waves Setting
--------- --------- --------- ------- */
/*	大きい波の設定	*/
.wave-large {
	vertical-align: bottom;
	width: 200vw;
	height: auto;
	margin-left: 0%;
	position: absolute;
	bottom: 0;
	left: 0;
	transform: translateX(-50%);
	opacity: 0.9;
	z-index: 9991;
}
/*	大きい波のアニメーション（ロード時）	*/
.wave-large.waveMoving.waveMoving-Loaded {
	animation-name: wave-loading-large;
	animation-duration: 2s;
	animation-timing-function: ease-out;
	animation-fill-mode: forwards;
	animation-direction: normal;
/*	animation: none;*/
}
/*	大きい波のアニメーション（行き）	*/
.wave-large.waveMoving {
	animation-name: wave-large;
	animation-duration: 1s;
	animation-timing-function: ease-out;
	animation-fill-mode: forwards;
	animation-direction: normal;
/*	animation: none;*/
}
/*	大きい波のアニメーション（戻り）	*/
.wave-large.waveMovingReverse {
	animation-name: wave-large-reverse;
	animation-duration: 1s;
	animation-timing-function: ease-in;
	animation-fill-mode: forwards;
	animation-direction: normal;
/*	animation: none;*/
}
/*	大きい波のアニメーション（ロード時）	*/
@keyframes wave-loading-large {

	0% {
		opacity: 0;
		transform: translateX(-50%);
		animation-timing-function: ease-in;
	}
	10% {
		opacity: 0;
	}
	75% {
/*		opacity: 0.9;*/
		transform: translateX(-5%);
	}
	90% {
		opacity: 0.9;
		transform: translateX(0%);
		animation-timing-function: ease-out;
	}
	100% {
		opacity: 0.9;
		transform: translateX(0%);
/*		animation-timing-function: ease-out;*/
	}
}
/*	大きい波のアニメーション（行き）	*/
@keyframes wave-large {

	from {
		transform: translateX(-25%);
		animation-timing-function: ease-in;
	}

	to {
		transform: translateX(0);
		animation-timing-function: ease-out;
	}
}
/*	大きい波のアニメーション（戻り）	*/
@keyframes wave-large-reverse {

	0% {
		transform: translateX(0%);
	}
	5% {
		transform: translateX(0%);
		animation-timing-function: ease-in;
	}
	90% {
		transform: translateX(-20%);
	}
	100% {
		transform: translateX(-25%);
		animation-timing-function: ease-out;
	}
}

/*	小さい波の設定	*/
.wave-small {
	vertical-align: bottom;
	width: 200vw;
	height: auto;
	margin-left: 0%;
	position: absolute;
	bottom: 0;
	left: 0;
	transform: translateX(-50%);
	opacity: 0.9;
	z-index: 9992;
}
/*	小さい波のアニメーション（ロード時）	*/
.wave-small.waveMoving.waveMoving-Loaded {
	animation-name: wave-loading-small;
	animation-duration: 2s;
	animation-timing-function: ease-out;
	animation-fill-mode: forwards;
	animation-direction: normal;
/*	animation: none;*/
}
/*	小さい波のアニメーション（行き）	*/
.wave-small.waveMoving {
	animation-name: wave-small;
	animation-duration: 1s;
	animation-timing-function: ease-out;
	animation-fill-mode: forwards;
	animation-direction: normal;
/*	animation: none;*/
}
/*	小さい波のアニメーション（戻り）	*/
.wave-small.waveMovingReverse {
	animation-name: wave-small-reverse;
	animation-duration: 1s;
	animation-timing-function: ease-in;
	animation-fill-mode: forwards;
	animation-direction: normal;
/*	animation: none;*/
}
/*	小さい波のアニメーション（ロード時）	*/
@keyframes wave-loading-small {

	0% {
		opacity: 0;
		transform: translateX(-50%);
		animation-timing-function: ease-in;
	}
	10% {
		opacity: 0;
	}
	75% {
		transform: translateX(-5%);
	}
	90% {
		opacity: 0.9;
		transform: translateX(0%);
		animation-timing-function: ease-out;
	}
	100% {
		opacity: 0.9;
		transform: translateX(0%);
/*		animation-timing-function: ease-in;*/
	}
}
/*	小さい波のアニメーション（行き）	*/
@keyframes wave-small {

	from {
		transform: translateX(-50%);
		animation-timing-function: ease-in;
	}

	to {
		transform: translateX(0%);
		animation-timing-function: ease-out;
	}
}
/*	小さい波のアニメーション（戻り）	*/
@keyframes wave-small-reverse {

	0% {
		transform: translateX(0%);
	}
	5% {
		transform: translateX(0%);
		animation-timing-function: ease-in;
	}
	90% {
		transform: translateX(-45%);
	}
	100% {
		transform: translateX(-50%);
		animation-timing-function: ease-out;
	}
}
/**		*/
.scrolldown {
}

/* Media Query
--------- --------- --------- ------- */
/*	DisplayWidth > XL	*/
@media (min-width: 1400px) {
}

/*	DisplayWidth < SM	*/
@media (max-width: 767px) {
}

/*	DisplayWidth < XS	*/
@media (max-width: 575px) {

	/* Waves Setting
	--------- --------- --------- ------- */
	/*	大きい波の設定	*/
	.wave-large {
		width: 800vw;
	}

	/*	小さい波の設定	*/
	.wave-small {
		width: 800vw;
	}
}





/* ::::: [INDEX-SECTIONS] ::::: */

/* Setting
--------- --------- --------- ------- */
.index-sections {
	background-color: #ffffff;
	margin: 0 auto;
	width: 100%;
	height: 100vh;
	overflow: hidden auto;
	position: relative;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	display: block;

/*	background-color: rgba(255, 0, 0, 0.5);*/

	/*
	 * スクロールの挙動（スナップ）
	 */
	scroll-snap-type: y mandatory;
/*	scroll-snap-type: y proximity;*/
/*	scroll-snap-type: none;*/

	/*
	 * スクロール領域の境界に達したときの挙動
	 * モバイルのPull-to-Refresh（下に引っ張ると再読み込み）を防ぐために使用しています
	 */
	overscroll-behavior: none;
}

/* Section Item
--------- --------- --------- ------- */
.index-sections .index-section-item {
	width: 100%;
	height: 100vh;
	scroll-snap-align: start;
/*	scroll-snap-align: none;*/
/*	scroll-snap-stop: normal;*/
}

.index-section-item {
	width: 100%;
	position: relative;

	/*background-color: rgba(0, 255, 0, 0.3);*/
}

/* Section Item Eyecatch Parts
--------- --------- --------- ------- */
.index-section-item .index-section-item-eyecatch {
	width: 100%;
	height: 100%;
}
.index-section-item-eyecatch {
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;

	/*background-color: rgba(255, 0, 255, 0.5);*/
}
.index-section-item-eyecatch::after {
	content: "";
	background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
/*	background: linear-gradient(rgba(238, 38, 33, 0), rgba(238, 38, 33, 1));*/
	width: 100%;
	height: 40%;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 2;
}

/*	Image	*/
.index-section-item-eyecatch img {
	display: block;
	margin: 0;
	padding: 0;
}

/*	Eyecatch Cover	*/
.index-section-item-eyecatch .eyecatch-cover {
	width: 100%;
	height: 100%;
	z-index: 1;
}
.eyecatch-cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
}

/*	Eyecatch Separate	*/
.index-section-item-eyecatch .eyecatch-separate {
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 1;
}
.eyecatch-separate .eyecatch-separate-parts {
	width: 25%;
	height: 100%;
	margin: 0;
	padding: 0;
	display: inline-block;
	position: absolute;
}
.eyecatch-separate-parts img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.eyecatch-separate .eyecatch-separate-parts:nth-child(1) {
	top: 0;
	left: 0;
}
.eyecatch-separate .eyecatch-separate-parts:nth-child(2) {
	top: 0;
	left: 25%;
}
.eyecatch-separate .eyecatch-separate-parts:nth-child(3) {
	top: 0;
	left: 50%;
}
.eyecatch-separate .eyecatch-separate-parts:nth-child(4) {
	top: 0;
	left: 75%;
}

/* Section Item Wrapper
--------- --------- --------- ------- */
.index-section-item .index-section-item-wrapper {
	width: 100%;
	height: 100%;
}
.index-section-item-wrapper {
	width: 100%;
	position: relative;
	z-index: 3;

	/*background-color: rgba(0, 0, 255, 0.1);*/
}

/* Section Item Overlays
--------- --------- --------- ------- */
.index-section-item .index-section-item-overlays {
}
.index-section-item-overlays {
	position: absolute;
	top: 48%;
	left: var(--index-space-width-double);
	transform: translate(0, -50%);

/*	background-color: rgba(0, 0, 255, 0.1);*/
}

/**	Title	*/
.index-section-item-overlays .title {
	color: #ffffff;
	font-size: var(--snap-section-title-font-size);		/*	--title-font-size-100	*/
	font-family: var(--common-font-an-family);
	font-weight: var(--common-font-an-weight-bold);
	font-style: var(--common-font-an-style);
	line-height: 1.2em;
	letter-spacing: 0.1em;
	text-shadow: 0 0 3px rgba(0, 0, 0, 0.3), 3px 3px 5px rgba(0, 0, 0, 0.3);
	margin-bottom: 1.5rem;
	display: block;
}
/**	Title Small	*/
.index-section-item-overlays .title-small {
	color: #ffffff;
	font-size: var(--snap-section-title-small-font-size);	/*	--title-font-size-32	*/
	font-family: var(--common-font-family);
	font-weight: var(--common-font-weight-medium);
	font-style: var(--common-font-style);
	line-height: 1.5em;
	letter-spacing: 0.1em;
	text-shadow: 0 0 3px rgba(0, 0, 0, 0.3), 3px 3px 5px rgba(0, 0, 0, 0.3);
	margin-bottom: 0;
	display: block;
}

/**	Link	*/
.index-section-item-overlays .link-detail {
	color: #ffffff;
	letter-spacing: 0.1em;
	text-decoration: none;
	margin-top: 4em;
	padding-bottom: 1em;
	border-bottom: solid 1px currentColor;
	display: inline-block;
}
.index-section-item-overlays .link-detail::after {
	content: "";
	background: url("../images/index/icon-circle-white-arrow.svg") no-repeat center;
	background-size: contain;
	vertical-align: bottom;
	width: 1.5em;
	height: 1.5em;
	margin-left: .5em;
	display: inline-block;
}
.index-section-item-overlays .link-detail:hover {
}

/* Section Item Contents
--------- --------- --------- ------- */
.index-section-item .index-section-item-content {
}
.index-section-item-content {
	width: 100%;
	padding-left: var(--header-padding-x);
	padding-right: 20%;

	position: relative;
	z-index: 3;
/*	background-color: rgba(0, 0, 0, 0.5);*/
}

/* Section Item Contents Flex
--------- --------- --------- ------- */
.index-section-item-content .index-section-item-content-flex {
}
.index-section-item-content-flex {
	--flex-title-font-size: max(2rem, 2.92vw);
    --flex-padding-1: calc(var(--header-padding-x) * 2);
    --flex-padding-2: max(7.5rem, 8.33vw);

    width: calc(100vw - calc(var(--flex-padding-1) + var(--flex-padding-2)));
/*    height: calc(100vh - 25%);*/
	height: auto;
	padding-top: max(120px, 10%);

	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: stretch;
    align-items: center;
    gap: 3vw;

/*	background-color: rgba(255, 0, 0, 0.2);*/
}

.index-section-item-content-flex .flex-title {
	font-size: var(--flex-title-font-size);
	width: 2em;
	flex-basis: 2em;

/*	background-color: rgba(255, 0, 0, 0.2);*/
}
.index-section-item-content-flex .flex-title .title {
}
.index-section-item-content-flex .flex-title .title-small {
}

.index-section-item-content-flex .flex-content {
	width: 95%;
    height: 95%;
    overflow: auto;

/*	background-color: rgba(0, 255, 0, 0.2);*/
}


/* Media Query
--------- --------- --------- ------- */

/*	DisplayWidth < SM	*/
@media (max-width: 767px) {
	/* Setting
	--------- --------- --------- ------- */
	.index-sections {
		/*
		 * スクロールの挙動（スナップ）
		 */
/*		scroll-snap-type: none;*/
		scroll-snap-type: y proximity;
	}

	/* Section Item
	--------- --------- --------- ------- */
	.index-sections .index-section-item {
/*		scroll-snap-align: none;*/
		scroll-snap-stop: normal;
	}

	/* Section Item Contents Flex
	--------- --------- --------- ------- */
	.index-section-item-content .index-section-item-content-flex {
	}
	.index-section-item-content-flex {
		flex-direction: column;
		flex-wrap: wrap;
		justify-content: flex-start;
		align-items: stretch;
	}
	.index-section-item-content-flex .flex-content {
	}
}

/*	DisplayWidth < XS	*/
@media (max-width: 575px) {

	/* Section Item Contents Flex
	--------- --------- --------- ------- */
	.index-section-item-content .index-section-item-content-flex {
	}
	.index-section-item-content-flex {
		width: 100%;
	}
	.index-section-item-content-flex .flex-content {
	}
}

/*	画面が横に長くなるとき用	*/
@media (aspect-ratio: 16 / 9), (min-aspect-ratio: 16 / 9) {
}

/*	画面が縦に長くなるとき用	*/
@media (orientation: portrait) and (max-width: 767px) {

	/* Setting
	--------- --------- --------- ------- */
	.index-sections {
	}

	/* Section Item
	--------- --------- --------- ------- */
	.index-sections .index-section-item {
	}

	/* Section Item Eyecatch Parts
	--------- --------- --------- ------- */
	.index-section-item .index-section-item-eyecatch {
	}

	/*	Image	*/

	/*	Eyecatch Cover	*/

	/*	Eyecatch Separate	*/
	.index-section-item-eyecatch .eyecatch-separate {
	}
	.eyecatch-separate .eyecatch-separate-parts {
		width: 100%;
		height: 25%;
	}

	.eyecatch-separate .eyecatch-separate-parts:nth-child(1) {
		top: 0;
		left: 0;
	}
	.eyecatch-separate .eyecatch-separate-parts:nth-child(2) {
		top: 25%;
		left: 0;
	}
	.eyecatch-separate .eyecatch-separate-parts:nth-child(3) {
		top: 50%;
		left: 0;
	}
	.eyecatch-separate .eyecatch-separate-parts:nth-child(4) {
		top: 75%;
		left: 0;
	}

	/* Section Item Wrapper
	--------- --------- --------- ------- */
	.index-section-item .index-section-item-wrapper {
	}
	.index-section-item-wrapper {
	}

	/* Section Item Contents
	--------- --------- --------- ------- */
	.index-section-item .index-section-item-content {
	}
	.index-section-item-content {
		padding-right: var(--header-padding-x);
	}
}





/* ::::: [INDEX-SECTION-ITEM-MOVIE] ::::: */

/* イメージ動画: MOVIE
 * Setting
--------- --------- --------- ------- */
#index-section-item-movie.index-section-item {
}
#index-section-item-movie {
	--movie-title-font-size: max(2rem, 4vw);
	--movie-title-line-height: 1.5em;
	--movie-title-middle-font-size: max(1.17rem, 2.35vw);
	--movie-title-middle-line-height: 2em;

/*	background: url("../images/index/index-movie-20230309-thumbnail.jpg") no-repeat center;
	background-size: cover;*/

	width: 100%;
	height: 100vh;
	position: relative;
	overflow: hidden;
}

#index-section-item-movie .index-section-item-wrapper > video {
/*	min-width: 101%;
	min-height: 101%;*/
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);

	width: inherit;
	height: inherit;
	object-fit: cover;
}

/**	Title	*/
#index-section-item-movie .index-section-item-overlays .title {
	color: rgba(255, 255, 255, 0.82);
	font-size: var(--movie-title-font-size);
	line-height: var(--movie-title-line-height);
}

/**	Title Middle	*/
#index-section-item-movie .index-section-item-overlays .title-middle {
	color: #ffffff;
	font-size: var(--movie-title-middle-font-size);
	font-family: var(--common-font-family);
	font-weight: var(--common-font-weight-medium);
	font-style: var(--common-font-style);
	line-height: var(--movie-title-middle-line-height);
	letter-spacing: initial;
	text-shadow: 0 0 3px rgba(0, 0, 0, 0.3), 3px 3px 5px rgba(0, 0, 0, 0.3);
	margin-bottom: 0;
	padding-left: 0.4em;
	display: block;
}

/**	Title Small	*/
#index-section-item-movie .index-section-item-overlays .title-small {
	margin-top: 1em;
	padding-left: 0.4em;
}


/* Media Query
--------- --------- --------- ------- */
/*	画面サイズが変わっても常に動画の中央が表示されるようにする	*/
/*	動画よりも画面が横に長くなるとき用	*/
@media (aspect-ratio: 16 / 9), (min-aspect-ratio: 16 / 9) {
}

/*	動画よりも画面が縦に長くなるとき用	*/
@media (max-aspect-ratio: 16 / 9) {
}

/*	DisplayWidth > XL	*/
@media (min-width: 1400px) {
}

/*	DisplayWidth < SM	*/
@media (max-width: 767px) {
}

/*	DisplayWidth < XS	*/
@media (max-width: 575px) {

	/* Setting
	--------- --------- --------- ------- */
	#index-section-item-movie.index-section-item {
	}
	#index-section-item-movie {
		--movie-title-font-size:  8vw;
		--movie-title-middle-font-size: 1.14rem;

/*		background: url("../images/index/index-movie-20230309-portrait-thumbnail.jpg") no-repeat center;
		background-size: cover;*/
	}
}



/* ::::: [INDEX-SECTION-ITEM-ABOUT_US] ::::: */

/* グループ概要: ABOUT-US
 * Setting
--------- --------- --------- ------- */
#index-section-item-about_us.index-section-item {
}
#index-section-item-about_us {
/*	background: rgba(0, 0, 0, 0.35) url("../images/index/index-section-item-about_us.jpg") no-repeat center center;
	background-size: cover;
	background-attachment: fixed;
	background-attachment: initial;*/
}

/* Media Query
--------- --------- --------- ------- */
/*	DisplayWidth < SM	*/
@media (max-width: 767px) {
	#index-section-item-about_us.index-section-item {
	}
	#index-section-item-about_us {
/*		background-image: url("../images/index/index-section-item-about_us-portrait.jpg");
		background-attachment: initial;
		background-attachment: fixed;*/
	}
}



/* ::::: [INDEX-SECTION-ITEM-RECRUIT] ::::: */

/* 採用情報: RECRUIT
 * Setting
--------- --------- --------- ------- */
#index-section-item-recruit.index-section-item {
}
#index-section-item-recruit {
/*	background: rgba(0, 0, 0, 0.35) url("../images/index/index-section-item-recruit.jpg") no-repeat center center;
	background-size: cover;
	background-attachment: fixed;
	background-attachment: initial;*/
}

/* Media Query
--------- --------- --------- ------- */
/*	DisplayWidth < SM	*/
@media (max-width: 767px) {
	#index-section-item-recruit.index-section-item {
	}
	#index-section-item-recruit {
/*		background-image: url("../images/index/index-section-item-recruit-portrait.jpg");
		background-position-y: top;
		background-size: 100vw;
		background-attachment: fixed;
		background-attachment: initial;*/
	}
}



/* ::::: [INDEX-SECTION-ITEM-GROUP] ::::: */

/* グループ会社: GROUP
 * Setting
--------- --------- --------- ------- */
#index-section-item-group.index-section-item {
}
#index-section-item-group {
/*	background: rgba(0, 0, 0, 0.35) url("../images/index/index-section-item-group.jpg") no-repeat center center;
	background-size: cover;
	background-attachment: fixed;
	background-attachment: initial;*/
/*	height: 300vh;*/
	background-color: rgba(0, 0, 0, 1);
/*	background-color: rgba(238, 38, 33, 1);*/
	height: auto;
	padding-bottom: 60vh;
}

#index-section-item-group .index-section-item-eyecatch {
	height: 100vh;
}

#index-section-item-group .index-section-item-wrapper {
	height: 60vh;
}

#index-section-item-group .index-section-item-overlays {
	top: 60%;
}

#index-section-item-group .index-section-item-content {
}


/* Media Query
--------- --------- --------- ------- */
/*	DisplayWidth < SM	*/
@media (max-width: 767px) {
	#index-section-item-group.index-section-item {
	}
	#index-section-item-group {
/*		background-image: url("../images/index/index-section-item-group-portrait.jpg");
		background-position-y: top;
		background-size: 100vw;
		background-attachment: fixed;
		background-attachment: initial;*/

		padding-bottom: 10vh;
	}

	#index-section-item-group .index-section-item-content {
	}
}



/* ::::: [INDEX-SECTION-ITEM-INSTAGRAM] ::::: */

/* インスタグラム: INSTAGRAM
 * Setting
--------- --------- --------- ------- */
#index-section-item-instagram {
	background: url("../images/index/index-section-item-instagram.jpg") no-repeat center;
	background-size: cover;
}
/*#index-section-item-instagram::before {グラデーションを重ねるため
	content: "";
	background: -webkit-radial-gradient(#ffdb2c 10%, rgba(255, 105, 34, 0.65) 55%, rgba(255, 88, 96, 0) 70%);
	background: radial-gradient(#ffdb2c 10%, rgba(255, 105, 34, 0.65) 55%, rgba(255, 88, 96, 0) 70%);グラデーション②
    width: 100%;
    height: 100%;
	position: absolute;
    bottom: -20%;
    left: 50%;
}
#index-section-item-instagram::after {
	content: "";
	background: rgba(255, 255, 255, 0.5);
    width: 100%;
    height: 100%;
	position: absolute;
    bottom: 0;
    left: 0;
}*/

#index-section-item-instagram.index-section-item {
}

#index-section-item-instagram {
    --instagram-color: var(--common-pointed-color-1);
    --instagram-contents-padding-1: calc(var(--header-padding-x) * 2);
    --instagram-contents-padding-2: max(7.5rem, 8.33vw);

	background-color: rgba(255, 255, 255, 1);
/*	height: 300vh;*/
	height: auto;
/*	padding-bottom: 60vh;*/
	min-height: 100%;
}

#index-section-item-instagram .index-section-item-wrapper {
	height: 60vh;
}

#index-section-item-instagram .index-section-item-overlays {
	top: 60%;
}

#index-section-item-instagram .index-section-item-content {

}

#index-section-item-instagram .index-section-item-content .index-section-item-content-flex {
}
#index-section-item-instagram .index-section-item-content-flex {
}

#index-section-item-instagram .index-section-item-content-flex .flex-title {
	width: auto;
}
#index-section-item-instagram .index-section-item-content-flex .flex-title .title {
	color: var(--instagram-color);
	font-size: var(--flex-title-font-size);
	--flex-title-font-size: max(1.85rem, 2.92vw);
	font-family: var(--common-font-an-family);
	font-weight: var(--common-font-an-weight-bold);
	font-style: var(--common-font-an-style);
	line-height: 1.2em;
	letter-spacing: 0.15em;
	text-shadow: 0 0 3px rgba(255, 255, 255, 0.3), 3px 3px 5px rgba(0, 0, 0, 0.3);
	display: block;
}
#index-section-item-instagram .index-section-item-content-flex .flex-title .title-small {
	font-size: max(0.72rem, 1.2vw);
	line-height: 1.5em;
	margin-top: 1.5em;
}

.index-section-item-content-flex .flex-content {
}

/* Media Query
--------- --------- --------- ------- */

/*	DisplayWidth < MD	*/
@media (max-width: 991px) {
	#index-section-item-instagram.index-section-item {
	}
	#index-section-item-instagram {
		padding-bottom: 10vh;
	}

	#index-section-item-instagram .index-section-item-content {
	}
}

/*	DisplayWidth < SM	*/
@media (max-width: 767px) {
	#index-section-item-instagram.index-section-item {
	}
	#index-section-item-instagram {
		padding-bottom: 5vh;
	}

	#index-section-item-instagram .index-section-item-content {
	}
}






/* ::::: [CARD-GROUP-COMPANY] ::::: */

/* CARD-GROUP-COMPANY
 * グループ会社 一覧表示
--------- --------- --------- ------- */
.card-group-company {
	background-color: rgba(255, 255, 255, 0.9);
	font-size: inherit;
	margin: 0;
	padding: 0;
	border: none;
	border-radius: 0 max(1rem, 2.35vw) 0 0;
	position: relative;
}
/*.card-group-company::before {
	content: "";
	background: url("../images/common/icon-circle-red-hole.svg") no-repeat;
	background-size: cover;
	width: max(1rem, 1.6vw);
	height: max(1rem, 1.6vw);
	position: absolute;
	bottom: max(0.7em, 1.27vw);
	right: max(0.7em, 1.27vw);
	opacity: 1;
	z-index: -1;
}*/

.card-group-company,
.card-group-company a {
	color: inherit;
	text-decoration: inherit;
	aspect-ratio: auto;
	height: 100%;
}

/* Bootstrap Card Hack
--------- --------- --------- ------- */
.card-group-company .card-header,
.card-group-company .card-body,
.card-group-company .card-footer {
}
.card-group-company .card-footer {
	border: none;
	background: transparent;
}
.card-group-company .card-body {
	width: 100%;
	height: 100%;
	padding: 0.3em 2.5em 1em 1em;
	padding: 0.3em 1em 1em 1em;
	padding: 0.3em 1em;
}

.card-group-company .card-title,
.card-group-company .card-text {
	margin: 0;
	padding: 0;
}
.card-group-company .card-title {
	color: var(--common-pointed-color-1);
	text-align: center;
	width: 100%;
	height: auto;
	aspect-ratio: 4 / 1;
}
.card-group-company .card-text {
	font-size: max(0.78rem, 1.05vw);		/*	--title-font-size-20	*/
	line-height: 1.75em;
	margin-top: 0.5em;
	font-size: max(0.78rem, 1.0vw);		/*	--title-font-size-20	*/
	line-height: 1.5em;
	margin-top: 0;
	padding-left: 1em;
	padding: 0.5em 0 0.5em 1em;
	border-left: solid 2px var(--common-pointed-color-1);
}

.card-group-company img,
.card-group-company svg {
	width: 100%;
	height: 100%;
	object-fit: contain;
	object-position: center;
}

/*	グループ会社詳細モーダルウィンドウを開くボタン	*/
.card-group-company .card-button {
}
.card-group-company .card-button .btn-detail-modal {
	background-color: #ee2621;
	color: #ffffff;
	height: auto;
	padding: 0 1em;
	border: solid 1px #ffffff;
	border-radius: 1em;
	display: inline-block;
}
.card-group-company .card-button .btn-detail-modal:hover,
.card-group-company .card-button .btn-detail-modal:focus,
.card-group-company .card-button .btn-detail-modal:active {
	background-color: #ffffff;
	color: #ee2621;
	border-color: #ee2621;
}





/* ::::: [CARD-INSTAGRAM] ::::: */

/* CARD-INSTAGRAM
 * Instagram 一覧表示
--------- --------- --------- ------- */
.card-instagram.index {
	box-shadow: 0 0 0.5vw rgba(0, 0, 0, 0.3);
}

.card-instagram.index .card-header {
}
.card-instagram.index .card-footer {
}

.card-instagram.index .card-img-top {
}

.card-instagram.index .card-title,
.card-instagram.index .card-subtitle {
}

.card-instagram.index .card-title {
	margin-bottom: 0.5em;
}

.card-instagram.index .card-body {
}

.card-instagram.index .card-text {
	line-height: 1.5em;
	margin: 0;
	padding: 0;
}

.card-instagram.index .card-date {
	line-height: 1.5em;
	margin: 0;
	padding: 0;
}

.card-instagram.index .icon-instagram-glyph {
	width: max(1.33rem, 1.25vw);
	height: auto;
	display: inline-block;
}

.card-instagram.index .btn-instagram {
	padding: 0.2em 0.7em;
}


/* Media Query
--------- --------- --------- ------- */
/*	DisplayWidth > XL	*/
@media (min-width: 1400px) {
}

/*	DisplayWidth < LG	*/
@media (max-width: 991px) {

	/* Instagram 一覧表示
	--------- --------- --------- ------- */
	.card-instagram.index {
		max-width: initial;
	}
}

/*	DisplayWidth < SM	*/
@media (max-width: 767px) {
}

/*	DisplayWidth < XS	*/
@media (max-width: 575px) {
}





/* ::::: [INDEX-MENU] ::::: */

/* Setting
--------- --------- --------- ------- */

/* Setting
--------- --------- --------- ------- */
#index-menu {
	font-size: max(1.2rem, 1.1vw);
	font-family: var(--common-font-an-family);
	font-style: var(--common-font-an-style);
	font-weight: var(--common-font-an-weight-medium);
	line-height: 1em;
	position: fixed;
	top: 50%;
/*	right: max(1rem, 6vw);*/
	right: var(--header-padding-x);
	transform: translateY(-50%);

	/*background-color: rgba(0, 0, 255, 0.2);*/
}

/* Pagenator Setting
--------- --------- --------- ------- */
#index-menu #index-snap-section-pagenator {
	list-style: none;
	margin: 0;
	padding: 0;
}
#index-snap-section-pagenator li {
	color: #ffffff;
	text-align: right;
/*	letter-spacing: 0.1em;*/
	padding: 0.5em 1em 1em 0.5em;
	border-right: solid 3px rgba(160, 160, 160, 0.2);
	display: block;
	cursor: pointer;
	transition: 0.5s;
}
#index-snap-section-pagenator li.disabled {
	display: none !important;
}
#index-snap-section-pagenator li .title {
	font-family: var(--common-font-family);
	font-style: var(--common-font-style);
	font-weight: var(--common-font-weight);
	text-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
	display: block;
}
#index-snap-section-pagenator li .title-small {
	font-size: 0.56em;
	text-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
	display: block;
}

#index-snap-section-pagenator li:hover,
#index-snap-section-pagenator li:focus {
	opacity: 0.5;
}

#index-snap-section-pagenator li.current,
#index-snap-section-pagenator li.passed {
	border-right-color: rgba(255, 255, 255, 0.7);
}

/* SNS Setting
--------- --------- --------- ------- */
#index-menu #sns-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}
#sns-menu li {
	margin: 0;
	padding: 0;
}
#sns-menu li a {
}
#sns-menu li svg,
#sns-menu li img {
	width: 2rem;
}

/* Media Query
--------- --------- --------- ------- */
/*	DisplayWidth > XL	*/
@media (min-width: 1400px) {
}

/*	DisplayWidth < SM	*/
@media (max-width: 767px) {
}

/*	DisplayWidth < XS	*/
@media (max-width: 575px) {

	/* Setting
	--------- --------- --------- ------- */
	#index-menu {
		top: auto;
		bottom: var(--index-space-height);
		transform: translate(0);
	}
	#index-snap-section-pagenator li {
		padding: 1em 0;
		cursor: initial;
	}
	#index-menu #index-snap-section-pagenator::after {
		content: "";
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
	}

	#index-snap-section-pagenator li .title {
		display: none !important;
	}
	#index-snap-section-pagenator li .title-small {
		display: none !important;
	}
}





/* ::::: [ANIMATIONS] ::::: */

/* Animation FadeInUp
--------- --------- --------- ------- */
.index-parts-fadeInUp {
	animation-name: parts-fadeIn;
	animation-duration: 0.5s;
	animation-timing-function: ease-in;
	animation-delay: 0.5s;
	animation-direction: normal;
	animation-fill-mode: forwards;
	opacity: 0;
	transform: translateY(1.5em);
}

@keyframes parts-fadeIn {
	from {
		opacity: 0;
		transform: translateY(1.5em);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* INDEX-FOREFRONT-ANIMATIONS
--------- --------- --------- ------- */
/*		*/
.index-forefront {
	/*z-index: 99999;*/
}
/*		*/
.index-forefront-hide {
	opacity: 0;
}
/*		*/
.index-forefront-show {
	animation-name: fade-in-bottom;
	animation-duration: 1s;
	animation-timing-function: ease-out;
	animation-fill-mode: forwards;
}

@keyframes fade-in-bottom {
   0% {
		opacity: 0;
		transform: translateY(1em);
   }
   100% {
		opacity: 1;
		transform: translateY(0);
   }
}

/* INDEX-ANIMATION-SNAP
--------- --------- --------- ------- */
/*		*/
.index-animation-snap {
}

/*		*/
.index-animation-snap.hide {
	opacity: 0;
}
/*		*/
.index-animation-snap.show {
	animation-name: fade-in-bottom;
	animation-duration: 1s;
	animation-timing-function: ease-out;
	animation-fill-mode: forwards;
}

/* INDEX-ANIMATION-SNAP
--------- --------- --------- ------- */
/*		*/
.index-animation-snap-list {
}
.index-animation-snap-list-item {
}

/*		*/
.index-animation-snap-list-item.hide {
	opacity: 0;
}
/*		*/
.index-animation-snap-list-item.show {
	animation-name: fade-in-bottom;
	animation-duration: 1s;
	animation-timing-function: ease-out;
	animation-fill-mode: forwards;
}