@charset "UTF-8";


/* # =================================================================
   # 共通タイトル
   # ================================================================= */

.main-title{
	font-size:60px;
	line-height:1;
	text-transform: uppercase;
	margin-bottom:50px;
	font-weight:200;
	overflow:hidden;
}

.main-title span{
	display:block;
	font-size:14px;
	font-weight:700;
	color: var(--color-gold);
	margin-bottom:10px;
	text-transform:uppercase;
}


.main-ctach{
	font-size:30px;
	line-height:150%;
	font-weight:Bold;
	text-align:left;
	margin-bottom:60px;
	position: relative;
	text-align: left;
}

.main-ctach span{
	display:block;
	font-size:14px;
	color: var(--color-gold);
}

.main-ctach-line-bk:after {
	position: absolute;
	content: "";
	background-color: var(--color-gray1);
	bottom: -30px;
	height: 1px;
	width: 50px;
	left:0;
}

.main-ctach-line-w:after {
	position: absolute;
	content: "";
	background-color: var(--color-white);
	bottom: -30px;
	height: 1px;
	width: 50px;
	left:0;
}

.main-ctach2{
	font-size:22px;
	line-height:150%;
	font-weight:Bold;
	text-align:left;
	margin-bottom:30px;
	display: flex;
	align-items: center;
}


.txt-box{
	width:100%;
	line-height:1.8em;
	text-align:left;
}



@media screen and (max-width:599px){
.main-title{font-size:40px;}
.main-ctach{font-size:25px;}
}




/* # =================================================================
   # ファーストビュー
   # ================================================================= */
#fvbg{
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 100vh;
	height: 100svh;
}




#fvbg .pMV__image {
  position: absolute;
top: 100px;
  right: 0;           /* 右側に固定 */
  width: 50%;        /* 画面幅の半分 */
  height: 85vh;      /* 全画面の高さ */
  overflow: hidden;
  z-index: 0;
  opacity: 0;
  animation: fadeInfvimg 2s ease-out forwards; /* ← 1.8秒かけてフェードイン */
}

/* 遅延を付けたい場合（例：0.6秒後に始まる） */
#fvbg .pMV__image {
  animation-delay: 2s;
}

/* フェードインのキーフレーム */
@keyframes fadeInfvimg {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}


#fvbg .pMV__image_item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease;
}

#fvbg .pMV__image_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.15) translateX(-3%);
  transition: transform 8s linear;
}

#fvbg .pMV__image_item.is-current {
  opacity: 1;
  z-index: 2;
}

#fvbg .pMV__image_item.is-prev {
  z-index: 1;
}

#fvbg .pMV__image_item.is-current img {
  animation: mv-slide 8s linear forwards;
}

@keyframes mv-slide {
  0% {
    transform: scale(1.15) translateX(0);
  }
  100% {
    transform: scale(1.15) translateX(-3%);
  }
}




#fvbg .fv-txt-box {
	position: absolute;
	width: 100%;
	top: 40%;
	left: 50%;
	transform: translate(-50%, -40%); /* -50%を-40%にすると下に寄る */
	z-index: 2;
}


#fvbg .fv-title {
	font-family: 'Inter', 'Noto Sans JP', serif;
	font-size: 60px;
	font-weight: 300;
	color: var(--color-bk);
	line-height: 1.5em;
	text-align: left;
	width: 85%;
	max-width: 1400px;
	margin-left: auto;
	margin-right: auto;

	/* フェード切り替え用 */
	position: absolute;
	top: 0;
	left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
	opacity: 0;
	transition: opacity 0.6s ease;
}
/* 表示中 */
#fvbg .fv-title.is-current {
	opacity: 1 !important;;
	z-index: 2;
}

/* 前の要素（非表示へ） */
#fvbg .fv-title.is-prev {
	z-index: 1;
}

#fvbg .fv-txt-box-btm {
	position: absolute;
	width: 100%;
	bottom:4.5em;
	left:0;
	z-index: 2;
}

