@charset "UTF-8";

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 10px; }
body { color: #462e13; font-family: 'Noto Sans JP', YuGothic, YuGothicM, メイリオ, Meiryo, 'ＭＳ ゴシック', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', sans-serif; font-size: 1.6rem; line-height: 1.8; -webkit-text-size-adjust: 100%; }
img { border: 0; vertical-align: top; -ms-interpolation-mode: bicubic; }
a { outline: none; }
a:link { color: #1d3994; text-decoration: none; }
a:visited { color: #639; text-decoration: none; }
a:hover { text-decoration: underline; transition: all 0.3s ease; }
a:hover img { opacity: 0.8; transition: all 0.3s ease; }
button { background: transparent; border: none; appearance: none; cursor: pointer; outline: none; }
.clearfix::after { content: ''; display: block; clear: both; }

@media screen and (max-width: 1024px) {
body.on { overflow: hidden; }
}

@media screen and (max-width: 767px) {
}

/* --------------------------------------------------
	common
-------------------------------------------------- */
.body-wrap {
	width: 1200px;
	margin: 0 auto;
}
.kiwi {
	font-family: 'Kiwi Maru', serif;
}
.flex-box {
	display: flex;
	align-items: center;
}
.flex-center {
	justify-content: center;
}
.text-center {
	text-align: center;
}
.text-bold {
	font-weight: 700;
}

a.btn {
	display: block;
    padding: 10px 15px;
	width: 200px;
    border: solid 1px #462e13;
    background: #fff;
    color: #462e13;
    text-align: left;
    position: relative;
}
a.btn::after {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    border-top: solid 2px #462e13;
    border-right: solid 2px #462e13;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%) rotate(45deg);
    transition: all .3s;
}
a.btn:hover {
    background: #462e13;
    color: #fff;
    text-decoration: none;
}
a.btn:hover::after {
    border-top-color: #fff;
    border-right-color: #fff;
    right: 16px;
}
a.pdf,a.xlsx {
	display: flex;
	align-items: center;
}
a.pdf::before {
	content: url(../img/common/icon-pdf.svg);
	width: 22px;
	height: 23px;
	margin-right: 5px;
}
a.xlsx::before {
	content: url(../img/common/icon-xlsx.svg);
	width: 22px;
	height: 23px;
	margin-right: 5px;
}
a.new-window::after {
	content: '';
	display: inline-block;
	width: 14px;
	height: 14px;
	background: url(../img/common/icon-new-window.svg) no-repeat center/cover;
	margin-left: 7px;
}
@media screen and (max-width: 1200px) {
	.body-wrap {
		width: 100%;
		padding: 0 15px;
	}
}
@media screen and (max-width: 767px) {
}

/* --------------------------------------------------
	header
-------------------------------------------------- */
#globalHeader {
	padding-top: 10px;
	background: #462e13;
	color: #fff;
}
#globalHeader a,#globalHeader a:visited {
	color: #fff;
}
#globalHeader .header-top {
	justify-content: space-between;
}
/* 検索ボックス */
#site-search {
	position: relative;
}
#site-search .search-box {
	-webkit-appearance: none;
  	-moz-appearance: none;
  	appearance: none;
  	border: none;
  	border-radius: 10vw;
	outline: none;
	padding: 8px 15px;
	width: 300px;
  font-size: 100%;
}
#site-search .search-btn {
	width: 21px;
	height: 21px;
	background: url(../img/common/icon-search.png) no-repeat center/contain;
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translateY(-50%);
	z-index: 1;
}
#globalNavi {
	font-family: 'Kiwi Maru', serif;
}
#globalNavi .nav-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
#globalNavi .sp {
	display: none;
}
#globalNavi ul {
	padding: 12px 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	list-style: none;
}
#globalNavi ul li {
	padding: 5px 0;
	text-align: center;
}
#globalNavi ul.left {
	width: calc(100% - 420px);
}
#globalNavi ul.right {
	width: 420px;
	padding-left: 20px;
}
#globalNavi ul.left> li {
	width: 18%;
	border-right: dotted 3px #fff;
	position: relative;
}
#globalNavi ul.left> li:first-of-type {
	width: 10%;
}
#globalNavi li.gr {
	padding: 5px 0;
	border-right: none;
	border-radius: 10vw;
	width: 190px;
	background: #65916f;
	transition: all .3s;
}
#globalNavi li.gr:hover {
	background: #396f45;
}
#globalNavi li.gr:hover a {
	text-decoration: none;
}
#globalNavi .sub-li {
	opacity: 0;
	visibility: hidden;
	position: absolute;
	top: 51px;
	z-index: 10;
	transition: all .3s;
}
#globalNavi ul.left> li:hover .sub-li {
	opacity: 1;
	visibility: visible;
}
#globalNavi .sub-li ul {
	margin-top: 3px;
	display: block;
	padding: 10px 5px;
	background: #fff;
	border-radius: 5px;
	white-space: nowrap;
}
#globalNavi .sub-li li {
	padding: 10px;
	text-align: left;
	border-bottom: solid 1px rgba(70, 46, 19, 0.15);
}
#globalNavi .sub-li li:last-of-type {
	border-bottom: none;
}
#globalNavi .sub-li li::before {
	content: '';
	display: inline-block;
	margin: 0 10px 0 5px;
	width: 5px;
	height: 5px;
	border-top: solid 2px #65916f;
	border-right: solid 2px #65916f;
	transform: translateY(-50%) rotate(45deg);
	transition: all .3s;
}
#globalNavi .sub-li li a {
	color: #462e13;
	transition: all .3s;
}
#globalNavi .sub-li li a:hover {
	color: #65916f;
	text-decoration: none;
}

