@charset "utf-8";

/* ------  style reset  and  accessibility style   start----- */

:root {
	--hf-dark-green: #00502c;
	--hf-green: #009a53;
	--hf-light-green: #9dc814;
	--hf-menu-border: #cbcbcb;
	--hf-light-gray: #f7f8f9;
	--hf-cloneSub-border: #8bc700;
}
body {
  font-size: 16px;
  line-height: 1.6;
  color: #2d2d2d;
  -webkit-text-size-adjust: 100%;
}
img {
	max-width:100%;
	height:auto;
	margin:0;
	padding:0;
	border:0;
	font-size:100%;
	vertical-align:bottom;
	background:transparent;
}
button,
input[type="text"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	padding: 0;
	margin: 0;
	border: none;
	background-color: transparent;
	color: #2d2d2d;
	cursor: pointer;
}

/* キーボード操作"以外"でフォーカスされた際はoutlineを消す */
.menuBtn:focus:not(:focus-visible),
.mainMenu-item:focus:not(:focus-visible),
.cloneMainMenu-item:focus:not(:focus-visible){
	outline: 0;
}

/* スクリーンリーダー対策（表示するが読み上げしない） */
.visually-hidden {
  position: fixed !important;
  top: 0px !important;
  left: 0px !important;
  width: 4px !important;
  height: 4px !important;
  opacity: 0 !important;
  overflow: hidden !important;
  border: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
  visibility: visible !important;
}

/* box-sizing */
.siteHeader,
.siteHeader h1,
.siteHeader #th70,
.siteHeader .searchArea input[type="text"],
.siteHeader > .allbtn_txt,
.siteHeader .searchArea,
.searchArea form,
.menuArea,
.menuWrap,
.menuBtn,
.menuWrapArea,
.informationWrapper,
.subMenu > li > span,
.subMenu a,
.cloneMenuWrap.is-fixed,
.cloneMenuWrap.is-fixed > ul,
.cloneSubMenu,
.cloneSubMenu:before,
.cloneSubMenu > li,
.cloneSubMenu .subMenuChild,
.cloneSubMenu[data-layout="cloneLayout0"] > li:first-child .subMenuChild > li,
.cloneSubMenu[data-layout="cloneLayout1"] > li:first-child .subMenuChild > li,
.cloneSubMenu[data-layout="cloneLayout2"] > li:first-child .subMenuChild > li,
.cloneSubMenu[data-layout="cloneLayout3"] > li:first-child .subMenuChild > li,
.cloneSubMenu[data-layout="cloneLayout4"] > li:first-child .subMenuChild > li,
.cloneSubMenu[data-layout="cloneLayout5"] > li:first-child .subMenuChild > li,
.cloneSubMenu .subMenuChild > li > a,
.cloneSubMenu::after,
.siteOwner,
.breadcrumb {
   	 box-sizing: border-box;
}


/* ------  header common style   start----- */
/* font-style, font-weight for googlefont */
.notoSansJP {
	font-family: 'Noto Sans JP', sans-serif;
}
.notoSansJP-w50 {
	font-weight: 500;
}
.notoSansJP-w70 {
	font-weight: 700;
}

/* flex style */
.flexNW {
	display: flex;
}
.flexHeightC {
	display: flex;
	align-items: center;
}
.flexCC {
	display: flex;
	justify-content: center;
	align-items: center;
}

/* ヘッダー固定によるリンク先隠れ防止 */
a[class="link-space"] {
	display: block;
}
.link-space:before {
	content: '';
	display: block;
	padding-top: 64px;
	margin-top: -64px;
	visibility: hidden;
}


/* ------ .headerWrapper startt ----- */
.headerWrapper {
	position: relative;
	padding-bottom: 7px;
*/}
.headerWrapper:before {
	content: "";
	display: block;
	width: 100%;
	height: 7px;
	position: absolute;
	left: 0;
	bottom: 0;
	background-color: var(--hf-dark-green);
}
.headerWrapper:after {
	content: "";
	display: block;
	width: 100%;
	height: 4px;
	position: absolute;
	left: 0;
	bottom: -4px;
	background-color: var(--hf-green);
}

