
/**************************************************
 responsive
**************************************************/
@media screen and (max-width: 767px){
	html{
		font-size: 62.5%;
		font-size: 10px;
	}

body{}

/**************************************************
 common
**************************************************/
	p,ol,table,ol,dl{
		padding: 1.6rem 0 0 0;
		font-size: 1.6rem;
		font-weight: normal;
	}
	
	.pc{display: none;}
	.smp{display: block;}

	.mainInner,
	.infoInner,
	.contentInner{width: 100%;}

	h1{
		font-size: 1.2rem;}
	
	h1 img{
		width: 17rem;
		margin-inline-end: 0.8rem;
	}

	.re{flex-direction: column-reverse;}


	.wrapper{position: relative;}




/**************************************************
 header
**************************************************/

	.headerInner{
		padding-inline: 1.6rem;
		padding-block-start: 1.6rem;
	}

	h1 img{width: 10.2rem;}

	.smp_entry{margin-inline-end: 5.6rem;width: 14.8rem;position: relative;z-index: 9999;}

	.smp_entry a{
		display: block;
		background-color: var(--btn-color);
		border: 0.2rem solid #fff;
		border-radius: 65px;
		font-size: 1.2rem;
		font-weight: 900;
		padding-block: 0.8rem;
		color: #fff;
		text-align: center;
	}



/**************************************************
 globalNavi
**************************************************/

	#globalNavi{
		display: block;
		position: fixed;
		top: 0;
		height: 100%;
		width: 100%;
		right: 0;
		border: 1rem solid var(--main-color);
		background-color: #FFF;
		background-size: cover;
		z-index: 9990;
		opacity: 0;
		right: 0;
		visibility: hidden;
		transition: .3s ease-in-out;
		margin-block-start: 0;
		padding-block-start: 6.4rem;
		padding-inline: 2.4rem;
	}


	#globalNavi.active{
		opacity: 1;
		visibility: visible;
		right: 0;
		transition-delay: 0s;
	}

	#globalNavi.show{transition-delay: 0s;}

	#globalNavi ul{
		padding-block-start: 0;
		padding-inline: 0 2.4rem;
		align-content: center;
		background-color: #FFF;
		justify-content: end;
	}

	#globalNavi ul li{
		margin-inline-end: 0rem;
		margin-block-end: 2.4rem;
	}


	#globalNavi ul li a{font-size: 1.6rem;}

/**************************************************
 menu
**************************************************/
	#menu{
		display: flex;
		align-items: center;
		justify-content: center;
		position: fixed;
		top: 1.6rem;
		right: 1.6rem;
		width: 4.8rem;
		height: 4.8rem;
		text-align: center;
		z-index: 9998;
		background-color: #FFF;
		border: 0.1rem solid #000;
		transition: .3s;
		opacity: 1;
		border-radius: 50%;
		visibility: visible;
		cursor: pointer;
		pointer-events: auto;
	}

	#menu.active{background-color: #fff;}

	#menu.close{
		opacity: 0;
		visibility: hidden;
		transition: .4s ease-in-out;
		pointer-events: none;
	}

.menu-btn,
.menu-btn span {
	display: inline-block;
	transition: all .8s;
	box-sizing: border-box;
}

	.menu-btn {
		position: relative;
		width: 1.8rem;
		height: 1.2rem;
		background: none;
		border: none;
		appearance: none;
		cursor: pointer;
	}

	.menu-btn span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #000;
  border-radius: 4px;
}
.menu-btn span:nth-of-type(1) {top: -2px;}
.menu-btn span:nth-of-type(2) {bottom: 5px;}
.menu-btn span:nth-of-type(3) {top: 12px;}

.menu-btn span:nth-of-type(2)::after {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background-color: #000;
  border-radius: 4px;
  transition: all .4s;
}

.menu-btn.active span,.menu-btn.active span:nth-of-type(2)::after{background-color: #000;}

.menu-btn.active span:nth-of-type(1) {transform: translate(50%) scale(0);}
.menu-btn.active span:nth-of-type(2) {transform: rotate(45deg);}
.menu-btn.active span:nth-of-type(2)::after {transform: rotate(90deg);}
.menu-btn.active span:nth-of-type(3) {transform: translate(-50%) scale(0);}

/**************************************************
 mainContent
**************************************************/
.mainContent{
	height: 100dvh;
	justify-content: flex-start;
	overflow: hidden;
}


.mainContent h1{
	margin-block-start: 4rem;
	
	width: 23.5rem;
}

.mainContent h1 img{width: 100%;}

.mainContent .center_map{margin-block: 4rem;text-align: center;}

.mainContent .center_map img{width: 60%;}

/**************************************************
 download
**************************************************/
.download{
	position: absolute;
	bottom: 2.4rem;
	left: 2.4rem;
}

.download a{
	font-size: 1.6rem;
	display: block;
	border: 0.1rem solid #000;
	position: relative;
	font-weight: 500;
	padding-inline: 1.6rem;
	padding-block: 1.6rem;
	border-radius: 4px;
	padding-inline-start: 5.2rem;
	background-color: #fff;
}

.download a::before{
	content: '';
	width: 3.2rem;
	height: 3.2rem;
	background: url(../img/pdf_icon.svg)no-repeat center center;
	background-size: 100%;
	position: absolute;
	top: 50%;
	transform: translate(0,-50%);
	left: 1.2rem;
}

.download a:hover{opacity: 0.5;}




}