/*=============================================
shop.html
================================================ */
@charset "utf-8";

/*
トップ
================================================ */
.top-layout {
  width: 90%;
  margin: 50px auto 0;
}

@media screen and (min-width: 768px)  {
  .top-layout {
    width: 60%;
    margin: 50px auto 0;
  }
}


/*
店舗情報
================================================ */
.map {
  width: 800px;
  max-width: 100%;
  margin: 50px auto;

}
.tenpo-items{
	margin:100px auto;

}

.iframe {
  width: 100%;
  padding-top: 50%;
  position: relative;
}
.iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.access_info {
  margin: 16px auto 10px;
  width: 800px;
  max-width: 100%;
}
.access_info:not(:first-child) {
  margin-top: 16px;
}
.access_info dt {
  text-align: left;
  font-weight: 700;
  width: 104px;
  margin: 0;
  padding: 0;
}
.access_info dd {
  text-align: left;
  width: calc(100% - 104px);
  margin: 0;
  padding: 0;
}

@media screen and (max-width: 767px) {
.access_info dd {
  width: calc(90% - 104px);
 }
}

.access_info-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.link-btn {
display: flex;
justify-content: space-evenly;
align-items: center;
text-align: center;
text-decoration: none;
width: 227px;
margin: auto;
padding: 1rem;
font-weight: bold;
background: var(--blue);
border: 2px solid var(--blue);
color: #fff;
border-radius: 100vh;
position: relative;
transition: 0.5s;
}
.link-btn::before {
	content: '';
	width: 7px;
	height: 7px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(45deg);
}
.link-btn:hover {
	background: #fff;
	color: var(--blue);
  border: 2px solid var(--blue);
}

@media screen and (min-width: 768px) {
  .link-btn {
    width: 304px;
    padding: 1rem 4rem 1rem 3rem;
    }
  }
/*
ショップ
================================================ */
.shop-discription {
	display:block;
}

.shop-img img {
  width: 250px;
  height: 200px;
  object-fit: cover;
  margin: 0 auto
}
@media screen and (min-width: 768px) {
.shop-discription {
	display:flex;
	margin: 30px auto
}
.shop-img img {
  width: 100%;
  height: 50%;
  object-fit: cover;
  margin: 0 auto
}
}
/*
アコーディオンメニュー
================================================ */
.toggleMenu {
	margin:15px auto;
	width:90%;
}
@media screen and (min-width: 768px) {
.toggleMenu {
	margin:5px auto;
	width:50%;
}
}

#acMenu dt{
font-family:var(--oswald-font);
background:#fff39c;
font-size:1rem;
font-weight:700;
display:block;
width:100%;
height:50px;
line-height:50px;
text-align:center;
border:var(--light-yellow) 1px solid;
cursor:pointer;
}
#acMenu dd{
background:#f2f2f2;
width:100%;
height:auto;
padding:10px;
line-height:50px;
text-align:left;
border:var(--light-yellow) 1px solid;
display:none;
}
#acMenu dd p {
font-size:1rem;
font-weight:400;
font-family:var(--oswald-font);
}

.car-icon::after {
 content: "";
 display: inline-block;
 width: 25px;
 height: 25px;
 margin-left:10px;
 background-image:url(../img/icon/car.svg);
 background-size: contain;
 vertical-align: middle;
}
.train-icon::after {
 content: "";
 display: inline-block;
 width: 25px;
 height: 25px;
 margin-left:10px;
 background-image:url(../img/icon/train.svg);
 background-size: contain;
 vertical-align: middle;
}
.walk-icon::after {
 content: "";
 display: inline-block;
 width: 25px;
 height: 25px;
 margin-left:10px;
 background-image:url(../img/icon/walk.svg);
 background-size: contain;
 vertical-align: middle;
}