/* .siteHeader */
header h1 {
	float: initial;
}
.siteHeader {
	max-width: 1280px;
	height: 138px;
	padding: 32px 20px 0;
	margin: 0 auto;
	display: flex;
	gap: 20px;
	position: relative;
}
.siteHeader h1,
.siteHeader #th70 {
	padding: 0;
}
.siteHeader h1,
.siteHeader #th70 {
	position: static;
}

/* .siteLogo */
.siteLogo {
	flex: 0 1 343px;
	margin-right: auto;
}

/* .headerContact / .cloneHeaderContact */
.headerContact {
	margin-top: 7px;
}
.headerContact a {
	font-size: 16px;
}
.headerContact a > span::before,
.cloneHeaderContact a > span::before {
	content: "";
	display: inline-block;
	width: 8px;
	height: 8px;
	background-color: #ff7e00;
	border-radius: 50%;
	margin-right: 5px;
	position: relative;
	top:-2px;
}

/* .snsIcon / .cloneSnsIcon */
.snsIcon ul,
.cloneSnsIcon ul {
	width: fit-content;
	margin: 0 auto;
	gap: 20px;
}
.snsIcon li,
.cloneSnsIcon li {
	flex: 0 0 auto;
}
.snsIcon a,
.cloneSnsIcon a {
	display: block;
}

/* .searchArea */
.searchArea {
	flex: 0 1 300px;
	height: 35px;
}
.searchArea form {
	width: 100%;
	height: 100%;
}
.searchArea input[type="text"] {
	width: calc(240 / 300 * 100%);
	height: 100%;
	font-family: inherit;
	font-size: 114.28571%;
	padding: 0 0.625em;
	border: 1px solid var(--hf-menu-border);
}
.searchArea input[type="text"]::placeholder {
	font-size: 18px;
}
.searchArea button[type="submit"] {
	width: 60px;
	height: 100%;
	background-color: var(--hf-green);
	cursor: pointer;
	position: relative;
}
.searchArea button[type="submit"]::before {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: url(/common/img/frame/search.png) no-repeat center center / 25px auto;
	position: absolute;
	left: 0;
	top: 0;
}

/* -- .menuArea -- */
.menuArea {
	align-self: flex-start;
	flex: 0 0 80px;
}
.menuArea[inert="true"] {
	display: none;
}
/* .menuBtn */
.menuBtn {
	width: 100%;
	height: 78px;
	font-size: 18px;
	padding: calc(27 / 18 * 1em) 0 calc(13 / 18 * 1em);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
	background-color: var(--hf-green);
}
.menuBtn span:first-child {
	font-size: 1em;
	line-height: 1;
	font-weight: 700;
	color: #ffffff;
}
.menuIcon:before  {
	content: "";
	display: block;
	width: calc(45 / 18 * 1em);
	aspect-ratio: 45 / 13;
	background: url(/common/img/change-header/menu-open.png) no-repeat center center / contain;
}
.menuIcon.active:before  {
	background: url(/common/img/change-header/menu-close.png) no-repeat center center / contain;
}
/* .menuWrapArea */
.menuWrapArea {
	background-color: #ffffff;
	border: 2px solid #007f4a;
	position: absolute;
	right: 20px;
	top: 78px;
	z-index: 995;
}
.menuWrapArea,
.subMenu,
.cloneSubMenu {
	display: none;
}
.menuWrap {
	width: 375px;
	max-height: 70dvh;
	padding-right: 5px;
	overflow-y: auto;
	overscroll-behavior-y: contain;
}
.menuWrap > ul {
	width: 100%;
}
.menuWrap > ul > li:not(:first-child),
.subMenu {
	border-top: 1px solid var(--hf-menu-border);
}
/* .mainMenu-item */
.mainMenu-item {
	display: block;
	width: 100%;
	height: 45px;
	text-align: left;
	font-size: 16px;
	padding-left: 1em;
}
.mainMenu-item-icon:before {
	content: "";
	display: inline-block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 5px 0 5px 8.7px;
	border-color: transparent transparent transparent #009a53;
	margin-right: 7px;
	transition: 0.5s all;
}
.mainMenu-item.active .mainMenu-item-icon:before {
	transform: rotate(90deg);
	transform-origin: 50% 50%;
}

