@charset "utf-8";
/* CSS Document */

.acc_map {
  width: 1200px;
  margin: 0 auto;
  padding: 60px 0;
}

.acc_map p {
  margin-bottom: 50px;
  font-family: 'Noto Sans JP', sans-serif;
}
.acc_map .route {
  width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.acc_map .transit_pc{
  margin-bottom: 80px;
}
.acc_map .transit_sp{
	display:none;
}

.acc_map .swiper-container {
  width:1200px;
  box-sizing: border-box;
  background:#ffffff;
  border:1px solid #cccccc;
  border-radius: 5px;
  text-align: center;
  padding: 50px 0;
}
.acc_map .swiper-wrapper img{
  width: 780px;
  margin:0 auto;
}


.map{
	margin-bottom:100px;
}
.map iframe {
    width: 711px;
    height: 660px;
    margin-bottom: 50px;
}
.center {
    text-align: center;
    margin-bottom: 50px;
    font-size: 18px;
    font-weight: bold;
}




label {
    display: block;
    margin: 0 0 10px 0;
    padding : 15px;
    line-height: 1;
    color :#4e4e4e;
	background:#b1a280;
    cursor :pointer;
	font-size:16px;
	border:2px solid #c4c4c4;
	font-family: 'Noto Sans JP', sans-serif;
	text-align:center;
}
input {
    display: none;
}
.menu ul {
    margin: 0;
    padding: 0;
    background :#ffffff;
    list-style: none;
}

.hide {
    height: 0px;
    overflow: hidden;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

#type1:checked ~ #links1 li,
#type2:checked ~ #links2 li, 
#type3:checked ~ #links3 li,
#type4:checked ~ #links4 li,
#type5:checked ~ #links5 li,
#type6:checked ~ #links6 li{
    height: 750px;
    opacity: 1;
}
.spbr{
	display:none;
}
.swiper-slide p{
	font-size:18px;
}

.plus {
	display: block;
	position: relative;
}
  
/* 二本の横棒を作成する */
.plus::before,
.plus::after {
content: '';
display: block;
width: 15px;
height: 3px;
border-radius: 5px;
background: #4e4e4e;
position: absolute;
right: 0;
top: 50%;
transform: translateY(-50%);
}

/* 2本の横棒のうち一本は縦棒にする */
.plus::after {
background: #4e4e4e;
/* 横棒を縦にするために90℃回転させる */
transform: translateY(-50%) rotate(90deg);
/* プラスからマイナスへの切り替えをゆっくり行いアニメーションさせる */
transition: 0.3s;
}

/*
プラスがクリックされたら縦棒を横にしてマイナスにする疑似要素
jQueryで付け外しを行う
*/
.active::after {
transform: rotate(0);
transition: 0.3s;
}