/********************************************************************/
/********************************************************************/
/* Use Google Web Font */
/********************************************************************/
/********************************************************************/
@import url('https://fonts.googleapis.com/css2?family=Candal&display=swap');

/********************************************************************/
/********************************************************************/
/* globalHeader */
/********************************************************************/
/********************************************************************/

#globalHeader {
	position: fixed;
	z-index: 10;
	top: 0;
	left: 0;
	width: 100%;
	height: 88px;
	/*background-color: rgb(248, 148, 40);*/
	background-color: rgb(0, 0, 0);
}

/*------------------------------------------------------------------*/
#globalHeader .contents-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: nowrap;
	padding: 5px 0px;
}
@media screen and (max-width: 768px) {
	#globalHeader .contents-inner {
		display: block;
		padding: 5px 0px;
	}
}
#globalHeader .contents-inner .logo {
	display: flex;
	justify-content: flex-start;
	/*align-items: center;*/
	flex-wrap: nowrap;
}
#globalHeader .contents-inner .logo .title {
	color: #fff;
}
#globalHeader .contents-inner .logo .title span {
	display: block;
}
#globalHeader .contents-inner .logo .title:nth-of-type(1) {
	margin-top: 10px;
}
#globalHeader .contents-inner .logo .title:nth-of-type(2) {
	margin-top: 43px;
	margin-left: -11px;
}
/*------------------------------------------------------------------*/
/* 2021 */
#globalHeader .contents-inner .logo .title:nth-of-type(1) span {
	color: #f1d021;
	font-size: 3.5rem;
	font-weight: bolder;
	letter-spacing: -0.1em;
}
/*------------------------------------------------------------------*/
@media screen and (max-width: 1000px)
#globalHeader .contents-inner .logo .title span:nth-of-type(2) {
	font-size: 1.2rem;
}
@media screen and (max-width: 979px)
#globalHeader .contents-inner .logo .title span:nth-of-type(2) {
	display: none;
}

