@charset "utf-8";


/*スライドショー
ここでは、16:9の画像比率（9÷16=0.5625）を読み込む指定を行なっています。
異なる画像比率にしたい場合、.slide-type1のpadding-topの数字を変更します。
---------------------------------------------------------------------------*/

	/*画面幅500px以下の追加指定*/
	@media screen and (max-width:500px) {

	/*スライドショーブロック内のsvg要素*/
	#svg-box svg {
		display: none;	/*ロゴが小さくなりすぎるので枠を消す*/
	}

	}/*追加設定ここまで*/


/*スライドショーボックス*/
#svg-box {
	flex-shrink: 0;
	padding: 0 var(--space-small);	/*上下、左右への余白。*/
	position: relative;
	overflow: hidden;
}




/*3枚の画像を囲むブロック*/
.slide-type1 {
	width: 100%;
	height: 0;
	padding-top: 43%;	/*アスペクト比*/
	position: relative;
	clip-path: url(#myClip1);	/*SVG画像との紐付け*/
}

	/*画面幅500px以下の追加指定*/
	@media screen and (max-width:500px) {

	#svg-box {
		border-radius: 10px;	/*svgを外すので、代わりに角丸の指定*/
	}

	}/*追加設定ここまで*/


/*３枚の画像の共通設定*/
.slide-type1 .slide {
	position: absolute;right: 0px;top: 0px;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 1s;	/*ここの1s（＝1秒）を変更すると、フェードのスピードを変更できます。１枚が表示される時間はjsで指定できます。*/
}

/*追加テキストオーバーレイ*/
.text-overlay {
  position: absolute;
	top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  background-color: rgba(0, 0, 0, 0);
  padding: 10px;
  z-index: 10;
}

.slide-type1::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.18) 38%, rgba(0,0,0,0.52) 100%);
	pointer-events: none;
}

.hero-copy {
	width: min(88%, 640px);
	top: auto;
	left: 50%;
	bottom: clamp(3.3rem, 4.6vw, 4.4rem);
	transform: translateX(-50%);
	padding: 0;
}

.hero-copy .eyebrow {
	margin: 0 0 0.8rem;
	font-size: 0.74rem;
	letter-spacing: 0.34rem;
}

.hero-copy h2 {
	margin: 0;
	font-size: clamp(2rem, 4.6vw, 4.8rem);
	font-weight: 300;
	line-height: 1.1;
	white-space: nowrap;
	text-shadow: 0 6px 24px rgba(0,0,0,0.28);
}

.hero-copy .lead {
	margin: 0.85rem 0 0;
	font-size: clamp(0.9rem, 1.35vw, 1.2rem);
	letter-spacing: 0.12rem;
	text-shadow: 0 3px 16px rgba(0,0,0,0.28);
}

.hero-scroll {
	position: absolute;
	left: 50%;
	bottom: 1rem;
	transform: translateX(-50%);
	z-index: 11;
	margin: 0;
	color: rgba(255,255,255,0.86);
	font-size: 0.72rem;
	letter-spacing: 0.3rem;
	text-transform: uppercase;
}

.hero-scroll::after {
	content: "";
	display: block;
	width: 1px;
	height: 34px;
	margin: 0.7rem auto 0;
	background: rgba(255,255,255,0.55);
}

body.home header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 20;
	height: auto;
	padding-top: 1.8rem;
}

body.home #logo img {
	content: url("../images/logo_white.png");
}

body.home #logo {
	width: clamp(96px, 9vw, 148px);
	left: 3.8vw;
	top: 0;
}

body.home header > nav > ul {
	margin-right: 7vw;
}

body.home header nav li a {
	color: #fff;
	text-shadow: 0 2px 10px rgba(0,0,0,0.22);
}

body.home header nav ul ul a {
	color: inherit;
	text-shadow: none;
}

body.home #btn-special a {
	background: rgba(17,17,17,0.2);
	color: #fff;
	backdrop-filter: blur(6px);
}

body.home #btn-special {
	top: 58%;
}

body.home .box1 {
	margin-top: 6vw;
}

.hero-actions-home {
	margin-top: 1.2rem;
}