#fvbg .fv-title-jp-sub{
	font-size:16px;
	color:var(--color-bk);
	line-height:2em;
	text-align:left;
	width: 85%;
	max-width:1400px;
	margin-left:auto;
	margin-right:auto;
}

#fvbg .fv-title-jp-sub span{background-color:var(--color-white);padding:3px 0;}




@media screen and (max-width: 900px) {
	#fvbg .fv-title{font-size:35px;width: 90%;}
	#fvbg .fv-title-jp-sub{width: 90%;font-size:14px;line-height:2.5em;}
}

@media screen and (max-width: 768px) {
	#fvbg .pMV__image {
		position: absolute;
		top: 100px;
		right: 0;           /* 右側に固定 */
		width: 50%;        /* 画面幅の半分 */
		height: 85vh;      /* 全画面の高さ */
		overflow: hidden;
		z-index: 0;
	}
}

@media screen and (max-width: 599px) {
	#fvbg .pMV__image {
		position: absolute;
		top: 200px;
		left: 50%;
		transform: translateX(-50%);
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
		width: 89%;
		height: 70vh;
		overflow: hidden;
		z-index: 0;
	}
	#fvbg .fv-txt-box {
		position: absolute;
		width: 100%;
		top: 100px;
		left: 50%;
		transform: translate(-50%, -50%); /* -50%を-40%にすると下に寄る */
		z-index: 2;
	}
	#fvbg .fv-title{font-size:30px;}
	#fvbg .fv-title-jp-sub{font-size:12px;}
	#fvbg .fv-title-jp-sub span{padding:3px 10px 3px 15px;}
}

/* # =================================================================
   # logo svgアニメ
   # ================================================================= */
   
.litaxia-logo-motion {
	--stroke-width: 4;
	--flow-width: 3;
	--flow-speed: 20s;       /* ゆっくり */
	--flow-length: 8;       /* 光の長さ */
	--flow-gap: 17;         /* 間隔（8+17=25 → 100を割り切れる） */
	display: block;
	width: 400px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%); /* -50%を-40%にすると下に寄る */
	z-index:1;
}

@media screen and (max-width: 900px) {
	.litaxia-logo-motion {
		--stroke-width: 3;
		--flow-width: 2;
		width: 350px;
	}
}
@media screen and (max-width: 599px) {
	.litaxia-logo-motion {
		width: 120px;
		top: 80px;
		left: auto;
		transform: none;
		right:2em;
	}
}

.litaxia-logo-motion svg {
  width: 100%;
  display: block;
}

/* ベース線（#f2f2f3） */
.base-line {
  fill: none;
  stroke: rgba(238,238,238,.5);
  stroke-width: var(--stroke-width);
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 1;
  vector-effect: non-scaling-stroke; /* 拡大縮小時のにじみ軽減 */
}

/* 光の流れ（#ccbd7a） */
.flow-line {
  fill: none;
  stroke: url(#litaxia-stroke);
  stroke-width: var(--flow-width);
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: url(#litaxia-glow);
  stroke-dasharray: var(--flow-length) var(--flow-gap);
  stroke-dashoffset: 0;
  animation: litaxia-dash var(--flow-speed) linear infinite;
  vector-effect: non-scaling-stroke;
}

/* 1周（100）でちょうどパターン（25）が4回分進む → 継ぎ目が出ない */
@keyframes litaxia-dash {
  to { stroke-dashoffset: -100; }
}

/* フェードインアニメーション */
.litaxia-logo-motion {
  opacity: 0;
  animation: fadeInLogo 1.8s ease-out forwards; /* ← 1.8秒かけてフェードイン */
}

/* 遅延を付けたい場合（例：0.6秒後に始まる） */
.litaxia-logo-motion {
  animation-delay: 0.6s;
}

/* フェードインのキーフレーム */
@keyframes fadeInLogo {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}


/* # =================================================================
   # パララックス
   # ================================================================= */

.img-parallax {
	overflow: hidden;
	height: 40vw;
}

.img-parallax img{width:100%;}


@media screen and (max-width:900px){
.img-parallax {
	overflow: hidden;
	height: 50vw;
}
}

/* # =================================================================
   # ミッション
   # ================================================================= */

#mission{padding-top:100px;}

#mission .img-box{padding-top:50px;}
#mission .img-box img{width:100%;}

@media screen and (max-width:768px){
	#mission{padding-top:80px;}
}

@media screen and (max-width:599px){
	#mission{padding-top:50px;}
}


/* # =================================================================
   # サービス
   # ================================================================= */
#service .flex{
    display: flex;
    justify-content: space-between;
    flex-wrap:wrap;
	align-items: center;
}
#service .flex-item{
	width:33.333%;
	text-align:center;
	border-right:solid 1px var(--color-white);
}

