@charset "utf-8";
/* CSS top-page */
h2 {
  color: #EE7E0E;
}
/*----------------------
section_shopinfo
-------------------------*/
.section_shopinfo {
  margin: 0;
  padding: 150px 0 60px;
  background-color: #FFF3E8;
}
.section_shopinfo_contents {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
/*img*/
.shop_img {
  width: 30%;
  max-height: 600px;
  position: relative;
}
.shop_img1 {
  width: 100%;
  height: 80%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  animation: fadeIn1 .7s ease .3s 1 normal backwards;
}
@keyframes fadeIn1 {
  from {
    transform: translateX(-50%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
.shop_img2 {
  width: 80%;
  height: 40%;
  object-fit: cover;
  position: absolute;
  right: -20%;
  bottom: -10%;
  z-index: 50;
  animation: fadeIn2 .7s ease .5s 1 normal backwards;
}
@keyframes fadeIn2 {
  from {
    transform: translateX(-50%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
/*table*/
.section_table {
  width: 60%;
  padding: 40px;
  box-sizing: border-box;
  background-color: #fff;
  animation: fadeIn3 .7s ease .8s 1 normal backwards;
}
@keyframes fadeIn3 {
  from {
    transform: translateX(50%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
table {  
  flex-flow: column;
  border: 0;
}
table td {
  padding: 10px 30px;
  text-align: left;
  vertical-align: bottom;
}
table td span{
  padding-top: 10px;
}
table td:first-child {
  white-space: nowrap;
  font-weight: bold;
  color: #EE7E0E;
}
/*map*/
.section_map {
  max-width: 800px;
  width: 80%;
  max-height: 500px;
  min-height: 300px;
  margin: 120px auto 0;
  position: relative;
  border-radius: 5px;
  border: 2px solid #EE7E0E;
  overflow: hidden;/*角丸消えないように*/
  background-color: #FFF3E8;
 }
 .section_map iframe {
  width: 100%;
  height: calc(100% + 150px + 150px);
  position: absolute;
  top: -140px;
  left: 0;
 }
 /*----------------------
スマホ版
-------------------------*/
 @media (max-width: 650px) {
.section_shopinfo {
  margin: 0;
  padding: 150px 0 60px;
  background-color: #FFF3E8;
}
.section_shopinfo_contents {
  width: 100%;
  display: block;
  flex-wrap: wrap-reverse;
  position: relative;
}
.shop_img {
  display: none;
}
.section_table {
  width: 90%;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
  background-color: #fff;
  animation: fadeIn3 .7s ease .8s 1 normal backwards;
}
table td {
  padding: 10px 10px;
  text-align: left;
  vertical-align: bottom;
}
.section_map {
  max-width: 400px;
  width: 90%;
  height: 300px;
  max-height: 300px;
  margin: 40px auto 0;
  position: relative;
  border-radius: 5px;
  border: 2px solid #EE7E0E;
  overflow: hidden;/*角丸消えないように*/
  background-color: #FFF3E8;
}
}
