	/* -------------コンセプト文章のところ------------- */

#info .line {
  font-family: "Zen Old Mincho", serif;
  font-size: 17px;
  line-height: 2.4em;
  letter-spacing: 0.15em;
  color: #333;
  opacity: 0;
  transform: translateY(20px);
  transition: all 2.5s ease;
  display: block; /* ←追加 */
}

/* 表示後 */
#info.show .line {
  opacity: 1;
  transform: translateY(0);
}

/* 余白 */
#info .space {
  margin-top: 30px;
}

/* 遅延 */
#info.show .line:nth-of-type(1) { transition-delay: 0.1s; }
#info.show .line:nth-of-type(2) { transition-delay: 0.2s; }
#info.show .line:nth-of-type(3) { transition-delay: 0.3s; }
#info.show .line:nth-of-type(4) { transition-delay: 0.4s; }
#info.show .line:nth-of-type(5) { transition-delay: 0.5s; }
#info.show .line:nth-of-type(6) { transition-delay: 0.6s; }
#info.show .line:nth-of-type(7) { transition-delay: 0.7s; }
#info.show .line:nth-of-type(8) { transition-delay: 0.8s; }

#info::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(../img/bg-dark-logo.svg);
  background-repeat: no-repeat;
  background-position: center 60%;
  background-size: 90%;
  opacity: 0;
  transition: opacity 1.5s ease;
}

#info.show::before {
  opacity: 0.08;
}

#info::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 200px;
  width: 1px;
  height: 0;
  background: #bbb;
  transform: translateX(-50%);
  transition: height 1s ease;
}

/* ロゴ */
.ft-logo img {
  display: block;
  transition:
    transform 0.4s ease,
    opacity 0.4s ease,
    filter 0.4s ease;
  opacity: 0.9;
}

/* ホバー */
.ft-logo a:hover img {
  transform: translateY(-2px);
  opacity: 1;
  filter: brightness(1.1);
}

.ft-logo a {
  display: inline-block;
  cursor: pointer;
}

.main_text {
  color: #fff;
  font-size: 28px;
  line-height: 1.3;
  letter-spacing: 0.12em;
  font-weight: 300;
  max-width: 600px;
}

.main_text p {
  margin: 0 0 14px;
  opacity: 0.9;
}


#info .wrap {
  display: flex;
  flex-direction: column; 
  align-items: center;
}


	/* スクロールダウンの位置 */
	.scroll {
		position: relative;
		font-size: 12px;
		writing-mode: vertical-rl;
		color: #727169;
		transform: translateX(-50%);
		text-align: center;
		z-index: 1000;
		top: 65px; 
	}

	/* 線のアニメーション部分 */
	.scroll::before {
		animation: scroll 2s infinite;
		background-color: #727169;
		bottom: -80px;
		content: "";
		height: 70px;
		left: 0;
		margin: auto;
		position: absolute;
		right: 0;
		width: 1px;
	}

	/* 線のアニメーション */
	@keyframes scroll {
		0% {
			transform: scale(1, 0);
			transform-origin: 0 0;
		}

		50% {
			transform: scale(1, 1);
			transform-origin: 0 0;
		}

		51% {
			transform: scale(1, 1);
			transform-origin: 0 100%;
		}

		100% {
			transform: scale(1, 0);
			transform-origin: 0 100%;
		}
	}

@media (min-width:1400px) {
}

@media (max-width:1399px) and (min-width:601px) {

  #info {
    padding-top: 100px;
    padding-bottom: 220px;
  }

  #info .line {
	 width: 100%;
    font-size: 15px;
    line-height: 3em;
     max-width: none; /* ←これ重要 */
	margin: 0;
  }

	/* スクロールダウンの位置 */
	.scroll {
		position: relative;
		font-size: 12px;
		writing-mode: vertical-rl;
		color: #727169;
		transform: translateX(-50%);
		text-align: center;
		z-index: 1000;
		top: 65px; 
	}

	/* 線のアニメーション部分 */
	.scroll::before {
		animation: scroll 2s infinite;
		background-color: #727169;
		bottom: -80px;
		content: "";
		height: 70px;
		left: 0;
		margin: auto;
		position: absolute;
		right: 0;
		width: 1px;
	}

	/* 線のアニメーション */
	@keyframes scroll {
		0% {
			transform: scale(1, 0);
			transform-origin: 0 0;
		}

		50% {
			transform: scale(1, 1);
			transform-origin: 0 0;
		}

		51% {
			transform: scale(1, 1);
			transform-origin: 0 100%;
		}

		100% {
			transform: scale(1, 0);
			transform-origin: 0 100%;
		}
	}

}

@media (max-width:600px) {

  #info {
    padding-top: 50px;
    padding-bottom: 170px;
  }

  #info .wrap {
    max-width: 92%;
  }

  #info .line {
    font-size: 13px;
    line-height: 3em;
    letter-spacing: 0.1em;
	 margin: 0;
  }

  
	/* スクロールダウンの位置 */
	.scroll {
		position: relative;
		font-size: 12px;
		writing-mode: vertical-rl;
		color: #727169;
		transform: translateX(-50%);
		text-align: center;
		z-index: 1000;
		top: 30px; 

	}

	/* 線のアニメーション部分 */
	.scroll::before {
		animation: scroll 2s infinite;
		background-color: #727169;
		bottom: -80px;
		content: "";
		height: 70px;
		left: 0;
		margin: auto;
		position: absolute;
		right: 0;
		width: 1px;
	}

	/* 線のアニメーション */
	@keyframes scroll {
		0% {
			transform: scale(1, 0);
			transform-origin: 0 0;
		}

		50% {
			transform: scale(1, 1);
			transform-origin: 0 0;
		}

		51% {
			transform: scale(1, 1);
			transform-origin: 0 100%;
		}

		100% {
			transform: scale(1, 0);
			transform-origin: 0 100%;
		}
	}

}