#service .busi-img{overflow:hidden;opacity:1;transition: all .5s;}
#service .busi-img img{
	width:100%;
	height:700px;
	object-fit: cover;
	transition: all .5s;
}

#service .text-area{
	display: block;
	position: absolute;
	bottom: 40px;
	left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
	width:80%;
	z-index:2;
	transition: all .5s;
}

#service .busi-no{
	font-size:40px;
	font-weight:300;
	text-align:left;
	margin-bottom:30px;
	color:var(--color-gold);
}

#service .busi-title{
	font-size:22px;
	font-weight:700;
	line-height:2rem;
	text-align:left;
	color:var(--color-white);
}

#service .busi-title-en{
	font-size:14px;
	font-weight:300;
	line-height:2rem;
	text-align:left;
	color:var(--color-gold);
}

#service .busi-txt{
	font-size:14px;
	font-weight:300;
	line-height:1.5rem;
	text-align:left;
	font-weight:700;
	margin-top:10px;
	color:var(--color-white);
}

#service .busi-txt-link{
	opacity:0;
	font-size:14px;
	font-weight:400;
	line-height:2rem;
	text-align:center;
	margin-top:20px;
	color:var(--color-bk);
	border:solid 1px var(--color-gold);
	background-color:var(--color-gold);
	border-radius:50px;
	padding:8px 10px;
	width:200px;
	transition: all .5s;
}



#service .busi-link-bg{
    position: absolute;
	background-color:rgba(0,0,0,.5);
    top: 0;
    left: 0;
    height:100%;
    width: 100%;
	z-index:1;
	transition: all .5s;
}



#service .linkbox:hover .busi-link-bg{
background-color:rgba(0,0,0,.6);
}

#service .linkbox:hover .busi-img img{
	opacity:1;
}

#service .linkbox:hover .text-area{
	bottom: 80px;
}

#service .linkbox:hover .busi-txt-link{
	opacity:1;
}




@media screen and (max-width:900px){
	#service .flex{flex-wrap:wrap;}
	#service .flex-item{width:100%;border-bottom:solid 1px var(--color-white);}
	#service .busi-img img{height:350px;}
	#service .text-area{
		display: block;
		position: absolute;
		bottom:auto;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		-webkit-transform: translate(-50%, -50%);
		-ms-transform: translate(-50%, -50%);
	}
	#service .linkbox:hover .text-area{bottom: auto;}
	#service .busi-no{margin-bottom:10px;}
	#service .busi-txt-link{
		opacity:1;
		font-size:12px;
		margin-top:20px;
		padding:5px 10px;
		width:150px;
	}
}





	
/* # =================================================================
   # business
   # ================================================================= */
#business{overflow:hidden;}

#business .block-box{margin-top:80px;}


#business .flex{
	display:flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items:center;
	max-width: 1400px;
	row-gap:40px;
	column-gap:5em;
	width:85%;margin-left:auto;margin-right:auto;
}

#business .flex-item-left{flex:1;margin-left: calc(50% - 50vw);}
#business .flex-item-right{flex:1;margin-right: calc(50% - 50vw);}
#business .flex-item{width:45%;}


#business .flex-img-right{overflow:hidden;border-radius:2em 0 0 2em;}
#business .flex-img-left{overflow:hidden;border-radius:0 2em 2em 0;}

