@charset "UTF-8";
/* CSS Document */



/****************************************************************************************************
初期設定
****************************************************************************************************/

/* 古いブラウザへの対応 */
article, aside, figure, figcaption, footer, header, nav, section {
	display: block;
}
/* 古いブラウザへの対応 */

.pcOnly {
	display: block;
}
img.pcOnly,
span.pcOnly,
i.pcOnly {
	display: inline;
}
.spOnly {
	display: none;
}

html,body{
	text-align: center;
	font-family:  "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", "Helvetica Neue", "Helvetica","Arial", sans-serif;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
	font-feature-settings: "palt" 1;
	scroll-padding-top: 160px;
	min-width: 1160px;
	background:#FFF;
	font-size: 15px;
	line-height: 2.0;
}
.serif {
	font-family: 'Kozuka Mincho Pro', 'Kozuka Mincho Std', '小塚明朝 Pro R', '小塚明朝 Std R', "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

* {
	box-sizing: border-box;
}
img {
	vertical-align: top;
}
a {
	word-break: break-all;
	color: #000;
	text-decoration: none;
	-webkit-transition: opacity 300ms;
	-moz-transition: opacity 300ms;
	transition: opacity 300ms;
}
a:hover {
	opacity: .5;
}

/* clear fix */
.clearfix:before,
.clearfix:after {
	content:" ";
	display:table;
}
.clearfix:after {
	clear:both;
}
.clearfix {
	*zoom:1;
}
/* clear fix */



/****************************************************************************************************
header
****************************************************************************************************/
#header {
	min-width: 1160px;
}
#menu-btn {
	position: fixed;
	right: 32px;
	top: 32px;
	width: 68px;
	height: 68px;
	z-index: 1000;
}
#menu-btn a {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	width: 100%;
	height: 100%;
	background: #FFE800;
	border-radius: 50%;
	font-size: 0.733rem;
	font-weight: bold;
	letter-spacing: 0.2px;
	line-height: 3.2;
}
#menu-btn span,
#menu-btn a::before,
#menu-btn a::after {
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 34px;
	height: 2px;
	margin: auto;
	background: #000;
	-webkit-transition: 200ms;
	-moz-transition: 200ms;
	transition: 200ms;
}
#menu-btn span {
	background: #000;
	overflow: visible;
	white-space: nowrap;
	-webkit-transform: translate(0, -5px);
	transform: translate(0, -5px);
}
#menu-btn a::before {
	-webkit-transform: translate(0, -12px);
	transform: translate(0, -12px);
	content: "";
}
#menu-btn a::after {
	-webkit-transform: translate(0, 2px);
	transform: translate(0, 2px);
	content: "";
}
#menu-btn.active {
	background: none;
}
#menu-btn.active span {
  opacity: 0;
  -webkit-transition: opacity 150ms;
  transition: opacity 150ms;
}
#menu-btn.active a::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
#menu-btn.active a::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}




/****************************************************************************************************
menu
****************************************************************************************************/
#menu {
	position: fixed;
	width: auto;
	max-height: 100vh;
	overflow: scroll;
	right: -100%;
	top: 0;
	padding: 40px 40px 40px 40px;
	background: #664C00;
	color: #FFF;
	font-size: 1.2rem;
	line-height: 2.0;
	text-align: left;
	z-index:1;
	-webkit-transition: 300ms;
	-moz-transition: 300ms;
	transition: 300ms;
}
#menu.active {
	right: 0;
	top: 0;
}
#menu ul li {
	border-top: 1px dotted rgba(255,255,255,.5);
	padding-right: 100px;
}
#menu ul li:nth-last-of-type(1) {
	border-bottom: 1px dotted rgba(255,255,255,.5);
}
#menu ul + ul li:nth-of-type(1) {
	border-top: none;
}
#menu ul li a {
	padding: 0.4em 0;
}
#menu ul li.select a,
#menu ul li.current-menu-item a,
#menu ul li.current-page-ancestor a {
	font-weight: bold;
}
#menu ul li.focus a {
	color: #FFE500;
	font-weight: bold;
}
#menu ul li h3 {
	font-size: 1rem;
	font-weight: normal;
}
#menu ul li a {
	display: block;
	color: #FFF;
}



/****************************************************************************************************
gNav
****************************************************************************************************/
#gNav {
	padding: 17px;
}
#gNav ul {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	letter-spacing: -0.1px;
}
#gNav ul::before {
	content: "｜　\00a0";
}
#gNav ul::after {
	content: "\00a0　｜";
}
#gNav ul + ul {
	margin-top: 0.5em;
}
#gNav ul li + li::before {
	content: "\00a0　｜　\00a0";
}
#gNav ul li a {
}
#gNav ul li.select a,
#gNav ul li.current-menu-item a,
#gNav ul li.current-page-ancestor a {
	color: #B28500;
	font-weight: bold;
}
#gNav ul li.focus a {
	color: #B28500;
	font-weight: bold;
}