/* .subMenu */
.subMenu > li {
	font-size: 18px;
	font-weight: 700;
	padding-left: 1.8em;
}
.subMenu > li:not(:first-child) {
	border-top: 1px solid var(--hf-menu-border);
}
.subMenu > li > span,
.subMenu a {
	height: 45px;
	padding-top: 3px;
	display: flex;
	align-items: center;
}
.subMenu a {
	font-size: 16px;
}
/* .subMenuChild */
.subMenuChild {
	font-weight: 400;
}
.subMenuChild > li > a {
	line-height: 1.2;
	border-top: 1px dashed var(--hf-menu-border);
}
.subMenuChild-icon:before {
	box-sizing: initial;
	content: "";
	display: inline-block;
	width: 5px;
	height: 5px;
	border-top: 3px solid;
	border-right: 3px solid;
	border-color: #8cc800;
	border-radius: 0;
	transform: rotate(45deg);
	position: relative;
	top: -2px;
	margin-right: 7px;
}
/* .subMenuChild-sub */
.subMenuChild-sub {
	padding-left: 1.5625em;
}
.subMenuChild-sub::before {
	content: attr(data-title);
	display: block;
}
.subMenuChild-subIcon {
	padding-right: 0.25em;
}
/* .cloneMenuWrap */
.cloneMenuWrap {
/*	height: 60px;*/
	position: absolute;
	right: 0;
	bottom: 27px;
	z-index: 800;
}
.cloneMenuWrap > ul,
.cloneMenuWrap > li,
.cloneMenuWrap .cloneMainMenu-item {
	line-height: 1;
}
.cloneMenuWrap > ul {
	width: 100%;
	display: flex;
	position: relative;
	z-index: 990;
}
.cloneMenuWrap .cloneMainMenu-item {
	width: 100%;
	white-space: nowrap;
	font-size: 22px;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
}
.cloneMenuWrap .cloneMainMenu-item {
	padding: 0 20px;
	position: relative;
}
.cloneMenuWrap > ul > li:not(:last-child) .cloneMainMenu-item:before {
	content: "";
	display: inline-block;
	width: 2px;
	height: 83%;
	background-color: var(--hf-menu-border);
	position: absolute;
	right: 0;
	bottom: 50%;
	transform: translate(50%, 50%);
}
.cloneMenuWrap .cloneMainMenu-item[aria-expanded="true"]:after {
	content: "";
	display: inline-block;
	width: 24px;
	height: 18px;
	background-color: var(--hf-cloneSub-border);
	clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
	position: absolute;
	left: 50%;
	top: 100%;
	translate: -50% 50%;
}
/* PCのみに適用（モバイルには適用させない） */
@media (any-hover: hover) {
	.cloneMenuWrap .cloneMainMenu-item:hover {
		text-decoration: underline;
		text-underline-offset: 5px;
	}
}
/* .cloneSubMenu */
.cloneSubMenu {
	width: 1240px;
	padding: 26px 105px;
	background-color: #ffffff;
	border: 3px solid var(--hf-cloneSub-border);
	position: absolute;
	left: 0;
	top: 100%;
	translate: -426px 25px;
	line-height: 1;
}
.cloneSubMenu::after {
	content: "";
	display: inline-block;
	width: 66px;
	height: 66px;
	background: url(/common/img/frame/cloneSubMenu-close.png) no-repeat 0 0 / contain;
	border: 2px solid var(--hf-dark-green);
	position: absolute;
	right: 20px;
	bottom: 28px;
	margin-left: auto;
	cursor: pointer;
}
.cloneSubMenu a {
	font-size: 16px;
}
.cloneSubMenu > li > span {
	font-size: 18px;
	font-weight: 700;
	line-height: 1.5;
}
.cloneSubMenu > li > span,
.cloneSubMenu .subMenuChild > li > a {
	padding-left: 10px;
}
/* .subMenuChild */
.cloneSubMenu .subMenuChild {
	padding-top: 10px;
}
.cloneSubMenu > li,
.cloneSubMenu > li:first-child .subMenuChild > li:not(:first-child) {
	border-left: 1px solid var(--hf-menu-border);
}
.cloneSubMenu .subMenuChild > li {
	padding-right: 50px;
}
.cloneSubMenu .subMenuChild > li > a{
	height: 40px;
	display: flex;
	align-items: center;
	border: none;
	padding-top: 5px;
	padding-bottom: 5px;
}
/* all-change.jsにおいて「data-layout="cloneLayout + index番号"」付替え */
/*[data-layout="cloneLayout0"]*/
.cloneSubMenu[data-layout="cloneLayout0"] > li:first-child .subMenuChild {
	display: flex;
}
.cloneSubMenu[data-layout="cloneLayout0"] > li:first-child .subMenuChild > li {
	min-width: 256px;
}
/*[data-layout="cloneLayout1"]*/
.cloneSubMenu[data-layout="cloneLayout1"] > li:first-child .subMenuChild {
	display: flex;
}
.cloneSubMenu[data-layout="cloneLayout1"] > li:first-child .subMenuChild > li {
	min-width: 256px;
}
.cloneSubMenu[data-layout="cloneLayout1"] .subMenuChild > li:first-child .subMenuChild-sub::before {
	padding: 8px 0 6px;
}
/*[data-layout="cloneLayout2"]*/
.cloneSubMenu[data-layout="cloneLayout2"] > li {
	min-width: 256px;
}
.cloneSubMenu[data-layout="cloneLayout2"] > li:first-child .subMenuChild > li:not(:first-child) {
	border: none;
}
/*[data-layout="cloneLayout3"]*/
.cloneSubMenu[data-layout="cloneLayout3"] > li:first-child .subMenuChild {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	height: 130px;
}
.cloneSubMenu[data-layout="cloneLayout3"] > li:first-child .subMenuChild > li {
	min-width: 256px;
}
.cloneSubMenu[data-layout="cloneLayout3"] > li:first-child .subMenuChild > li:nth-child(2) {
	border: none;
}
/*[data-layout="cloneLayout4"]*/
.cloneSubMenu[data-layout="cloneLayout4"] > li:first-child .subMenuChild {
	display: flex;
}
.cloneSubMenu[data-layout="cloneLayout4"] > li:first-child .subMenuChild > li {
	min-width: 256px;
}
/*[data-layout="cloneLayout5"]*/
.cloneSubMenu[data-layout="cloneLayout5"] > li:first-child .subMenuChild {
	display: flex;
}
.cloneSubMenu[data-layout="cloneLayout5"] > li:first-child .subMenuChild > li {
	min-width: 256px;
}
/* .subMenuChild-sub */
.cloneSubMenu .subMenuChild-sub a{
	height: 30px;
	display: flex;
	align-items: center;
}

