header
{
	width: 100%;
	position: fixed;
	z-index: 999;
	top: 0px;
	left: 0;
	transition: 0.4s;
	padding: 0px !important;
	max-width: initial;
	min-width: initial;
	min-height: inherit;
	background-color: rgba(0,150,93,0.6);
	height: 100px;
}

header .body
{
	display: flex;
	justify-content: space-between;
}



.bg_set
{
	background: rgba(255, 255, 255, 0.8);
}



.navi_fix
{
	position: fixed;
	top: 0px;
	z-index: 9999;
	width: 100%;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	background: rgba(0, 75, 159, 0.6);
	transition-duration: .4s;
}

.navi_fix a
{
	color: #fff;
}




header .title
{
	margin: 0px;
	padding-top: 30px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}

header .title a
{
	display: block;
	font-size: 24px;
	margin: 0px;
	padding: 0px;
	width: 310px;
	text-align: left;
}

header .title a img
{
	vertical-align: middle;
	transition-duration: 0.6s;
	transform:scale(1,1);
}

header .title a:hover img
{
	-moz-transition-duration: 0.6s;
	-webkit-transition-duration: 0.6s;
	-o-transition-duration: 0.6s;
	-ms-transition-duration: 0.6s;
	transition-duration: 0.6s;
	transform:scale(1.04,1.04);
}



header  .sp_menu
{

	display: none;
}




nav
{
}

nav ul
{
	display: table;
	width: auto;
	padding: 0px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
}


nav ul li
{
	display: table-cell;
	margin: 0px;
	vertical-align: middle;
	text-align: center;
	padding-right: 0px;
	padding-left: 0px;
	position: relative;
}



/** お問い合わせボタン */
nav .pc_menu
{

}

nav .pc_menu img
{
	cursor: pointer;
}



#sp_navi ul .select
{
	background-color: transparent;
}


.slide-down
{
	animation-name: slideDown;
	animation-fill-mode: forwards;
	animation-timing-function: ease-in;
	animation-iteration-count: 1;
	animation-delay: 0s;
	transform-origin: 50% 50% 0px;
	animation-duration: .3s;
	top: 0px;

}

@keyframes slideDown 
{
  0% 
  {
    top: -140px;
  }
  100% 
  {
    top: 0px;
  }
}

.slide-up 
{
	animation-name: slideUp;
	animation-fill-mode: forwards;
	animation-timing-function: ease-in;
	animation-iteration-count: 1;
	animation-delay: 0s;
	transform-origin: 50% 50%  0px;
	animation-duration: .3s;
	top: -140px;

}
@keyframes slideUp 
{
  0% 
  {
    top: 0px;
  }
  100% 
  {
    top: -140px;
  }
}




#sp_navi
{
	color: var(--base-color);
	background-color: rgba(245, 245, 245, 0.94);
	position: fixed;
	z-index: 800;
	left: 0px;
	width: 100%;
	height: 100%;
	display: none;
	padding-top: 0px;
	padding-bottom: 20px;
	top: 0px;
}



#sp_navi .sp_navi_body
{
	width: 100%;
	height: 100%;
	padding-top: 80px;
	padding-bottom: 120px;
	display: flow-root;
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
	background-color: transparent;
	position: static;
	top: auto;

}

#sp_navi .sp_menu_head
{
	display: flow-root;
	margin-bottom: 40px;
	width: 100%;
	position: absolute;
	left: 0px;
	top: 0px;
	right: 0px;
	z-index: 1100;
	background-color: rgba(245, 245, 245, 0.94);

}

#sp_navi .sp_menu
{
	height: 60px;
	width: 60px;
	top: 0px;
	right: 0px;
	float: right;
}



#sp_navi   .menu
{
	padding-right: 10px;
	padding-left: 10px;
}

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

#sp_navi .menu ul li
{
	display: block;
	width: auto;
	padding-left: 0px;
	list-style-type: none;
	text-align: left;
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}


#sp_navi .menu a
{
	font-size: 24px;
	color: #fff !important;
	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;
}

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

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

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


#sp_navi  .sub_menu
{
	clear: both;
	padding-top: 20px;
	margin-bottom: 20px;
}

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

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

#sp_navi  .sub_menu ul li a
{
	font-size: 18px;
	color: var(--base-color);
	font-weight: normal;
	display: block;
	padding-top: 0px;
	line-height: 1;
	margin-bottom: 10px;
}

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


#sp_navi .sp_navi_body .close_btn
{
	text-align: center;
	padding-top: 0em;
	padding-bottom: 120px;
}

#sp_navi .sp_navi_body .close_btn span
{
	display: inline-block;
	width: auto;
	margin-right: auto;
	margin-left: auto;
	text-align: left;
	-ms-background-size: auto 100%;
	-o-background-size: auto 100%;
	-webkit-background-size: auto 100%;
	-moz-background-size: auto 100%;
	background-size: auto 100%;
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	color: #00468c;
	padding-top: 4px;
	padding-right: 20px;
	padding-bottom: 4px;
	padding-left: 20px;

}

#sp_navi .sp_navi_body .close_btn span:before
{
	font-family: "Font Awesome 5 Free";
	content: '\f00d';
	font-weight: 900;
	margin-right: 10px;
}


#tab 
{

}

#tab ul
{
	text-align: center;
	padding-top: 0px;
	padding-right: 30px;
	padding-bottom: 0px;
	padding-left: 30px;
}

#tab ul li
{
	display: inline-block;
	padding-right: 10px;
	padding-left: 10px;
	list-style-type: none;
}

#tab ul li a
{
	color: #333;
}



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



}


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

header
{
}



}

@media (max-width: 1200px) 
{



}


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


header .body
{
	width: auto !important;
	padding-right: 20px;
	padding-left: 20px;
	padding-bottom: 30px;
}









}

/* スマホ設定  768 以下*/
@media screen and (max-width:767px)
{


header
{
	width: 100%;
	position: fixed;
	z-index: 999;
	top: 0px;
	left: 0;
	transition: 0.4s;
	padding: 0px !important;
	max-width: initial;
	min-width: initial;
	min-height: inherit;
	height: 60px !important;
}


header .body
{
	margin: 0px;
	padding: 0px;
	position: relative;
	overflow: visible;
}


header .title
{
	margin: 0px;
	padding-top: 12px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 10px;
	width: auto;
}

header .title a
{
	display: block;
	padding-top: 0px;
	padding-bottom: 0px;
	max-width: 240px !important;
}


.bg_set
{
	background-color: #9370db;
}


header nav
{
	position: static;
	display: block !important;
	float: right;
}

nav ul li
{
	vertical-align: middle;
	width: 60px;
	height: 60px;
}




header .sp_menu 
{
	margin: 0px;
	padding: 0px;
	display: table-cell;
}


header .sp_menu img
{
	height: 60px;

}

header .pc_menu 
{
	display: none;
}



.head_posi
{
}








}

/* スマホ設定  599 以下*/
@media screen and (max-width:599px)
{
}
