 @charset "utf-8";


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

/*wrap関連*/
.wrapL {
	max-width: 1080px;
	margin: 0 auto;
	padding: 0 40px;
	box-sizing: border-box;
}
.wrap {
	max-width: 970px;
	margin: 0 auto;
	padding: 0 40px;
	box-sizing: border-box;
}
.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) {
	.wrapL {
		padding: 0 20px;
	}
	.wrap {
		padding: 0 20px;
	}
	.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;
	position: fixed;
	width: 100%;
	box-sizing: border-box;
	padding: 15px 20px;
	z-index: 1000;
	background: #fff;
	border-bottom: 1px solid #999;
}
#gHead .inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
#gHead .logo {
	max-width: 370px;
	width: 30%;
	margin-right: 20px;
}
#gHead nav.gMenu {}
#gHead nav.gMenu ul.list {
	display: flex;
}
#gHead nav.gMenu ul.list li.home,
#gHead nav.gMenu ul.list li.other {
	display: none;
}
#gHead nav.gMenu ul.list li {
	border-right: 1px solid #777;
}
#gHead nav.gMenu ul.list li.end {
	border-right: none;
}
#gHead nav.gMenu ul.list li a {
	display: block;
	color: #000;
	white-space: nowrap;
	padding: 3px 15px;
	font-weight: 700;
}
#gHead nav.gMenu ul.list li a:hover {
	background: #333;
	color: #fff;
	text-decoration: none;
}
#gHead nav.gMenu ul.list li i.fa-solid {
	display: none;
}
#gHead .hamburger {
	display: none;
}
@media only screen and (max-width: 1300px) {
	#gHead nav.gMenu ul.list li a {
		font-size: 0.875em;
		padding: 3px 10px;
	}
}
@media only screen and (max-width: 1000px) {
	#gHead {
		padding: 15px 20px;
	}
	#gHead .logo {
		width: auto;
	}
	#gHead nav.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: -1;
		padding-top: 90px;
	}
	#gHead nav.gMenu ul.list {
		flex-direction: column;
		height: auto;
	}
	#gHead nav.gMenu ul.list li.home,
	#gHead nav.gMenu ul.list li.other {
		display: block;
	}
	#gHead nav.gMenu ul.list li {
		border: none;
		border-bottom: 1px solid #777;
	}
	#gHead nav.gMenu ul.list li:first-child {
		border: none;
		border-bottom: 1px solid #777;
		border-top: 1px solid #777;
	}
	#gHead nav.gMenu ul.list li a {
		display: flex;
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		height: auto;
		padding: 15px 20px;
	}
	#gHead nav.gMenu ul.list li i.fa-solid {
		display: block;
	}
	#gHead .hamburger {
		display: block;
	}
	#gHead .hamburger {
		padding: 14px 13px;
		border: none;
		margin: 0;
		background: #000;
	}
	#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);
	}
}
@media only screen and (max-width: 620px) {
	#gHead .logo {
		width: 40%;
		min-width: 240px;
	}
	#gHead nav.gMenu {
		padding-top: 74px;
	}
}





/* =============================================================================
   gFoot
   ========================================================================== */
#gFoot {
	background: #001930;
	color: #fff;
	padding: 30px 0;
}
#gFoot .copy {
	text-align: center;
	font-size: 0.75em;
	line-height: 1.7;
}
#gFoot .inner {
	display: flex;
	justify-content: space-between;
	margin-bottom: 40px;
}
#gFoot .inner .logo {
	max-width: 300px;
	width: 32%;
}
#gFoot .inner nav.menu {
	width: 60%;
}
#gFoot .inner nav.menu ul.list {
	display: flex;
	flex-wrap: wrap;
}
#gFoot .inner nav.menu ul.list li {
	width: 50%;
	padding: 7px 0;
}
#gFoot .inner nav.menu ul.list li a {
	color: #fff;
}
@media only screen and (max-width: 767px) {
	#gFoot .inner {
		flex-direction: column;
		margin-bottom: 20px;
	}
	#gFoot .inner .logo {
		max-width: 300px;
		width: 70%;
		margin: 0 auto;
		margin-bottom: 20px;
	}
	#gFoot .inner nav.menu {
		width: 100%;
	}
	#gFoot .inner nav.menu ul.list li {
		padding: 10px 0;
	}
	#gFoot .copy {
		font-size: 1.0em;
	}
}



/*bSpNav*/
.bSpNav {
	display: none;
	height: 0;
	position: fixed;
	bottom: 0;
	width: 100%;
	background: #333;
	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: #FFE33F;
	color: #000;
	border-radius: 10px;
	padding: 10px 0;
}
.bSpNav ul li a .fas {
	display: block;
	font-size: 20px;
}
.bSpNav ul li a strong {
	font-size: 1.0em;
}
@media only screen and (max-width: 767px) {
	.bSpNav {
		display: block;
		height: auto;
	}
	.bSpNav.active {
		opacity: 1;
	}
}





/* =============================================================================
   content
   ========================================================================== */
#content {
	padding-top: 91px;
}
@media only screen and (max-width: 620px) {
	#content {
		padding-top: 74px;
	}
}

#content section {
	margin-bottom: 100px;
}
@media only screen and (max-width: 767px) {
	#content section {
		margin-bottom: 50px;
	}
}


.secBox {}
.secBox hgroup {
	position: relative;
	text-align: center;
}
.secBox hgroup figure img {
	border: 4px solid #000;
	border-color: #000;
	border-radius: 15px 15px 0 0;
}
.secBox hgroup h2 {
	position: relative;
	font-size: 2.0em;
	max-width: 380px;
	margin: 0 auto;
	transform: translateY(-50%);
}
.secBox hgroup h2 span {
	background: #fff;
	display: block;
	padding: 10px 0;
	border-radius: 10px;
	box-shadow: 5px 7px 0px 0 #000;
}
.secBox .inner {
	background: url("../img/common/bg_secBox.png") no-repeat center top;
	background-color: #000;
	background-size: 100% auto;
	color: #fff;
	margin-top: -120px;
	padding-top: 140px;
	padding-bottom: 50px;
}
@media only screen and (max-width: 767px) {
	.secBox hgroup figure {
		width: 80%;
		margin: 0 auto;
	}
	.secBox hgroup figure img {
		border: 3px solid #000;
		border-radius: 10px 10px 0 0;
	}
	.secBox hgroup h2 {
		font-size: 1.75em;
		max-width: 320px;
		width: 70%;
	}
	.secBox .inner {
		margin-top: -100px;
		padding-top: 120px;
		background-size: 150% auto;
	}
}
@media only screen and (max-width: 500px) {
	.secBox hgroup figure {
		width: 85%;
	}
	.secBox hgroup h2 {
		font-size: 1.5em;
		width: 70%;
	}
	.secBox hgroup h2 span {
		padding: 7px 0;
		border-radius: 7px;
	}
	.secBox .inner {
		margin-top: -80px;
		padding-top: 100px;
		background-size: 200% auto;
	}
}