/* スクロール時に「.is-fixed」付加した時 */
.is-fixed {
	width: 100%;
  	background: #ffffff;
  	box-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
  	position: fixed;
  	top: 0;
  	left: 0;
  	z-index: 999;
  	animation: navFixed 0.5s ease;
}

@keyframes navFixed {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

/* 「.cloneMenuWrap」に「.is-fixed」が追加された時 */
.cloneMenuWrap.is-fixed {
	height: 60px;
	border-bottom: 7px solid #00502d;
}
.cloneMenuWrap.is-fixed:after {
	content: "";
	display: block;
	width: 100%;
	height: 4px;
	position: absolute;
	left: 0;
	bottom: -11px;
	background-color: #009a52;
}
.cloneMenuWrap.is-fixed > ul {
	max-width: 1064px;
	height: 100%;
	padding: 0 20px;
	margin: 0 auto;
	justify-content: center;
	align-items: center;
}
.cloneMenuWrap.is-fixed .cloneSubMenu {
	left: 50%;
	translate: -50% 9px;
}


	/* ------  header  end ----- */


	/* ------	screen width 1280px   start ----- */

@media screen and (max-width:1280px){

/* ヘッダー固定によるリンク先隠れ防止 */
.link-space:before {
	padding-top: 131px;
	margin-top: -131px;
	}

/* .siteHeader */
.siteHeader {
	height: 120px;
	padding-top: 0;
	align-items: center;
	}
.siteHeader h1, .siteHeader #th70 {
	padding: 0;
	}

/* .siteLogo */
.siteLogo {
	flex: 0 1 300px;
	}


}
	/* ------	screen width 1280px   end   ----- */


	/* ------	screen width 1140px   start----- */
@media screen and (max-width:1140px){
/* .cloneHeaderContact */
.cloneHeaderContact {
	border-top: 1px solid #ff7e00;
	}
.cloneHeaderContact a {
	height: 43px;
	display: flex;
	align-items: center;
	padding: 2px 0 0 1em;
	}
.cloneHeaderContact a:hover {
	text-decoration: none;
	}

}
	/* ------    screen width 1140px   end   ----- */


	/* ------    screen width 1064px   start----- */

