/* ========================================
   KVセクション
======================================== */
.kv_images {
	height: 100svh;
	height: calc(100svh - 8.6rem);
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0;
}
.kv_images_item {
	position: relative;
	height: 100%;
	overflow: hidden;
}
.kv_title_right {
	position: absolute;
	top: 28%;
	right: 2rem;
	font-size: 4rem;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: 0.04rem;
	color: #fff;
	writing-mode: vertical-rl;
}
.kv_title_left {
	position: absolute;
	top: 28%;
	left: 2rem;
	font-size: 4rem;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: 0.04rem;
	color: #fff;
	writing-mode: vertical-rl;
}
.kv_images img {
	width: 100%;
	object-fit: cover;
	object-position: center top;
	height: 100%;
}
.kv_doco {
	margin-top: -7.2rem;
}
.flow_text {
	bottom: 0;
	overflow: hidden;
	display: flex;
	width: 100%;
	margin-inline: calc(50% - 50vw);
}

.flow_text_item {
	flex-shrink: 0;
	white-space: nowrap;
	font-size: 7.2rem;
	font-weight: 700;
	letter-spacing: 0.04rem;
	line-height: 1.16;
	color: var(--text-color-light);
	opacity: 0.36;
	z-index: 10;
}

.kv_doco .flow_text_item:nth-child(odd) {
	animation: MoveLeft 180s -90s infinite linear;
}
.kv_doco .flow_text_item:nth-child(even) {
	animation: MoveLeft2 180s infinite linear;
}

@keyframes MoveLeft {
	from {
		transform: translateX(100%);
	}
	to {
		transform: translateX(-100%);
	}
}

@keyframes MoveLeft2 {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-200%);
	}
}

@media screen and (max-width: 767px) {
	.kv_title_right {
		top: 22%;
		right: 2rem;
		font-size: 2.5rem;
	}
	.kv_title_left {
		top: 22%;
		left: 2rem;
		font-size: 2.5rem;
	}
	.flow_text_item {
		font-size: 5.8rem;
		line-height: 1.2;
	}
}

/* ========================================
   Aboutセクション
======================================== */
.about_wrap {
	margin-top: 19rem;
}
.about_content {
	display: flex;
	flex-direction: row;
	gap: 8rem;
}
.about_title_wrap {
	display: flex;
	flex-direction: row;
	gap: 14.1rem;
	margin-left: 14.6rem;
}
.about_title {
	font-size: 4.8rem;
	font-weight: 500;
	line-height: 1.3;
	letter-spacing: 0.04rem;
	writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	-webkit-writing-mode: vertical-rl;
	position: relative;
	width: 6.23rem;
}
.about_title::before {
	content: "ABOUT";
	position: absolute;
	top: -12rem;
	right: 0;
	font-size: 19.5rem;
	line-height: 1.2;
	color: var(--accent-color);
	opacity: 0.14;
	transform: rotate(-180deg);
}
.about_images {
	position: relative;
	margin-left: 3.8rem;
}
.about_images::before {
	content: "";
	background-image: url("../images/top/about02-min.webp");
	position: absolute;
	top: -7.3rem;
	left: -13.5rem;
	width: 19rem;
	height: 12.8rem;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	z-index: 0;
}
.about_images img {
	position: relative;
	width: 31.7rem;
	z-index: 10;
}
.about_text-en {
	margin-top: 6.8rem;
	font-size: 1.6rem;
	line-height: 1.7;
	letter-spacing: 0.07rem;
	width: 40.5rem;
	color: var(--text-color-dark);
}
.about_sentence_title {
	font-size: 2rem;
	line-height: 1.5;
	letter-spacing: 0.07rem;
	color: var(--text-color-dark);
}
.about_sentence_text {
	margin-top: 6.2rem;
	font-size: 2rem;
	line-height: 2.1;
	letter-spacing: 0.04rem;
	font-weight: 500;
	width: 56.2rem;
	display: flex;
	flex-direction: column;
	gap: 4.8rem;
}
.about_btn {
	margin-top: 8.6rem;
}

