 @charset "utf-8";


body {
	/*background: #eee;*/
}

/*wrap関連*/
.wrap {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 16px;
}
.wrapL {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 16px;
}
.wrapS {
	max-width: 800px;
	margin: 0 auto;
	padding: 0 16px;
}
.spNopad {}

/*PC→スマホ 表示・非表示*/
.pcBlock { display: block !important;}
.spBlock { display: none !important;}
.pcInline { display: inline !important;}
.spInline { display: none !important;}
@media only screen and (max-width: 767px) {
	.wrap .wrapS {
		padding: 0;
	}
	.wrapL .wrap {
		padding: 0;
	}
	.spNopad {
		padding: 0 !important;}

	/*PC→スマホ 表示・非表示*/
	.pcBlock { display: none !important;}
	.spBlock { display: block !important;}
	.pcInline { display: none !important;}
	.spInline { display: inline !important;}
}








/* =============================================================================
   gHead
   ========================================================================== */
#gHead {
	position: absolute;
	width: 100%;
	z-index: 1000;
	background: #fff;
	padding: 15px 0;
}
#gHead.m_fixed {
	position: fixed;
	top: 0;
	left: 0;
}
#gHead a {
	color: #333333;
}
#gHead .inner {
	display: flex;
	align-items: center;
}
#gHead .logo {
	max-width: 340px;
	padding-left: 30px;
	padding-right: 1.5em;
}
#gHead .gMenu {
	margin-left: auto;
}
#gHead .gMenu ul {
	display: flex;
	height: 100%;
}
#gHead .gMenu li {
	padding-right: 30px;
	padding-left: 40px;
	background: url("../img/common/ico_gMenu.png") no-repeat left center;
}
#gHead .gMenu li:first-child {
	padding-left: 0;
	background: none;
}
#gHead .gMenu li a {
	color: #60875A;
	cursor: pointer;
	white-space: nowrap;
	font-size: 0.875em;
	font-weight: bold;
	display: flex;
	flex-direction: column;
	justify-content: center;
	height: 100%;
	box-sizing: border-box;
	border-bottom: 3px solid transparent;
}
#gHead .gMenu li a:hover {
	text-decoration: none;
	border-bottom: 3px solid #60875A;
}
#gHead .gMenu li a span {
	display: flex;
	flex-direction: column;
	align-items: center;
}
#gHead .gMenu li a span em {
	font-style: normal;
	font-size: 1.3em;
}
#gHead .gMenu li .fa-solid {
	display: none;
}
#gHead .hamburger {
	display: none;
}
@media only screen and (max-width: 1400px) {
	#gHead .gMenu li {
		padding-right: 20px;
		padding-left: 30px;
	}
	#gHead .gMenu li a {
		font-size: 0.75em;
	}
	#gHead .gMenu li a span em {
		font-size: 1.2em;
	}
}
@media only screen and (max-width: 767px) {
	#gHead {
		padding: 10px 0;
	}
	#gHead .inner {
		align-items: center;
		justify-content: space-between;
		padding: 0 16px;
	}
	#gHead .logo {
		max-width: 240px;
		padding-left: 0;
		z-index: 100;
	}
	#gHead .hamburger {
		display: block;
		z-index: 100;
	}
	#gHead .hamburger {
		padding: 14px 13px;
		border: 2px solid #fff;
		margin: 0;
		background: #60875a;
		border-radius: 20%;
	}
	#gHead .hamburger div {
		height: 16px;
		width: 18px;
		position: relative;
	}
	#gHead .hamburger .gh-menu-bar {
		position: absolute;
		left: 0;
		display: block;
		width: 100%;
		height: 2px;
		background-color: #fff;
		transition: all .3s;
	}
	#gHead .hamburger .gh-menu-bar.mod-top {
		top: 0;
	}
	#gHead .hamburger .gh-menu-bar.mod-middle {
		top: 7px;
	}
	#gHead .hamburger .gh-menu-bar.mod-bottom {
		bottom: 0;
	}
	#gHead .hamburger.is-open .gh-menu-bar.mod-top {
		top: 7px;
		transform: rotate(-45deg);
	}
	#gHead .hamburger.is-open .gh-menu-bar.mod-middle {
		background-color: transparent;
	}
	#gHead .hamburger.is-open .gh-menu-bar.mod-bottom {
		bottom: 7px;
		transform: rotate(-135deg);
	}
	#gHead .gMenu {
		height: 0;
		overflow: hidden;
		transition: all .3s;
		background: #fff;
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		box-sizing: border-box;
		margin: 0;
		z-index: 10;
		padding-top: 70px;
	}
	#gHead .gMenu ul {
		flex-direction: column;
		height: auto;
	}
	#gHead .gMenu li {
		padding-right: 0;
		padding-left: 0;
		background: none;
		height: auto;
	}
	#gHead .gMenu li:first-of-type {
		border-top: 1px solid #ccc;
	}
	#gHead .gMenu li a {
		font-size: 1.0em;
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		height: auto;
		border-bottom: 1px solid #ccc;
		padding: 1.0em 1.5em;
	}
	#gHead .gMenu li a span {
		align-items: flex-start;
	}
	#gHead .gMenu li .fa-solid {
		display: block;
		color: #1569e7;
		font-size: 1.2em;
	}
}






/* =============================================================================
   page-top
#page-top {
	position: fixed;
	right: 50px;
	z-index: 2;
	opacity: 0;
	transform: translateY(100px);
}
#page-top.UpMove{
	animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}
#page-top.DownMove{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(100px);
  }
}
@media only screen and (max-width: 767px) {
	#page-top {
		right: 10px;
	}
}
   ========================================================================== */