.hero-btn {
	min-height: 44px;
	font-size: 0.72rem;
	padding: 0 1.2rem;
}

.hero-route-copy {
	margin-top: 0.75rem;
	font-size: 0.76rem;
	line-height: 1.7;
}

/*以下は変更不要*/
.slide-type1 .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


/*現在表示されているスライドのみをクリック可能にする設定（変更不要）
---------------------------------------------------------------------------*/
.slide-type1 .slide {
	pointer-events: none; /* デフォルトでクリックを無効にする */
}

.slide-type1 .slide.active {
	pointer-events: auto; /* 表示中のスライドのみクリックを有効にする */
}


/*現在表示中のボタン
---------------------------------------------------------------------------*/
/*全体*/
.slide-type1 .slide-indicators {
    text-align: center;
	position: absolute;
	width: 100%;
	bottom: 10px;	/*ボタンの配置場所。スライドショーの画面下からの距離。*/
	left: 0px;
}

/*ボタン１個あたり*/
.slide-type1 .indicator {
    display: inline-block;
    width: 12px;
    height: 12px;
    background: #ccc;	/*未アクティブ時のボタン色*/
	border: 4px solid #fff;	/*枠線の幅、線種、色。*/
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

/*アクティブ時のボタン色*/
.slide-type1 .indicator.active {
    background: #000;
}

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

	body.home header {
		padding-top: 1rem;
	}

	.slide-type1 {
		padding-top: 58%;
	}

	body.home #logo {
		width: 74px;
		left: 1.2rem;
	}

	.hero-copy {
		width: min(90%, 290px);
		bottom: 3.2rem;
	}

	.hero-copy .eyebrow {
		font-size: 0.62rem;
		letter-spacing: 0.18rem;
	}

	.hero-copy .lead {
		font-size: 0.78rem;
		letter-spacing: 0.05rem;
	}

	.hero-copy h2 {
		white-space: normal;
		font-size: 2rem;
	}

	.hero-scroll {
		bottom: 0.65rem;
		font-size: 0.64rem;
		letter-spacing: 0.18rem;
	}

	.hero-scroll::after {
		height: 24px;
		margin-top: 0.45rem;
	}

	body.home .box1 {
		margin-top: 3rem;
	}

	.hero-btn {
		min-height: 40px;
		font-size: 0.68rem;
	}

}


/*回転する円形のテキストアニメーション
---------------------------------------------------------------------------*/
@keyframes spin {
	0% {transform: rotate(0deg);}
	100% {transform: rotate(360deg);}
}

/*サイズや場所の指定*/
.animation-text {
	position: absolute;z-index: 1;
	width: 30vw;		/*画像の幅*/
	right: -7vw;		/*右からの距離*/
	bottom: calc(-1 * var(--space-small));		/*下からの距離*/
}

/*アニメーションに関する指定*/
.spin {
	animation: spin 150s linear infinite;	/*150s（150秒）が１回転する速度です。お好みで変更して下さい。*/
}

/* 2026-04 final hero refinement */
.slide-type1 {
	padding-top: 40%;
}

.hero-copy {
	width: min(84%, 560px);
	bottom: clamp(2.9rem, 4vw, 3.8rem);
}

.hero-copy .eyebrow {
	margin-bottom: 0.6rem;
	font-size: 0.68rem;
	letter-spacing: 0.28rem;
}

.hero-copy h2 {
	font-size: clamp(1.85rem, 4vw, 4rem);
}

.hero-copy .lead {
	margin-top: 0.7rem;
	font-size: clamp(0.84rem, 1.1vw, 1.02rem);
	letter-spacing: 0.08rem;
}

.hero-actions-home {
	margin-top: 0.95rem;
	gap: 0.75rem;
}

.hero-btn {
	min-height: 40px;
	padding: 0 1.1rem;
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.1rem;
}

.hero-route-copy {
	margin-top: 0.6rem;
	max-width: 30rem;
	font-size: 0.72rem;
	line-height: 1.75;
}

.hero-scroll {
	bottom: 0.7rem;
	font-size: 0.68rem;
}