/* スライダー全体 */
.about_images_flow {
	margin-top: 15.6rem;
}
.infinite-slider {
	display: flex; /* スライドのグループを横並び */
	gap: 7.2rem;
	overflow: hidden; /* はみ出たスライドを隠す */
}
.slider {
	animation: scroll-left 60s infinite linear 0.5s both;
	display: flex;
}
.slide {
	max-width: calc(100vw / 4);
	width: calc(100vw / 4);
	height: 42rem;
	position: relative;
}
.flow_img01 {
	position: absolute;
	top: 4rem;
	left: 2.4rem;
	width: 17.1rem;
}
.flow_img02 {
	position: absolute;
	top: 22.6rem;
	right: 0;
	width: 22.9rem;
}
.flow_img03 {
	position: absolute;
	top: 2.3rem;
	right: -2.6rem;
	width: 28.6rem;
}
.flow_img04 {
	position: absolute;
	top: 12.1rem;
	right: 5.4rem;
	width: 17.8rem;
}
.flow_img05 {
	position: absolute;
	top: 0;
	right: 1.8rem;
	width: 27.3rem;
}
.flow_img06 {
	position: absolute;
	top: 26rem;
	right: -2.1rem;
	width: 21.5rem;
}
/* CSSアニメーション */
@keyframes scroll-left {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-100%);
	}
}

@media screen and (max-width: 767px) {
	.about_wrap {
		margin-top: 12rem;
	}
	.about_content {
		flex-direction: column;
		gap: 5.4rem;
	}
	.about_title_wrap {
		flex-direction: column;
		gap: 11.6rem;
		margin-left: 0;
	}
	.about_title {
		font-size: 2.4rem;
		font-weight: 500;
		line-height: 1.3;
		letter-spacing: 0.04rem;
		writing-mode: unset;
		margin-left: 7rem;
		width: auto;
	}
	.about_title::before {
		top: -7.4rem;
		right: 5.1rem;
		font-size: 8.6rem;
		transform: rotate(0deg);
	}
	.about_images {
		margin-left: unset;
		margin-right: 2rem;
		display: flex;
		align-items: flex-end;
		justify-content: flex-end;
	}
	.about_images::before {
		top: -5.7rem;
		left: 0rem;
		width: 15.5rem;
		height: 10.4rem;
	}
	.about_images img {
		width: 25.9rem;
	}
	.about_sentence_text {
		width: 100%;
	}
	.about_sentence_title.sp {
		padding: 5.9rem 2rem 0 2rem;
		margin: 0;
		font-size: 2rem;
	}
	.about_sentence_text.sp {
		padding: 4rem 2rem 0 2rem;
		margin: 0;
		font-size: 1.5rem;
	}
	.about_text-en.sp {
		font-size: 1.2rem;
		padding: 0 2rem;
		margin: 0;
		width: 100%;
	}
	.about_btn {
		margin-top: 5.4rem;
		margin-left: 2rem;
	}
	.about_images_flow {
		margin-top: 6.4rem;
	}
	.infinite-slider {
		gap: 0;
	}
	.slide {
		max-width: calc(100vw / 2.6);
		width: calc(100vw / 2.6);
		height: 20.6rem;
	}
	.flow_img01 {
		position: absolute;
		top: 3.8rem;
		left: 0.8rem;
		width: 6.65rem;
	}
	.flow_img02 {
		position: absolute;
		top: 11rem;
		right: 1rem;
		width: 8.9rem;
	}
	.flow_img03 {
		position: absolute;
		top: 3.1rem;
		right: 0.98rem;
		width: 11.3rem;
	}
	.flow_img04 {
		position: absolute;
		top: 7rem;
		right: 5rem;
		width: 6.9rem;
	}
	.flow_img05 {
		position: absolute;
		top: 2.2rem;
		right: unset;
		left: -2.2rem;
		width: 10.6rem;
	}
	.flow_img06 {
		position: absolute;
		top: 12.4rem;
		right: 3.2rem;
		width: 8.3rem;
	}
}