/****************************************************************************************************
footer
****************************************************************************************************/
#footer {
	min-width: 1160px;
	/* margin-top: 54px; */
	/* padding-top: 96px; */
	padding-top: 70px;
	padding-bottom: 50px;
	/* background:
		url(../img/common/icon-cloud.png),
		url(../img/common/footer-img1.png),
		url(../img/common/footer-img2.png);
	background-position:
		center top,
		left bottom,
		right bottom;
	background-repeat:
		no-repeat,
		no-repeat,
		no-repeat; */
}
#pagetop {
	margin: auto;
	-ms-writing-mode: tb-rl;
	-webkit-writing-mode: vertical-rl;
	writing-mode: vertical-rl;
	font-size: 0.666rem;
	line-height: 1.0;
	letter-spacing: 1px;
}
#pagetop a {
	display: block;
	padding-top: 40px;
	background: url(../img/common/arrow-up-bl.png) no-repeat center top;
}
#fNav {
	margin-top: 50px;
}
#fNav ul {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	letter-spacing: -0.1px;
}
#fNav ul::before {
	content: "｜　\00a0";
}
#fNav ul::after {
	content: "\00a0　｜";
}
#fNav ul + ul {
	margin-top: 0.5em;
}
#fNav ul li + li::before {
	content: "\00a0　｜　\00a0";
}
#fNav ul li a {
}
#fNav ul li.select a {
	color: #B28500;
	font-weight: bold;
}
#fNav ul li.focus a,
#fNav ul li.current-menu-item a,
#fNav ul li.current-page-ancestor a {
	color: #B28500;
	font-weight: bold;
}

#copyright {
	font-size: 0.8rem;
	margin-top: 40px;
}

/* 231201追加 事業再構築 */
#jigyo {
	border:1px solid #000;
	width:100px;
	margin:0 auto;
	margin-top:40px;
}


@media screen and (max-width: 767px),
screen and (max-width: 960px) and (orientation: landscape) {
	
	
	
	/****************************************************************************************************
	初期設定
	****************************************************************************************************/
	html,
	body {
		min-width: initial;
		min-width: auto;
		scroll-padding-top: 0;
		min-width: initial;
		min-width: auto;
		font-size: 3.466vw;
		line-height: 2.0;
	}
	img {
		width: 100%;
		height: auto;
	}
	a {
		-webkit-transition: none;
		transition: none;
	}
	a:hover {
		opacity:1;
	}
	.pcOnly,
	img.pcOnly,
	span.pcOnly,
	i.pcOnly {
		display:none;
	}
	.spOnly {
		display:block;
	}
	span.spOnly {
		display:inline;
	}
	
	
	
	/****************************************************************************************************
	header
	****************************************************************************************************/
	#header {
		min-width: initial;
		min-width: auto;
	}
	#menu-btn {
		right: 3.5vw;
		top: 3.5vw;
		width: 12vw;
		height: 12vw;
	}
	#menu-btn a {
		font-size: 0.533rem;
		letter-spacing: 0;
		line-height: 3.8;
	}
	#menu-btn span,
	#menu-btn a::before,
	#menu-btn a::after {
		width: 6vw;
		height: 0.4vw;
	}
	#menu-btn span {
		-webkit-transform: translate(0, -1vw);
		transform: translate(0, -1vw);
	}
	#menu-btn a::before {
		-webkit-transform: translate(0, -2.4vw);
		transform: translate(0, -2.4vw);
	}
	#menu-btn a::after {
		-webkit-transform: translate(0, 0.4vw);
		transform: translate(0, 0.4vw);
	}
	
	
	
	
	/****************************************************************************************************
	menu
	****************************************************************************************************/
	#menu {
		padding: 6vw;
		font-size: 1.0rem;
	}
	#menu.active {
		right: 0;
		top: 0;
	}
	#menu ul li {
		border-top: 1px dotted rgba(255,255,255,.5);
		padding-right: 100px;
	}
	#menu ul li:nth-last-of-type(1) {
		border-bottom: 1px dotted rgba(255,255,255,.5);
	}
	#menu ul li a {
		padding: 0.4em 0;
	}
	#menu ul li.select a {
		font-weight: bold;
	}
	#menu ul li.focus a {
		color: #FFE500;
		font-weight: bold;
	}
	#menu ul li h3 {
		font-size: 1rem;
		font-weight: normal;
	}
	#menu ul li a {
		display: block;
		color: #FFF;
	}
	
	
	
	/****************************************************************************************************
	gNav
	****************************************************************************************************/
	#gNav {
		display: none;
	}
	
	
	
	/****************************************************************************************************
	footer
	****************************************************************************************************/
	#footer {
		min-width: initial;
		min-width: auto;
		margin-top: 15vw;
		padding: 12vw 4vw 10vw 4vw;
		/* background-size:
			10vw auto,
			28.571vw auto,
			28.571vw auto; */
	}
	#pagetop {
		font-size: 0.6rem;
		letter-spacing: 0;
	}
	#pagetop a {
		padding-top: 6.5vw;
		background-size: auto 5vw;
	}
	#fNav {
		margin-top: 10vw;
	}
	#fNav ul {
		-webkit-box-lines: multiple;
		-webkit-flex-wrap: wrap;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		border-right: 1px solid #CCC;
		letter-spacing: 0;
	}
	#fNav ul li {
		width: 50%;
		border-left: 1px solid #CCC;
		border-top: 1px solid #CCC;
	}
	#fNav ul::before,
	#fNav ul::after,
	#fNav ul li + li::before {
		display: none;
	}
	#fNav ul + ul {
		margin-top: 0;
		border-bottom: 1px solid #CCC;
	}
	#fNav ul + ul li:nth-last-of-type(1) {
		width: 100%;
	}
	#fNav ul li a {
		display: block;
		padding: 0.4em;
	}
	
	#copyright {
		font-size: 0.6rem;
		margin-top: 7vw;
	}
}