@media screen and (max-width: 1024px) {
	#globalHeader {
		padding: 10px 0;
		height: 70px;
	}
	#globalHeader h1 img, #globalHeader strong img {
		width: auto;
		height: 45px;
	}
	#site-search {
		display: none;
	}
	#globalNavi {
		position: fixed;
		top: 0;
		right: 0;
		z-index: 999;
		padding: 60px 25px 40px;
		width: 100%;
		height: 100vh;
		background: #462e13;
		display: none;
		overflow: auto;
	}
	#globalNavi .nav-wrap {
		display: block;
	}
	#globalNavi .sp {
		display: block;
	}
	#globalNavi ul.left {
		display: block;
		width: 100%;
	}
	#globalNavi ul.right {
		display: block;
		width: 100%;
		padding: 10px 0;
	}
	#globalNavi ul.left li, #globalNavi li.gr, #globalNavi ul.left li:first-of-type {
		width: 100%;
		background: none;
		padding: 0;
		border-right: none;
		text-align: left;
	}
	#globalNavi li a {
		width: 100%;
		display: block;
	}
	#globalNavi ul.left> li {
		border-bottom: solid 1px #fff;
		font-size: 1.8rem;
		position: relative;
	}
	#globalNavi ul.left> li> a {
		padding: 15px 0;
	}
	#globalNavi ul.left span.plus {
		display: block;
		width: 63px;
		height: 63px;
		position: absolute;
		right: 0;
		top: 0;
		z-index: 1000;
		cursor: pointer;
	}
	#globalNavi ul.left span.plus::before {
		content: '';
		display: inline-block;
		width: 2px;
		height: 14px;
		background: #fff;
		border-radius: 1px;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
		transition: all .3s;
	}
	#globalNavi ul.left span.plus::after {
		content: '';
		display: inline-block;
		width: 14px;
		height: 2px;
		background: #fff;
		border-radius: 1px;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
	}
	#globalNavi ul.left li.active span.plus::before {
		transform: translate(-50%,-50%) rotate(-90deg);
	}
	/*
	#globalNavi ul.left> li> a::before, #globalNavi ul.left> li> a::after {
		content: '';
		display: inline-block;
		background: #fff;
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
	}
	#globalNavi ul.left> li> a::before {
		width: 2px;
		height: 14px;
		right: 16px;
		border-radius: 1px;
		transition: all .5s;
	}
	#globalNavi ul.left> li> a::after {
		width: 14px;
		height: 2px;
		border-radius: 1px;
		right: 10px;
	}
	#globalNavi ul.left> li.active> a::before {
		height: 0;
	}
	*/

	#globalNavi ul.left> li:first-of-type a::before, #globalNavi ul.left> li:first-of-type a::after {
		content: none;
	}
	#globalNavi ul.left> li:first-of-type a {
		display: flex;
		align-items: center;
	}
	#globalNavi ul.left> li:first-of-type a img {
		margin-right: 10px;
	}
	#globalNavi .sub-li {
		font-size: 1.5rem;
		position: static;
		opacity: 1;
		visibility: visible;
		transition: none;
		display: none;
	}
	#globalNavi .sub-li ul {
		margin: 0 0 20px;
		padding: 0;
		background: none;
		color: #fff;
	}
	#globalNavi .sub-li li {
		display: flex;
		align-items: center;
		margin: 5px 0;
	}
	#globalNavi .sub-li li::before {
		transform: translateY(0) rotate(45deg);
	}
	#globalNavi .sub-li li a {
		color: #fff;
		display: inline;
	}

	#globalNavi ul.right li {
		margin: 5px 0;
		font-size: 1.6rem;		
	}
	#globalNavi li.gr {
		display: flex;
		align-items: center;
	}
	#globalNavi li.gr::before {
		content: '';
		display: inline-block;
		margin: 0 10px 0 5px;
		width: 5px;
		height: 5px;
		border-top: solid 2px #65916f;
		border-right: solid 2px #65916f;
		transform: rotate(45deg);
		transition: all .3s;
	}
	#globalNavi li.gr:hover {
		background: none;
	}
	#globalNavi .btm {
		margin-top: 20px;
		border-top: solid 1px #fff;
		padding: 20px 0;
	}
	#globalNavi .btm li {
		margin-bottom: 2px;
		font-size: 1.4rem;
		font-weight: 400;
		text-align: left;
		display: flex;
		align-items: center;
	}
	#globalNavi .btm li::before {
		content: '';
		border: none;
		transform: none;
		border-bottom: solid 1px #fff;
	}
	body.on #globalNavi {
		display: block;
	}
}