/*------------------------------------------------------------------*/
#globalHeader .contents-inner .utility-link {
	/*display: flex;
	justify-content: flex-end;
	align-items: center;
	display: -webkit-flex;
	flex-wrap: nowrap;*/
}
/*★*/
#globalHeader .contents-inner .utility-link .tel {
	color: #fff;
	font-size: 2.2rem;
}
/*★*/
#globalHeader .contents-inner .utility-link .tel span {
	/*font-size: 1.6rem;*/
}
#globalHeader .contents-inner .utility-link .entry-btn {
}
#globalHeader .contents-inner .utility-link .contact-btn {
	margin-left: 10px;
}
/********************************************************************/
/********************************************************************/
/* globalNavi */
/********************************************************************/
/********************************************************************/
#globalNavi {
	position: fixed;
	z-index: 10;
	/*top: 88px;*/
	left: 0;
	width: 100%;
	/*height: 80px;*/
	/*background: rgb(247, 148, 40);*/
	background: rgb(0, 0, 0);
}
/*------------------------------------------------------------------*/
#globalNavi ul {
	/*max-width: 1000px;
	width: 100%;*/
	margin: 0 auto;
	display: table;
	background: url(../img/gnavi_separator.png) no-repeat left center;
}
/*------------------------------------------------------------------*/
#globalNavi ul li {
	display: table-cell;
	/*height: 80px;*/
	vertical-align: middle;
	padding: 0px 2px;
}
/*------------------------------------------------------------------*/
#globalNavi ul li a {
	position: relative;
	display: block;
	padding: 10px 30px;
	text-align: center;
	text-decoration: none;
	border-radius: 10px 10px 0px 0px;
	color: #fff;
	background: url(../img/gnavi_separator.png) no-repeat right center;
}
/*#globalNavi ul li a::before {
	left: 10px;
	transform-origin: left center;
}
#globalNavi ul li a::before, 
#globalNavi ul li a::after {
	content: '';
	position: absolute;
	bottom: 0;
	width: 0;
	height: 3px;
	background-color: #004898;
	transition: 0.7s;
}*/
#globalNavi ul li a.current, 
#globalNavi ul li a:hover {
	/*background: #ee7800;*/
	background: #666;
}
/*------------------------------------------------------------------*/
#globalNavi ul li a span {
	display: block;
}
#globalNavi ul li a span:nth-of-type(1) {
	/*font-size: 1.4rem;*/
}
#globalNavi ul li a span:nth-of-type(2) {
	margin-top: 5px;
	font-size: 1rem;
	color: #fff;
}
/*------------------------------------------------------------------*/
.gnav-btn {
	display: none;
}
#navBtn-check {
	display: none;
}
/*------------------------------------------------------------------*/
/*@media screen and (min-width: 769px) {
}*/
/*------------------------------------------------------------------*/
@media screen and (max-width: 768px) {
	html body {
		width: 100vw;
		padding: 0px 5px 0px 5px;
	}
	#globalFooter .footer-navi {
		display: none;
	}
	.gnav-btn {
		position: fixed;
		display: flex;
		top: 3px;
		right: 8px;
		z-index: 50;
		width: 80px;
		height: 80px;
		justify-content: center;
		align-items: center;
		padding: 0;
		border: none;
		background: #fff;
		color: #00b3ec;
		cursor: pointer;
		outline: none;
	}
	.gnav-btn:after {
		position: absolute;
		bottom: 0px;
		font-size: 18px;
		font-weight: bold;
		content: "MENU";
	}
	.gnav-btn span, 
	.gnav-btn span:before, 
	.gnav-btn span:after {
		content: '';
		display: block;
		position: absolute;
		width: 40px;
		height: 7px;
		background: #00b3ec;
	}
	.gnav-btn span:before {
		top: -12px;
	}
	.gnav-btn span:after {
		bottom: -12px;
	}
	#navBtn-check:checked ~ .gnav-btn span {
		background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
	}
	#navBtn-check:checked ~ .gnav-btn span::before {
		top: 0px;
		transform: rotate(45deg);
	}
	#navBtn-check:checked ~ .gnav-btn span::after {
		top: 0;
		transform: rotate(-45deg);
	}
	/*------------------------------------------------------------------*/
	#globalNavi {
		display: none;
	}
	#globalNavi ul li a {
		border-radius: 0px;
	}
	#globalNavi ul li a span {
		margin-top: 0px;
		padding-top: 5px;
		font-size: 1rem;
		color: #fff;
	}
	#globalNavi ul li a::before, 
	#globalNavi ul li a::after {
		display: none;
	}
	#globalNavi ul li a span:nth-of-type(1) {
		padding-top: 32px;
		font-size: 2.0rem;
	}
	/*------------------------------------------------------------------*/
	#navBtn-check:checked ~ #globalNavi {
		display: block;
		position: fixed;
		z-index: 49;
		left: 0;
		width: 100%;
		/*height: 80px;*/
	}
	#navBtn-check:checked ~ #globalNavi ul {
		display: block;
		max-width: 768px;
		width: 100%;
		margin: 0 auto;
	}
	#navBtn-check:checked ~ #globalNavi ul li {
		display: block;
		height: 80px;
		vertical-align: middle;
		background: rgb(247, 148, 40);
		border-top: 1px solid #666;
	}
	#navBtn-check:checked ~ #globalNavi ul li a {
		display: block;
		height: 80px;
		padding: 0px;
		text-align: center;
		text-decoration: none;
		color: #fff;
	}
	/*------------------------------------------------------------------*/
}
/********************************************************************/
/********************************************************************/
/* globalFooter */
/********************************************************************/
/********************************************************************/
#globalFooter {
	padding: 5px 0 10px;
	/*background-color: rgb(247, 148, 40);*/
	background-color: rgb(0, 0, 0);
}
/*------------------------------------------------------------------*/
/*
#globalFooter .footer-navi {
	border-bottom: 1px solid #ccc;
	height: 50px;
}
#globalFooter .footer-navi ul {
	display: flex;
	justify-content: center;
	align-items: center;
	display: -webkit-flex;
	flex-wrap: nowrap;
}
#globalFooter .footer-navi ul li:first-child a {
	border-left: 1px solid #fff;
}
#globalFooter .footer-navi ul li a {
	padding: 10px 17px;
	font-size: 1.3rem;
	color: #fff;
	text-decoration: none;
	border-right: 1px solid #fff;
}
#globalFooter .footer-navi ul li a:hover {
	text-decoration: underline;
	background: #ee7800;
}*/
/*------------------------------------------------------------------*/
#globalFooter .footer-box {
	/*text-align: center;*/
	/*height: 160px;*/
}
/*------------------------------------------------------------------*/
/* organizer */
#globalFooter .footer-box div.organizer {
	margin: 5px 0px 0px 0px;
	/*text-align: left;*/
	/*font-size: 1.4rem;*/
	color: #fff;
}
/*------------------------------------------------------------------*/
/* sponsor */
#globalFooter .footer-box div.sponsor {
	display: inline-block;
	margin: 5px auto;
}