#business .flex-img-right img,
#business .flex-img-left img{
	width:100%;
	height:650px;
	object-fit: cover;
	object-position: center;
	transform: scale(1.5);
	opacity: 0;
}


.business-br{display:block;}




@media screen and (max-width:900px){
	#business .flex{width:100%;margin-left:auto;margin-right:auto;}
	#business .block-box{margin-top:30px;}
	#business .flex-item-left{flex:none;width:95%;margin-left: 0;margin-right: auto;}
	#business .flex-item-right{flex:none;width:95%;margin-right: 0;margin-left: auto;}
	#business .flex-item{width:90%;margin-left:auto;margin-right:auto;}
	#business .flex-img-left img,
	#business .flex-img-right img{height:400px;}
	#business .txt-waku{padding:0 0 50px 0;}
	.business-br{display:none;}
}

@media screen and (max-width:599px){
	#business .flex-img-left img,
	#business .flex-img-right img{height:300px;}
	.business-br{display:block;}
}

/* # =================================================================
   # difference
   # ================================================================= */

#difference .img-box{padding-top:30px;}
#difference .img-box img{width:100%;}




/* # =================================================================
   # massage
   # ================================================================= */

#massage{
background-image: url(../img/index_massage_bg.svg);
	background-repeat: no-repeat;
	background-size: cover;
}


#massage .txt-box{
	font-weight:500;
	line-height:2em;
	text-align:center;
}

#massage .txt-name{
	font-family: "Noto Serif JP", serif;
	font-size:18px;
	font-weight:700;
	text-align:center;
	margin-top:30px;
}

#massage .txt-name span{font-size:14px;padding-right:20px;}

@media screen and (max-width:900px){
	#massage .txt-box{text-align:left;}
	#massage .txt-name{text-align:right;}
}

/* # =================================================================
   # news
   # ================================================================= */


.news_link {
	display: flex;
	justify-content: start;
	flex-wrap: wrap;
	column-gap: .5em;
	row-gap:.5em;
	margin-bottom: 50px;
	padding: 0;
	list-style-type: none;
}
.news_link li {
	display: inline-block;
	font-size:14px;
	color: var(--color-bk);
	font-weight:500;
	border:solid 1px var(--color-bk);
	padding:5px 8px;
	border-radius:50px;
	position: relative;
	cursor: pointer;
	text-align: left;
	line-height: 1;
	opacity: 0.4;
	transition: ease .3s;
}
.news_link li:first-child {
	margin-left: 0;
}
.news_link li.active, .news_link li:hover {
	color: var(--color-bk);
	font-weight:500;
	opacity: 1;
}
.news_link li.active:after, .news_link li:hover:after {
	display: block;
}

.news-content {
	margin-bottom: 20px;
	padding-bottom: 20px;
	margin-left:auto;
	margin-right:auto;
	border-bottom:solid 1px var(--color-gray5);
}



.news-content::after {
	position: absolute;
	left: 0;
	content: '';
	width: 100%;
	height: 1px;
	background: var(--color-gold);
	bottom: -1px;
	transform: scale(0, 1);
	transform-origin: right top;
	transition: transform 1s;
}

.news-content:hover::after {
	transform: scale(1, 1);
	transform-origin: left top;
}

.news-flex{
	display: flex;
	flex-wrap: nowrap;
	align-items: baseline;
	column-gap:20px;
}

.news-date {
	font-size: 12px;
	color: var(--color-bk);
}
.news-cat {
	min-width:100px;
	font-size: 12px;
	font-weight:Bold;
	text-align: center;
	line-height: 25px;
	color: var(--color-white);
	background:var(--color-gold);
	border-radius:50px;
}


.news-content .news-title{
	text-align:left;
	line-height:1.5rem;
	padding-top:20px;
	color: var(--color-bk);
	text-decoration:none;
	transition: color 0.2s ease-in-out;
}


.linkbox:hover .news-title {
	text-decoration:none;
}

.news-txt{line-height:1.5rem;}

/*-----------スマホ設定-----------------*/
@media screen and (max-width:768px){
	.news-content .news-title{padding-top:10px;}
}