/* ========================================
   Conceptセクション
======================================== */
.concept_wrap {
	margin-top: 19rem;
	width: 100%;
}
/* .concept_head {
	background-image: url("../images/top/concept_bg-min.webp");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	height: 45.9rem;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 7.2rem;
} */
.concept_head {
	padding: 0 2rem;
}
.concept_head_title {
	color: var(--text-color-light);
	font-size: 6.4rem;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.09rem;
	text-align: center;
}
.concept_head_text {
	color: var(--text-color-light);
	font-size: 2rem;
	line-height: 1.7;
	letter-spacing: 0.04rem;
	font-weight: 500;
	text-align: center;
	margin-top: 7.2rem;
}
.scroll_guide_wrap {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}
.scroll_guide {
	width: 1px;
	height: 10rem;
	background-color: var(--text-color-light);
}
.concept_item {
	position: sticky;
	top: 0;
	/* position: sticky; */
	display: grid;
	grid-template-columns: 1fr 1fr;
	overflow: hidden;
	/* min-height: 90svh;
	min-height: calc(100svh - 8.6rem); */
	height: calc(100svh - 8.6rem);
	/* max-height: 80rem; */
}
.concept_img_wrap img {
	height: 100%;
	min-height: 100%;
	width: 100%;
	object-fit: cover;
}
.concept_flow {
	position: absolute;
	top: 0;
	z-index: 10;
}
.concept_flow .flow_text {
	margin-inline: unset;
	margin-top: -3.6rem;
}

.concept_flow .flow_text_item {
	flex-shrink: 0;
	white-space: nowrap;
	font-size: 20rem;
	font-weight: 400;
	letter-spacing: 0.04rem;
	line-height: 1;
	color: var(--text-color-light);
	opacity: 0.15;
	z-index: 10;
}
.concept_flow .flow_text_item:nth-child(odd) {
	animation: MoveLeft 80s -40s infinite linear;
}
.concept_flow .flow_text_item:nth-child(even) {
	animation: MoveLeft2 80s infinite linear;
}
.concept_item01 .concept_flow .flow_text_item,
.concept_item03 .concept_flow .flow_text_item {
	color: #ffdede;
	opacity: 0.21;
}
.concept_sentence_title {
	font-size: 8.8rem;
	font-weight: 600;
	line-height: 1.1;
	letter-spacing: 0.11rem;
	color: var(--text-color-dark);
}
.concept_sentence_text-ja {
	font-size: 2.4rem;
	line-height: 1.7;
	letter-spacing: 0.04rem;
	font-weight: 400;
}
.concept_sentence_text-en {
	font-size: 1.6rem;
	line-height: 1.7;
	letter-spacing: 0.07rem;
	font-weight: 400;
}
.concept_item02 .concept_img_wrap,
.concept_item04 .concept_img_wrap {
	order: 2;
}
/* .concept_item02 .concept_sentence_wrap,
.concept_item04 .concept_sentence_wrap {
	background-color: #333;
} */
.concept_item02 .concept_sentence_title,
.concept_item04 .concept_sentence_title {
	color: var(--text-color-light);
}
.concept_item02 .concept_sentence_text-ja,
.concept_item04 .concept_sentence_text-ja {
	color: var(--text-color-light);
}
.concept_item02 .concept_sentence_text-en,
.concept_item04 .concept_sentence_text-en {
	color: var(--text-color-light);
}
.concept_item01 .concept_sentence_wrap {
	padding-top: 17.7rem;
	padding-left: 11rem;
}
.concept_item01 .concept_sentence_text-ja {
	padding-top: 7rem;
}
.concept_item01 .concept_sentence_text-en {
	padding-top: 9.4rem;
}

.concept_item02 .concept_sentence_wrap {
	padding-top: 9.8rem;
	padding-left: 15.1rem;
}
.concept_item02 .concept_sentence_text-ja {
	padding-top: 9.8rem;
}
.concept_item02 .concept_sentence_text-en {
	padding-top: 8.8rem;
}
.concept_item03 {
	background-color: #fff;
}
.concept_item03 .concept_sentence_wrap {
	padding-top: 9.7rem;
	padding-left: 10.1rem;
}
.concept_item03 .concept_sentence_text-ja {
	padding-top: 6.1rem;
}
.concept_item03 .concept_sentence_text-en {
	padding-top: 6.7rem;
}