#globalFooter .footer-box div.sponsor dl.auspices,
#globalFooter .footer-box div.sponsor dl.sponsorship,
#globalFooter .footer-box div.sponsor dl.cooperation {
	margin: 5px auto;
	display: block;
	color: #fff;
	/*font-size: 1.4rem;*/
	line-height: 1.6;
	text-align: left;
}

#globalFooter .footer-box dt {
	display: inline-block;
	vertical-align: top;

}
#globalFooter .footer-box dd {
	display: inline-block;
}

/*------------------------------------------------------------------*/
#globalFooter .footer-box div.subsidy {
	float: right;
	display: table;
	margin: 20px 0px 0px 0px;
	padding: 0px;
}
#globalFooter .footer-box div.subsidy p {
	display: table-cell;
	margin: 0px;
	padding: 50px 10px 0px 0px;
	vertical-align: middle;
	color: #fff;
	font-size: 0.8rem;
	line-height: 1.6;
}
#globalFooter .footer-box div.subsidy img.subsidy {
/* おがっきぃ、おあむちゃん 使用許可用↓ */
	display: table-cell;
	width: 100px;
	height: 163px;
	margin: 0px;
	padding: 0px;
	vertical-align: bottom;
	/*width: 80px;	height: 130px;*/
	/*width: 50px;	height: 83px;*/
}
/*------------------------------------------------------------------*/
/* copyright */
#globalFooter .footer-box div.copyright {
	margin: 20px;
	font-size: 0.9rem;
	font-weight: bold;
	color: #606060;
	text-align: center;
}
/*------------------------------------------------------------------*/
@media screen and (max-width: 768px) {
	#globalFooter .footer-box {
		height: 100%;
	}
	#globalFooter .footer-box div.organizer {
		margin: 5px 14px;
		font-size: 0.9rem;
		color: #fff;
	}
	#globalFooter .footer-box div.sponsor {
		display: inline-block;
		margin: 5px 14px;
	}
	#globalFooter .footer-box div.sponsor dl {
		margin: 5px 14px;
		display: block;
		color: #fff;
		font-size: 0.8rem;
		line-height: 1.0;
		text-align: left;
	}
	#globalFooter .footer-box div.subsidy {
		float: unset;
		display: table;
		margin: 0px auto;
		padding: 0px;
	}
	#globalFooter .footer-box div.copyright {
		margin-top: 5px;
		font-size: 0.9rem;
		font-weight: bold;
		color: #606060;
	}
}

/********************************************************************
#globalFooter .footer-box {
	display: flex;
	justify-content: space-around;
	align-items: flex-start;
	flex-direction: column;
	margin-top: 30px;
}
#globalFooter .footer-box {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	display: -webkit-flex;
	flex-wrap: nowrap;
	margin-top: 30px;
}
#globalFooter .footer-box .left {
	color: #fff;
}
#globalFooter .footer-box .left p:nth-of-type(1) {
	font-size: 1.4rem;
}
#globalFooter .footer-box .left p:nth-of-type(2) {
	margin-top: 5px;
	font-size: 1.2rem;
	line-height: 1.6;
}
#globalFooter .footer-box .right {
	text-align: right;
}

#globalFooter .footer-box .right p {
	margin-top: 30px;
	font-size: 1rem;
	color: #909090;
}
********************************************************************/



/********************************************************************/
/* sp-menu */
/********************************************************************/
/*------------------------------------------------------------------*/
#globalHeader .contents-inner .sp-menu {
    background-color: #004898;
}
#globalHeader .contents-inner .sp-menu a {
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
}
#globalHeader .contents-inner .sp-menu a span {
    position: absolute;
    left: 50%;
    width: 20px;
    height: 3px;
    margin-left: -10px;
    background-color: #fff;
}
#globalHeader .contents-inner .sp-menu a span:nth-of-type(1) {
    top: 11px;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    animation-name: menuAnim4;
    animation-timing-function: linear;
    animation-duration: 0.4s;
    animation-fill-mode: forwards;
    animation-direction: alternate;
}