/* =============================================================================
   gFoot
   ========================================================================== */
#gFoot {}
#gFoot .copy {
	text-align: center;
	line-height: 1.5;
	padding: 1.5em 1.0em;
	font-size: 0.875em;
}
/*contact*/
#gFoot .contact {
	padding-bottom: 60px;
}
#gFoot .contact ul.link {
	display: flex;
	justify-content: space-between;
}
#gFoot .contact ul.link li {
	width: 48%;
	text-align: center;
}
#gFoot .contact ul.link li a {
	position: relative;
	display: block;
	border: 1px solid #707A7F;
	padding: 1.0em 0;
	font-size: 0.875em;
}
#gFoot .contact ul.link li a:hover {
	border: 1px solid #60875A;
	background: #60875A;
	text-decoration: none;
}
#gFoot .contact ul.link li a:hover em {
	color: #fff;
}
#gFoot .contact ul.link li a:hover strong {
	color: #fff;
}
#gFoot .contact ul.link li a em {
	color: #60875A;
	font-style: normal;
	font-size: 2.0em;
	display: block;
}
#gFoot .contact ul.link li a strong {
	color: #333333;
}
@media only screen and (max-width: 767px) {
	#gFoot .contact {
		padding-bottom: 30px;
	}
	#gFoot .contact ul.link {
		flex-direction: column;
	}
	#gFoot .contact ul.link li {
		width: 100%;
		margin: 10px 0;
	}
}
/*navigation*/
#gFoot .navigation {
	border-top: 1px solid #E6E6E6;
	padding: 0;
}
#gFoot .navigation ul {
	list-style: none;
}
#gFoot .navigation ul.mainNav {
	padding: 20px 40px;
	border-bottom: 1px solid #E6E6E6;
	display: flex;
	flex-wrap: wrap;
}
#gFoot .navigation ul.mainNav li {
	margin: 10px 0;
	margin-right: 50px;
}
#gFoot .navigation ul.mainNav li a {
	color: #333333;
}
#gFoot .navigation ul.subNav {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	font-size: 0.875em;
}
#gFoot .navigation ul.subNav li {
	margin-top: 15px;
	margin-left: 30px;
}
#gFoot .navigation ul.subNav li:first-child {
	margin-left: 0;
}
#gFoot .navigation ul.subNav li a {
	color: #333333;
}
@media only screen and (max-width: 767px) {
	#gFoot .navigation {}
	#gFoot .navigation ul.mainNav {
		padding: 15px 10px;
	}
	#gFoot .navigation ul.mainNav li {
		margin: 15px 0;
		margin-right: 30px;
	}
	#gFoot .navigation ul.subNav {
		justify-content: center;
	}
	#gFoot .navigation ul.subNav li {
		margin-top: 25px;
	}
}
/*address*/
#gFoot .address {
	padding: 40px 0;
}
#gFoot .address .wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
#gFoot .address .logo {
	max-width: 450px;
	padding-right: 1.5em;
}
#gFoot .address .text .note {
	font-size: 0.875em;
}
#gFoot .address .text .note .tel {
	font-size: 1.2em;
	margin-right: 0.5em;
}
@media only screen and (max-width: 767px) {
	#gFoot .address {}
	#gFoot .address .wrap {
		flex-direction: column;
	}
	#gFoot .address .logo {
		max-width: 280px;
		padding-right: 0;
		margin-bottom: 1.0em;
	}
	#gFoot .address .text {
		text-align: center;
	}
}

/*bPcNav*/
.bPcNav {
	position: fixed;
	top: 100px;
	right: 0;
	z-index: 1000;
	transition: 0.3s;
}
.bPcNav li a {
	display: block;
	display: flex;
	align-items: center;
	background: #60875A;
	padding: 0.5em 1.0em;
	padding-right: 1.0em;
	color: #fff;
	border-radius: 50px 0 0 50px;
}
.bPcNav li a:hover {
	background: #333333;
	text-decoration: none;
}
.bPcNav li a .fa-envelope {
	margin-right: 0.3em;
}
@media only screen and (max-width: 767px) {
	.bPcNav {
		display: none;
	}
}


/*bSpNav*/
.bSpNav {
	display: none;
	height: 0;
	position: fixed;
	bottom: 0;
	width: 100%;
	background: #333333;
	z-index: 100;
	transition: 0.3s;
	opacity: 0;
}
.bSpNav ul {
	display: flex;
	justify-content: space-between;
	padding: 12px;
}
.bSpNav ul li {
	width: 48%;
}
.bSpNav ul li a {
	display: block;
	text-align: center;
	background: #60875A;
	color: #fff;
	border-radius: 10px;
	padding: 5px 0;
}
.bSpNav ul li a .fa-phone,
.bSpNav ul li a .fa-envelope {
	display: block;
	font-size: 20px;
	margin-bottom: 5px;
}
.bSpNav ul li a strong {
	font-size: 0.9em;
}
@media only screen and (max-width: 767px) {
	.bSpNav {
		display: block;
		height: auto;
	}
	.bSpNav.active {
		opacity: 1;
	}
}





/* =============================================================================
   content
   ========================================================================== */

#content {
	padding-bottom: 40px;
}
article section {
	padding: 80px 0;
}
article section section {
	padding: 0;
	margin-top: 40px;
}
@media only screen and (max-width: 767px) {
	#content {
		padding-bottom: 10px;
	}
	article section {
		padding: 60px 0;
	}
	article section section {
		margin-top: 30px;
	}
}