.concept_item04 .concept_sentence_wrap {
	padding-top: 10.7rem;
	padding-left: 15.1rem;
}
.concept_item04 .concept_sentence_text-ja {
	padding-top: 9.6rem;
}
.concept_item04 .concept_sentence_text-en {
	padding-top: 8.2rem;
}

/* .concept_item:not(:first-child) {
	transform: translateY(20vh);
	transition: transform 0.6s ease-out;
} */

@media screen and (min-width: 1680px) {
	.concept_flow .flow_text_item {
		font-size: 16rem;
	}
	.concept_item01 .concept_sentence_wrap {
		padding-top: 8.7rem;
	}
	.concept_item01 .concept_sentence_text-ja {
		padding-top: 6rem;
	}
	.concept_item01 .concept_sentence_text-en {
		padding-top: 8.2rem;
	}
	.concept_item02 .concept_sentence_wrap {
		padding-top: 6.2rem;
	}
	.concept_item02 .concept_sentence_text-ja {
		padding-top: 6.2rem;
	}
	.concept_item02 .concept_sentence_text-en {
		padding-top: 7.4rem;
	}
	.concept_item03 .concept_sentence_wrap {
		padding-top: 8.6rem;
	}
	.concept_item04 .concept_sentence_wrap {
		padding-top: 6.4rem;
	}
	.concept_item04 .concept_sentence_text-ja {
		padding-top: 6.4rem;
	}
	.concept_item04 .concept_sentence_text-en {
		padding-top: 5.8rem;
	}
}
@media not all and (max-width: 767px) {
	.concept_item02 .concept_sentence_wrap,
	.concept_item04 .concept_sentence_wrap {
		background-color: #333;
	}
}
@media screen and (max-width: 767px) {
	.concept_wrap {
		margin-top: 0;
	}
	/* .concept_head {
		background-image: url("../images/top/concept_head-min-sp.webp");
		height: 45rem;
		padding: 0 2rem;
	} */
	.concept_head_title {
		font-size: 3.2rem;
	}
	.concept_head_text {
		font-size: 1.4rem;
	}
	.concept_item {
		grid-template-columns: 1fr;
		min-height: calc(100svh - 7.1rem);
		height: calc(100svh - 7.1rem);
		min-height: 100svh;
		height: 100svh;
	}
	.concept_item::after {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 1));
	}
	.concept_item * {
		z-index: 10;
	}
	.concept_flow {
		position: absolute;
		top: 0;
		z-index: 10;
	}
	.concept_flow {
		position: absolute;
		top: 0;
		z-index: 10;
	}
	.concept_flow .flow_text {
		margin-top: -3.2rem;
	}
	.concept_flow .flow_text_item {
		font-size: 13.6rem;
	}
	.concept_sentence_title {
		font-size: 4.8rem;
	}
	.concept_sentence_text-ja {
		font-size: 1.8rem;
	}
	.concept_sentence_text-en {
		font-size: 1.4rem;
	}
	.concept_item .concept_sentence_title {
		color: var(--text-color-light);
	}
	.concept_item .concept_sentence_text-ja {
		color: var(--text-color-light);
	}
	.concept_item .concept_sentence_text-en {
		color: var(--text-color-light);
	}
	.concept_item01 {
		background-image: url("../images/top/concept01-min.webp");
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
	}
	.concept_item02 {
		background-image: url("../images/top/concept02-min.webp");
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
	}
	.concept_item03 {
		background-image: url("../images/top/concept03-min.webp");
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
	}
	.concept_item04 {
		background-image: url("../images/top/concept04-min.webp");
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
	}
	.concept_item01 .concept_sentence_wrap,
	.concept_item02 .concept_sentence_wrap,
	.concept_item03 .concept_sentence_wrap,
	.concept_item04 .concept_sentence_wrap {
		padding-top: 24.8rem;
		padding-left: 2.8rem;
		padding-right: 2.8rem;
		padding-bottom: 4rem;
	}
	.concept_item01 .concept_sentence_text-ja,
	.concept_item02 .concept_sentence_text-ja,
	.concept_item03 .concept_sentence_text-ja,
	.concept_item04 .concept_sentence_text-ja {
		padding-top: 5rem;
	}
	.concept_item01 .concept_sentence_text-en,
	.concept_item02 .concept_sentence_text-en,
	.concept_item03 .concept_sentence_text-en,
	.concept_item04 .concept_sentence_text-en {
		padding-top: 5em;
	}
	.concept_item02,
	.concept_item04,
	.concept_sentence_wrap {
		background-color: unset;
	}
}

