@charset "utf-8";
/***** 全体 *****/
#wrapper {
	width: 1100px;
	margin: 0 auto;
	background-color: var(--base-color);
}

#container {
	display: flex;
	flex-direction: row-reverse;
	justify-content: space-between;
}

.l-wrap__r {
	flex: 1;
	max-width: 820px;
}

.l-wrap__l {
	width: 280px;
}

@media screen and (max-width: 768px) {
	#wrapper {
		width: 100%;
	}
	
	#container {
		display: block;
	}
	
	.l-wrap__l {
		width: 100%;
	}
}

/***** header *****/
.l-header {
	height: 140px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.l-header__ttl {
	width: 80%;
}

.l-header__ttl a {
	display: inline-block;
}

@media screen and (max-width: 768px) {
	.l-header {
		width: 100%;
		height: 60px;
		padding: 1.6rem;
		justify-content: space-between;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 99;
		background-color: var(--base-color);
	}

	.l-header__ttl img {
		max-height: 35px;
		object-fit: contain;
		object-position: left;
	}
}

/***** nav *****/
.l-gnav {
	position: relative;
}

.l-gnav svg {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 50px;
}

.l-gnav__list {
	padding-bottom: 8rem;
	background: linear-gradient(to top, rgba(51, 124, 73, 0.5), var(--sub-color));
	border-radius: 0 0 15px 0;
}

.l-gnav__list li a {
	display: block;
	padding: 1.6rem;
	text-decoration: none;
	color: #fff;
	font-family: 'Noto Serif JP', serif;
	font-weight: 600;
	border-bottom: 1px solid var(--base-color);
	position: relative;
	transition: 0.4s;
}

.l-gnav__list .focus a {
	background-color: #fff;
	color: var(--black-color);
	padding-left: 2.2rem;
}

.l-gnav__list .focus a:hover {
	background-color: #fff;
}

.l-gnav__list li a:hover {
	background-color: rgba(255, 255, 255, 0.3);
	padding-left: 2.2rem;
}

.l-gnav__list .focus a:before {
	position: absolute;
	top: 0;
	left: 6px;
	height: 100%;
	content: '';
	border-left: 4px dotted var(--sub-color);
}

.l-gnav__bnr {
	margin: 10px 0 30px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 15px;
}

.l-gnav__bnr li {
	width: 250px;
	max-width: 100%;
}

/* 非公開・準備中ページ用のクラス（追記） */
.l-gnav__list li.disabled a {
    color: #ccc;               /* 文字色をグレーに（維持） */
    background-color: rgba(43, 43, 43, 0.25); /* 背景を少し暗く（維持） */
    cursor: pointer;           /* リンクとして認識できるようポインターに変更 */
}

/* ホバー時も見た目を維持するための追記 */
.l-gnav__list li.disabled a:hover {
    color: #ccc;
    background-color: rgba(43, 43, 43, 0.25); /* 通常リンクのホバー背景色を上書きして防ぐ */
    padding-left: 1.6rem; /* 通常リンクのホバー時の右への押し出し（インデント）を防ぐ */
}

/* サイドバー動画エリア */
.l-gnav__movie {
    width: 100%;
    padding: 1rem; /* 左右の余白はメニューに合わせる */
    box-sizing: border-box;
    position: relative;
    z-index: 2; /* 背景装飾より手前に表示 */
}

/* 動画本体のスタイル */
.l-gnav__movie video {
    width: 100%;       /* 横幅いっぱいに広げる */
    height: auto;      /* 高さは自動 */
    border-radius: 5px; /* 角を少し丸くする（任意） */
    box-shadow: 0 2px 5px rgba(0,0,0,0.2); /* 影をつける（任意） */
    background-color: #000; /* 動画読み込み中の背景色 */
    display: block;
}

/* スマホ表示時の調整（必要であれば） */
@media screen and (max-width: 768px) {
    .l-gnav__movie {
        margin-top: 2rem; /* スマホでは余白を広めに取る */
        padding-bottom: 4rem; /* 下部に余裕を持たせる */
    }
}

@media screen and (max-width: 768px) {
	.l-gnav {
		width: 100%;
		height: 100%;
		overflow: auto;
		padding-top: 60px;
		position: fixed;
		top: 0;
		right: 0;
		z-index: 10;
		transform: translate(100%);
		transition: all .5s;
	}
	
	.l-gnav.open {
		transform: translateZ(0);
	}
	
	.l-gnav svg {
		display: none;
	}
	
	.l-gnav__list {
		padding-bottom: 0;
		border-radius: 0;
		background-color: var(--sub-color);
	}
	
	.l-gnav__list li:last-child a {
		border: none;
	}
}

/* ハンバーガーボタン */
@media screen and (max-width:768px) {
  .c-menu__btn {
    position: sticky;
    z-index: 999;
    right: 10px;
    transition: .3s;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .c-menu__trigger {
    width: 18px;
    height: 18px;
    position: relative;
  }
  .c-menu__trigger span {
    display: inline-block;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: #fff;
    transition: all .2s;
  }
  .c-menu__trigger span:nth-last-of-type(1) {
    top: 0;
  }
  .c-menu__trigger span:nth-last-of-type(2) {
    width: 70%;
    top: 8px;
  }
  .c-menu__trigger span:nth-last-of-type(3) {
    bottom: 0;
  }
  .c-menu__btn.active .c-menu__trigger span:nth-of-type(1) {
    transform: translateY(-8px) rotate(45deg);
  }
  .c-menu__btn.active .c-menu__trigger span:nth-of-type(2) {
    opacity: 0;
  }
  .c-menu__btn.active .c-menu__trigger span:nth-of-type(3) {
    transform: translateY(9px) rotate(-45deg);
  }
}

/***** footer *****/
.l-footer__container {
	background-color: #fff;
	display: flex;
	justify-content: space-around;
	padding: 4rem 3rem;
	gap: 4rem;
}

.l-footer__item {
	flex: 1;
}

.l-footer__item dt {
	color: #fff;
	font-family: 'Noto Serif JP', serif;
	font-weight: 600;
	background-color: var(--point-color);
	margin-bottom: 1.6rem;
	padding: 1rem 1.6rem;
}

.l-footer__item dd {
	font-size: 1.5rem;
}

.l-footer__item dd a {
	color: var(--black-color);
}

.l-footer__copy {
	text-align: center;
	color: #fff;
	font-size: 1.2rem;
	padding: 1.6rem 0;
}

@media screen and (max-width: 768px) {
	.l-footer__container {
		display: block;
		padding: 3rem 1.6rem;
	}
	
	.l-footer__item:first-child {
		margin-bottom: 1.6rem;
	}
	
	.l-footer__item dt {
		margin-bottom: 0;
		padding: 0.8rem 1.6rem;
	}
}