/* 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(245, 245, 245, 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
{
	width: 780px;
	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(3, 1fr); /* 4列 */
	column-gap: 20px; /* 横のスペース */
	row-gap: 20px; /* 縦のスペース */
	align-items: stretch; /* 子要素をセルの高さに合わせて引き伸ばす */
	margin: 0px;
	padding: 0px;
}

#pc_navi  .pc_nav_menu ul li
{
	display: block;
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	width: 220px;
}

#pc_navi .menu ul li a
{
	font-size: 36px;
	color: #fff;
	font-weight: bold;
	display: block;
	line-height: 1.2;
	background-color: var(--base-color02);
	border-radius: 6px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	padding: 10px;
	text-align: center;
	overflow: hidden;
	position: relative;
	z-index: 1;
}

#pc_navi  .pc_nav_menu ul li a small
{
	font-size: 16px;
	font-weight: bold;
	display: block;
	margin-bottom: 10px;
	text-align: left;
}

#pc_navi  .pc_nav_menu ul li a big
{
	font-size: 16px;
	font-weight: bold;
	display: block;
	text-align: right;
	margin-top: 10px;
}

#pc_navi  .pc_nav_menu ul li a big:after
{
	font-family: "Font Awesome 6 Free";
	content: '\f152';
	font-weight: 900;
	margin-left: 10px;
}


#pc_navi .pc_nav_menu ul li a:before
{
	position: absolute;
	top: 0;
	left: 0;
	content: '';
	width: 100%;
	height: 100%;
	transform: scale(0, 1);
	transform-origin: center top;
	transition: transform .3s;
	z-index: -1;

	background-color: #FFFF00;
}

#pc_navi .pc_nav_menu ul li a:hover
{
	color: #333 !important;
	-moz-transition-duration: 0.6s;
	-webkit-transition-duration: 0.6s;
	-o-transition-duration: 0.6s;
	-ms-transition-duration: 0.6s;
	transition-duration: 0.6s;
}

#pc_navi .pc_nav_menu ul li a:hover:before
{
	transform-origin: center top;
	transform: scale(1, 1);
}

#pc_navi .sub_menu
{
	clear: both;
	padding-top: 20px;
}

#pc_navi .sub_menu ul
{
	display: block;
	margin: 0px;
	padding: 0px;
}

#pc_navi .sub_menu ul li
{
	display: block;
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}

#pc_navi .sub_menu ul li a
{
	font-size: 20px;
	color: var(--btn-color);
	font-weight: normal;
	display: inline-block;
	padding-top: 0px;
	line-height: 1.6;
	margin-bottom: 10px;
	padding-bottom: 2px;
}

#pc_navi .sub_menu ul li a:after
{
	font-family: "Font Awesome 6 Free";
	content: '\f35d';
	font-weight: 900;
	margin-left: 10px;
}

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


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



}


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


@media (max-width: 1200px) 
{

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



#pc_navi  .pc_nav_menu ul li
{
	width: auto;
}


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



}

/* タブレットレイアウト : 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)
{
nav,
#pc_navi
{
	display: none;
}


}