@media screen and (max-width:1064px){

/* ヘッダー固定によるリンク先隠れ防止 */
.link-space:before {
	padding-top: 111px;
	margin-top: -111px;
	}

/* .siteHeader */
.siteHeader {
	height: 100px;
	}

/* .siteLogo */
.siteLogo {
	flex: 0 1 280px;
	}

/* .cloneHeaderContact */
.cloneHeaderContact {
	border-bottom: 1px solid #ff7e00;
}

/* .snsIcon *//* .cloneSnsIcon */
.cloneSnsIcon {
	padding: 20px 0;
	}
.snsIcon img,
.cloneSnsIcon img {
	width: fit-content;
	width: -moz-fit-content;
	height: 40px;
}

/* .searchArea */
.searchArea {
	margin: auto 0 22px;
	}

/* .menuWrapArea */
.menuWrap::-webkit-scrollbar{ 
	width: 10px;
	}
.menuWrap::-webkit-scrollbar-thumb{ 
	background: #c1c1c1;
	}
.menuWrap::-webkit-scrollbar-track-piece:start{
	background: #f1f1f1;
	}
.menuWrap::-webkit-scrollbar-track-piece:end{
	background: #f1f1f1;
	}

}
	/* ------    screen width 1064px   end  ----- */


	/* ------    screen width 768px   start----- */

@media screen and (max-width:768px){

/* .searchArea */
.searchArea {
	flex: 0 1 max(250px, (250 / 748 * 100%));
	}


}
	/* ------    screen width 768px   end  ----- */


	/* ------    screen width 640px   start----- */

@media screen and (max-width:640px){

/* ヘッダー固定によるリンク先隠れ防止 */
.link-space:before {
	padding-top: 134px;
	margin-top: -134px;
	}

/* .siteHeader */
.siteHeader {
	height: 120px;
	padding-bottom: 13px;
	flex-wrap: wrap;
	align-content: space-between;
	gap: 0;
	}

/* .siteLogo */
.siteLogo {
	flex: 0 1 min(218px, (218 / 375 * 100vw));
	margin-top: 10px;
	}

/* .searchArea */
.siteHeader .searchArea {
	height: 30px;
	flex: 0 1 100%;
	order: 1;
	margin: 0;
	}
.searchArea form {
	width: clamp(220px, (375 / 640 * 100vw), 375px);
	margin: 0 auto;
	}
.searchArea input[type="text"] {
	width: 100%;
	}
.searchArea input[type="text"]::placeholder {
	font-size: 16px;
	}
.searchArea button[type="submit"] {
	flex: 0 0 40px;
	}
.searchArea button[type="submit"]::before {
	background: url(../img/frame/search.png) no-repeat center center / 22px auto;
	}

/* -- .menuArea -- */
.menuArea {
	align-self: flex-start;
	flex: 0 1 min(80px, (80 / 375 *100vw));
	}
/* .menuBtn */
.menuBtn {
	height: 63px;
	font-size: 14px;
	padding: calc(21 / 14 * 1em) 0 calc(11 / 14 * 1em);
}
.menuIcon:before  {
	width: calc(37 / 14 * 1em);
	aspect-ratio: 37 / 11;
}
/* .menuWrapArea */
.menuWrapArea {
	top: 63px;
	}

}
	/* ------    screen width 640px   end  ----- */


	/* ------    screen width 480px   start ----- */

@media screen and (max-width:480px){
:root {
	--headerRate: calc(480 / 375);
	}

/* ヘッダー固定によるリンク先隠れ防止 */
.link-space:before {
	padding-top: 141px;
	margin-top: -141px;
	}

/* .menuWrapArea */
.menuWrapArea {
	width: min(95vw, calc(450 / 480 * 100%));
	right: 0;
	}
.menuWrap {
	width: 100%;
	max-height: 65dvh;
	}


}
	/* ------    screen width 480px   end   ----- */


	/* ------    print   start ----- */

@media print{

html,body {
	width: 1500px !important;
	margin: 0 auto !important;
	}
.siteHeader {
	width: 100% !important;
	}
#snsICON {
	display: block !important;
	}

.cloneMenuWrap > ul {
	display: flex !important;
	}

.cloneMenuWrap.is-fixed {
	display: none;
	}
.toTop-bt {
	display: none;
	}
	


}
	/* ------    print   end   ----- */


