@charset "utf-8";



/**************************************************
 tabNavi
**************************************************/
.tabNavi ul{
	padding-bottom: 30px;
	border-bottom: 1px solid var(--color1);
	justify-content: center; 
}
.tabNavi ul li{
/*	width: 185px;
	margin-left: 5px;*/
    width: 30%;
    margin: 0 5px;
}
.tabNavi ul li:first-child{ margin-left: 0;}
.tabNavi ul li a{
	height: 60px;
	font-size: 1.8rem;
	color: var(--color1);
	border: 1px solid var(--color1);
	border-radius: 10.0rem;
	display:-webkit-box;
  	display:flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
	box-sizing: border-box;
}
.tabNavi ul li a:hover,
.tabNavi ul li a.cur{background: #FCF8E2;
	border:1px solid var(--color1);
	box-shadow: inset 0 0 0 1px var(--color1);
}
.tabNavi ul li a.cur{border: 2px solid var(--color1);}


/**************************************************
 common
**************************************************/
main.store h4{
	text-align: center;
	padding: 60px 0 0 0;
	margin-top: 0;
	border-bottom: none;
}

.mapHanger{
	margin-top: 60px;
	height: 400px;
}

main p.note{
	padding-top: 20px;
	font-size: 1.4rem;
	line-height: 1.8;
	text-align: center;
	color: #212121;
}

main table th{
/*	padding: 15px 20px;*/
	padding: 16px 12px;
	font-size: 1.5rem;
	background: #EBEBEC;
	line-height: 1.5;
	white-space: normal;
	text-align: left;

}
main table td{
/*	padding: 18px 20px;*/
	padding: 15px 10px;
	font-size: 1.5rem;
	line-height: 1.5;
}
main th a,main td a {color: var(--color1);font-weight:500;}
main th a:hover,main td a:hover {
	color: rgba(0,0,0,0.5);
    text-underline-offset: 3px;
	text-decoration:underline;
}

main table tbody tr:nth-of-type(2n){background: #FAF7EB;}
main table td.icon{
	position: relative;
	padding-right: 65px;
}
main.store table td.icon img{
	position: absolute;
	right: 15px;
	top: calc(50% - 11px);
}

.tableWrapper{
	padding-bottom: 1px;
	overflow: auto;
}


/**************************************************
 detail
**************************************************/
.officeInfo{
	margin-top: 60px;
	-webkit-box-pack: justify;
	justify-content: space-between;
}
.officeInfo div{width: 340px;}
.officeInfo div img{width: 100%;}
.officeInfo table{
	width: 420px;
	margin-top: 0;
}
.officeInfo table tbody tr:nth-of-type(2n){background: none;}
.officeInfo table th{
	background: #FAF7EB;
	white-space: nowrap;
	padding: 15px;
}
.officeInfo table td{padding: 15px;}
.officeInfo table td a{
	color: var(--color4);
	font-weight: 500;
}
.officeInfo table td a:hover{
	opacity: 0.5;
	text-underline-offset: 3px;
	text-decoration:underline;
}

.mapBtn{
	position: relative;
	width: 280px;
	margin: 60px auto 0 auto;
	font-size: 1.6rem;
	text-align: center;
	color: #FFFFFF;
	padding: 20px;
	background: var(--color4);
	cursor: pointer;
	-webkit-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
	box-sizing: border-box; 
	border: 1px solid transparent;
}
.mapBtn::before{
	width: 15px;
	height: 14px;
	top: calc(50% - 7px);
	right: 20px;
	background: url("../img/pointer2_2.svg") no-repeat center center;
}
.mapBtn:hover{
	color: #FFFFFF;
	background: var(--color1);
}
.mapBtn:hover::before{right: 10px;}

.mapHanger.detail{display: none;}

.googleMap{margin-top: 60px;}
.googleMap a{
	display: block;
	width: 300px;
	margin: 0 auto;
	font-size: 1.6rem;
	text-align: center;
	color: var(--color4);
	padding: 20px;
	border: 1px solid var(--color4);
	border-radius: 10.0rem;
	transition: border-color 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box; 
}
.googleMap a:hover{
	border:1px solid var(--color4);
	box-shadow: inset 0 0 0 1px var(--color4); 
	color: var(--color4); 
	background:#faf7eb;
}