@media screen and (max-width: 767px) {
}


/* --------------------------------------------------
	オーバーレイ + スマートフォンメニュー
-------------------------------------------------- */

div#overlay {}
a#sp { display: none; }

@media screen and (max-width: 1024px) {
div#overlay { width: 100%; height: 0; background: rgba(255,255,255,0.9); position: absolute; top: 0; left: 0; z-index: 100; }
a#sp { width: 50px; height: 50px; background: #fff; border-radius: 50%; display: block; position: fixed; top: 35px; right: 10px; z-index: 1000; transform: translateY(-50%); }
a#sp span { margin: 0 auto; width: 24px; height: 3px; background: #462e13; border-radius: 2px; display: block; position: absolute; left: 0; right: 0; transition: all 0.3s; }
a#sp span:nth-of-type(1) { top: 16px; }
a#sp span:nth-of-type(2) { top: 24px; }
a#sp span:nth-of-type(3) { top: 32px; }

body.on a#sp { background: none; }
body.on a#sp span { background: #fff; }
body.on a#sp span:nth-of-type(1) { transform: translateY(8px) rotate(-45deg); }
body.on a#sp span:nth-of-type(2) { opacity: 0; }
body.on a#sp span:nth-of-type(3) { transform: translateY(-8px) rotate(45deg); }
}


/* --------------------------------------------------
	footer
-------------------------------------------------- */
#globalFooter {
	background: #462e13;
	color: #fff;
	font-size: 1.5rem;
	line-height: 1.6;
}
#globalFooter>.body-wrap{
	position: relative;
}
#globalFooter .ft-top {
	padding-top: 70px;
	padding-bottom: 110px;
	border-bottom: solid 1px #fff;
	align-items: flex-start;
	position: relative;
}
#globalFooter strong {
	margin: 20px 0 10px;
	display: block;
	font-size: 1.5rem;
	font-weight: 700;
}
#globalFooter strong span {
	font-size: 1.3rem;
	font-weight: 400;
}
#globalFooter p span {
	font-weight: 700;
}
#globalFooter p a {
  color: #fff;
}
#globalFooter .ft-top>ul{
	display: flex;
	margin: 0 50px 0 auto;
	list-style: none;
}
#globalFooter .ft-top>ul li {
	margin-right: 50px;
}
#globalFooter .ft-top .footer-li {
	list-style: none;
}
#globalFooter .ft-top .footer-li li {
	margin: 10px 0;
}
#globalFooter .ft-top .footer-li li a {
	color: #fff;
}
#globalFooter .il-moukurin {
	position: absolute;
	bottom: 0;
	right: 0;
}
#globalFooter .ft-btm {
	padding: 30px 10px;
	justify-content: space-between;
}
#globalFooter a.new-window::after {
	background-image: url(../img/common/icon-new-window-wh.svg);
}
#pagetop {
	width: 60px;
	height: 60px;
	background: #fff;
	border: solid 3px #462e13;
	border-radius: 50%;
	position: absolute;
	top: -30px;
	right: 0;
}
#pagetop::after {
	content: '';
	display: inline-block;
	width: 15px;
	height: 15px;
	border-top: solid 3px #462e13;
	border-right: solid 3px #462e13;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-30%) rotate(-45deg);
}

@media screen and (max-width: 1024px) {
	#globalFooter .ft-top {
		padding-bottom: 120px;
	}
	#globalFooter .ft-top > ul {
		display: none;
	}
	#globalFooter .il-moukurin {
		height: 120px;
	}
	#globalFooter .ft-btm {
		padding: 30px 0;
		flex-direction: column;
		justify-content: center;
	}
	#globalFooter .ft-btm img {
		width: 140px;
	}
	#globalFooter .copy {
		margin-top: 20px;
		font-size: 1.3rem;
	}
	#pagetop {
		right: 10px;
	}

}