/* CSS Document */

/*
*共通部分
*/

.pankuzu {
  max-width: 1200px;
  margin: 0 auto 4em;
  padding-top: 2em;
}
.pankuzu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.pankuzu ul li {
  margin-right: 1em;
}
.pankuzu ul li a {
  color: #de3400;
}

@media screen and (max-width: 1200px) {
  .pankuzu {
	max-width: 96%;
  }
}



/*
*ご予約弁当－店頭受け取り
*/

#takeout {
  max-width: 1200px;
  margin: 0 auto;
}
#takeout > h2 {
  margin-bottom: 2em;
  text-align: center;
  font-size: 2em;
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  font-weight: bold;
}

.step-ttl {
  margin-bottom: 2em;
  text-align: center;
  font-size: 1.6em;
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  border: 1px solid #000;
  padding: 20px 1em;
}

.store-tab {
  margin-bottom: 4em;
}
.store-tab ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.store-tab ul li a {
  display: block;
}
.store-tab ul li.this {
  border: 5px solid #de3400;
  border-radius: 20px;
  box-shadow: 3px 3px 0px #FFF;
}

.store-wrap {
  margin-bottom: 4em;
}
.prefectures {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
  margin: 2em auto 1em;
}
.prefectures li {
  display: inline-flex;
}
.prefectures li a {
  font-size: 1.2em;
  margin: 0 10px 1em;
  position: relative;
  border: 1px solid #000;
  padding: 10px 40px 10px 30px;
}
.prefectures li a:after {
  content: "";
  position: absolute;
  right: 16px;
  top: 40%;
  transform: translateY(-40%) rotate(135deg);
  -webkit-transform: translateY(-40%) rotate(135deg);
  -ms-transform: translateY(-40%) rotate(135deg);
  width: 10px;
  height: 10px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
}

.each-prefecture > dl > dt {
  font-size: 2em;
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  padding: 10px 20px;
  margin-bottom: 1em;
  font-weight: bold;
}
.delica .each-prefecture > dl > dt {
  background-color: #e3d3c8;
}
.sanmarco .each-prefecture > dl > dt {
  background-color: #9e3709;
  color: #FFF;
}

.store-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 3em;
}
.store-list > li {
  width: calc(32% - 42px);
  width: 32%;
  border: 1px solid #000;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 1em;
}
.store-list > li.noborder {
  border: 0px;
  padding: 0;
}
.store-list li dl dt {
  font-size: 1.4em;
  margin-bottom: 1em;
  font-weight: bold;
}
.store-list li dl dd {
  margin-bottom: 0.5em;
}
.store-list li dl dd:last-child {
  margin-bottom: 0;
}

.store-link-icon ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.store-link-icon ul li:first-child {
  margin-right: 10px;
}
#sanmarco {
  /*display: none;*/
}

@media screen and (max-width: 1300px) {
  .store-tab ul li {
	width: 48%;
  }
}
@media screen and (max-width: 1200px) {
  #takeout {
	max-width: 96%;
  }
  .store-tab ul li {
	margin-bottom: 20px;
  }
  .store-tab ul li img {
	width: 100%;
  }
}

@media screen and (max-width: 860px) {
  .store-list > li {
	width: calc(49% - 42px);
	width: 48%;
  }
}

@media (max-width: 768px) {
  .store-tab ul {
	display: block;
  }
  .store-tab ul li {
	width: 100%;
  }
  .each-prefecture > dl > dt {
	text-align: center;
  }
}

@media screen and (max-width: 736px) {
  .prefectures li a {
	font-size: 1em;
	padding: 7px 30px 7px 20px;
  }
  .store-list > li {
	width: calc(100% - 42px);
	width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .step-ttl {
  margin-bottom: 1em;
  font-size: 1.2em;
  padding: 10px 0.5em;
  }
}



/* GoogleMapモーダル */
.map-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  opacity: 0;
  transition: opacity 0.3s ease;
  /* Flexboxで中央配置 */
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-modal.show {
  opacity: 1;
}

.map-modal-content {
  background: #fff;
  padding: 20px;
  width: 80%;
  max-width: 700px;
  border-radius: 12px;
  position: relative;
  transform: scale(0.8);
  transition: transform 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.map-modal.show .map-modal-content {
  transform: scale(1);
}

.map-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

#mapArea iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 6px;
}