.hero-scroll::after {
	height: 28px;
	margin-top: 0.45rem;
}

@media screen and (max-width:500px) {
	#svg-box {
		border-radius: 16px;
	}

	.slide-type1 {
		padding-top: 88%;
		clip-path: none;
	}

	.slide-type1 .slide img {
		object-position: center center;
	}

	body.home header {
		padding-top: 0.7rem;
	}

	body.home #logo {
		width: 70px;
		left: 1rem;
	}

	.hero-copy {
		width: min(88%, 312px);
		bottom: 3.4rem;
	}

	.hero-copy .eyebrow {
		font-size: 0.58rem;
		letter-spacing: 0.14rem;
	}

	.hero-copy h2 {
		font-size: 1.78rem;
		line-height: 1.18;
	}

	.hero-copy .lead {
		font-size: 0.74rem;
		line-height: 1.7;
		letter-spacing: 0.04rem;
	}

	.hero-actions-home {
		margin-top: 0.9rem;
		gap: 0.55rem;
	}

	.hero-route-copy {
		display: none;
	}

	.hero-scroll {
		bottom: 0.75rem;
		font-size: 0.6rem;
		letter-spacing: 0.15rem;
	}

	.hero-scroll::after {
		height: 20px;
	}
}

/* 2026-04 redesign pass */
body.home #svg-box svg {
	display: none;
}

body.home #svg-box {
	margin-top: 0.2rem;
	padding: 0 var(--space-small);
}

body.home .slide-type1 {
	height: clamp(420px, 56vw, 610px);
	padding-top: 0;
	clip-path: none;
	border-radius: 28px;
	overflow: hidden;
}

body.home .slide-type1::after {
	background: linear-gradient(180deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.12) 28%, rgba(0,0,0,0.54) 100%);
}

body.home .hero-copy {
	left: clamp(1.5rem, 4vw, 3.8rem);
	right: auto;
	bottom: clamp(4.2rem, 7vw, 5.6rem);
	transform: none;
	width: min(70%, 520px);
	text-align: left;
}

body.home .hero-copy .eyebrow {
	font-size: 0.66rem;
	letter-spacing: 0.24rem;
}

body.home .hero-copy h2 {
	font-size: clamp(1.7rem, 3.6vw, 3.5rem);
	line-height: 1.18;
	white-space: normal;
}

body.home .hero-copy .lead {
	max-width: 30rem;
	font-size: clamp(0.92rem, 1.08vw, 1.06rem);
	line-height: 1.82;
}

body.home .hero-actions-home {
	justify-content: flex-start;
}

body.home .hero-btn {
	min-width: 150px;
	min-height: 44px;
	font-size: 0.8rem;
}

body.home .hero-route-copy {
	max-width: 28rem;
	font-size: 0.8rem;
	line-height: 1.8;
}

body.home .hero-scroll {
	left: clamp(1.8rem, 4vw, 3.8rem);
	bottom: 1rem;
	transform: none;
	font-size: 0.7rem;
}

body.home .hero-scroll::after {
	margin-left: 0;
	height: 24px;
}

@media screen and (max-width: 700px) {
	body.home .slide-type1 {
		height: min(72svh, 540px);
		border-radius: 20px;
	}

	body.home .slide-type1 .slide img {
		object-position: center center;
	}

	body.home .hero-copy {
		left: 1.15rem;
		width: calc(100% - 2.3rem);
		bottom: 4rem;
	}

	body.home .hero-copy h2 {
		font-size: 1.98rem;
		line-height: 1.22;
	}

	body.home .hero-copy .lead {
		font-size: 0.92rem;
		line-height: 1.78;
		max-width: 21rem;
	}

	body.home .hero-actions-home {
		flex-direction: column;
		align-items: stretch;
	}

	body.home .hero-btn {
		min-width: 0;
		width: 100%;
		min-height: 46px;
		font-size: 0.82rem;
	}

	body.home .hero-route-copy {
		display: block;
		font-size: 0.82rem;
		max-width: 22rem;
	}

	body.home .hero-scroll {
		left: 1.2rem;
		bottom: 0.8rem;
		font-size: 0.68rem;
	}
}
