/* CSS Document */

.navi_open
{
	animation-name: slideOpen; 
	animation-fill-mode: forwards;
	animation-timing-function: ease-in;
	animation-iteration-count: 1;
	animation-delay: 0s;
	transform-origin: 50% 50% 0px;
	animation-duration: .6s;
}

@keyframes slideOpen
{
  0% 
  {
    top: -110vh;
  }
  100% 
  {
    top: 0px;
  }
}

.navi_close
{
	animation-name: slideClose;
	animation-fill-mode: forwards;
	animation-timing-function: ease-in;
	animation-iteration-count: 1;
	animation-delay: 0s;
	transform-origin: 50% 50%  0px;
	animation-duration: .6s;
}

@keyframes slideClose
{
  0% 
  {
    top: 0px;
  }
  100% 
  {
    top: -110vh;
  }
}



#pc_navi
{
	color: #fff;
	background-color: rgba(15, 26, 54, 0.9);
	position: fixed;
	z-index: 800;
	left: 0px;
	width: 100%;
	height: 100vh;
	padding-bottom: 10px;
	padding-top: 0px;
	top: 0px;
	padding-left: 0px;
	top: -110vh;
}

#pc_navi  #navi_close
{
	display: none;
	z-index: 10;
	position: absolute;
	top: 0px;
	right: 0px;
}

#pc_navi  #navi_close img
{
	cursor: pointer;
}


.navi_open #navi_close
{
}


#pc_navi .pc_navi_body
{
	display: block;
	width: auto;
	height: 100%;
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
	background-color: transparent;
	scrollbar-width:none;
}

#pc_navi .pc_navi_body::-webkit-scrollbar 
{
	display: none; /* Chrome, Safari, Edge用 */ 
}

#pc_navi .pc_navi_body .body
{
	padding-top: 180px;
	padding-bottom: 100px;
}


#pc_navi .title
{
	margin-bottom: 60px;
}

#pc_navi .title a:hover img
{
	transform:scale(1.04,1.04);
	transition:1s all;

}

#pc_navi .pc_nav_menu
{
	max-width: 1200px;
	margin-right: auto;
	margin-left: auto;
}




#pc_navi  .pc_nav_menu
{
	margin-bottom: 30px;
}

#pc_navi  .pc_nav_menu ul
{
	display: grid;
	grid-template-columns: repeat(4, auto); /* 4列 */
	column-gap: 20px; /* 横のスペース */
	row-gap: 20px; /* 縦のスペース */
	align-items: stretch; /* 子要素をセルの高さに合わせて引き伸ばす */
	margin: 0px;
	padding: 0px;
}

#pc_navi  .pc_nav_menu ul li
{
	display: flex;
	column-gap: 10px;
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}

#pc_navi  .pc_nav_menu ul li .photo
{
	flex-shrink: 0;
}

#pc_navi .menu ul li dl dt
{
	display: block;
	margin: 0px;
	margin-bottom: 10px;
	padding: 0px;

}

#pc_navi .menu ul li dl dd
{
	display: block;
	margin: 0px;
	padding: 0px;
}

#pc_navi .menu ul li dl dt a
{
	font-size: 20px;
	color: #fff;
	line-height: 1.2;
}

#pc_navi .menu ul li dl dd a
{
	font-size: 18px;
	line-height: 1.2;
	color: #fff;
	display: inline-flex;
	align-items: center;
}

#pc_navi .menu ul li dl dd a::before
{
	font-family: "Font Awesome 6 Free";
	content: '\f0da';
	font-weight: 900;
	margin-right: 10px;
	font-size: 10px;
}


#pc_navi .copyright
{
	color: #999;
	text-align: right;
	font-size: 14px;
	line-height: 1;
}



/* PCのみ設定  768 以上*/
@media screen and (min-width:1200px)
{
}

/* タブレット以下 */
@media screen and (max-width: 1199px) 
{

#pc_navi .pc_navi_body .body
{
	padding-top: 160px;
	padding-bottom: 100px;
}

}



/* 横置きの場合 */
@media (max-width: 1199px) and (orientation: landscape)
{


}

/* 縦置きの場合 */
@media (max-width: 1199px) and (orientation: portrait)
{


#pc_navi  .pc_nav_menu ul
{
	display: grid;
	grid-template-columns: repeat(2, auto); /* 4列 */
	column-gap: 20px; /* 横のスペース */
	row-gap: 40px; /* 縦のスペース */
}
}


/* タブレットレイアウト : 768 px 〜 959 px*/
@media screen and (min-width:768px) and (max-width:1199px)
{


#pc_navi
{
	top: -110%;
	height: 100%;
	min-width: initial;
}

#pc_navi .body
{
	width: auto;
	padding-right: 20px;
	padding-left: 20px;
	height: 100vh;
}


@keyframes slideOpen
{
  0% 
  {
	top: -110%;
  }
  100% 
  {
    top: 0px;
  }
}


@keyframes slideClose
{
  0% 
  {
    top: 0px;
  }
  100% 
  {
	top: -110%;
  }
}



}

/* スマホ設定  768 以下*/
@media screen and (max-width:767px)
{
#pc_navi
{
	display: none;
}


}