/* ========================================
   Serviceセクション
======================================== */
.service_wrap {
	margin-top: 8.2rem;
	display: grid;
	grid-template-columns: 0.52fr 0.52fr;
	gap: 11rem;
}
.service_sentence_wrap {
	display: flex;
	flex-direction: column;
	gap: 7.2rem;
}
.service_desc {
	font-size: 1.4rem;
	line-height: 1.8;
	font-weight: 400;
}
.service_list {
	display: flex;
	flex-direction: column;
}
.service_list_item a {
	padding: 2.2rem 0;
	font-size: 1.8rem;
	line-height: 1.7;
	letter-spacing: 0.07rem;
	font-weight: 600;
	color: var(--text-color-dark);
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	gap: 1.6rem;
	border-bottom: 1px solid #d7d7d7;
}
.service_list_item:first-child a {
	border-top: 1px solid #d7d7d7;
}

@media screen and (max-width: 767px) {
	.service_wrap {
		margin-top: 5.4rem;
		grid-template-columns: 1fr;
		gap: 6.4rem;
	}
	.service_sentence_wrap {
		order: 2;
		gap: 5.6rem;
	}
}

/* ========================================
   Instagramセクション
======================================== */
.instagram_wrap {
	margin-top: 24.1rem;
}
.instagram_head {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
}
.instagram_head_title {
	font-size: 4.8rem;
	line-height: 1.2;
	color: var(--text-color-dark);
	font-weight: 400;
}
.instagram_btn {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 2.4rem;
}
.instagram_btn_text {
	font-size: 1.6rem;
	line-height: 1.2;
	color: var(--text-color-dark);
}
.instagram_images_wrap {
	margin-top: 10rem;
}
.instagram_images {
/* 	display: grid;
	grid-template-columns: repeat(4, 1fr); */
}

#sbi_images {
	padding: 0;
}

#sb_instagram #sbi_images .sbi_item {
	opacity: 0;
}

@media screen and (max-width: 767px) {
	.instagram_wrap {
		margin-top: 10.8rem;
	}
	.instagram_btn_wrap_sp {
		margin-top: 4rem;
	}
	.instagram_images_wrap {
		margin-top: 3.8rem;
	}
	.instagram_images {
/* 		display: grid;
		grid-template-columns: repeat(3, 1fr); */
	}
}

/* ========================================
   Newsセクション
======================================== */
.news_wrap {
	margin-top: 24.1rem;
	margin-bottom: 16rem;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
}
.news_head_wrap {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.news_head {
	gap: 4rem;
}
.news_head_title-ja {
	font-size: 2.8rem;
}
.news_post {
	width: 76.1rem;
}
.news_list {
	display: flex;
	flex-direction: column;
}
.news_item {
	padding: 3rem;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 4rem;
	border-bottom: 1px solid #d7d7d7;
}
.news_date {
	font-size: 1.6rem;
	line-height: 1.8;
	color: #d7d7d7;
}
.news_title {
	font-size: 1.6rem;
	line-height: 1.8;
	color: var(--text-color-dark);
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

@media screen and (max-width: 767px) {
	.news_wrap {
		margin-top: 12.6rem;
		margin-bottom: 7.2rem;
		flex-direction: column;
	}
	.news_head_wrap {
		display: flex;
		flex-direction: column;
	}
	.news_post {
		width: 100%;
	}
	.news_item {
		padding: 3rem 0;
		flex-direction: column;
		align-items: flex-start;
		gap: 0;
	}
	.news_date {
		font-size: 1.6rem;
		line-height: 1.8;
		color: #d7d7d7;
	}
	.news_title {
		font-size: 1.6rem;
		line-height: 1.8;
		color: var(--text-color-dark);
		white-space: wrap;
	}
	.news_btn_wrap_sp {
		display: flex !important;
		margin-top: 3.2rem;
	}
}
