@charset "utf-8";

@media only screen and (max-width:1280px) {}
@media only screen and (max-width:768px) {}
@media only screen and (max-width:480px) {}

/*---------------------------------------------------------------

 commonKeyvisual

--------------------------------------------------------------- */
.commonKeyvisual .imagearea {
  background-image: url(../images/kv.jpg);
}


.commonSection .imageList01 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 20px;
}
.commonSection .imageList01 li {
  width: 32.2485%;
}
.commonSection .imageList01 li img {
  width: 100%;
}
@media only screen and (max-width:480px) {
  .commonSection .imageList01 {
    margin: -10px -5px 0;
    justify-content: center;
  }
  .commonSection .imageList01 li {
    box-sizing: border-box;
    width: 50%;
    padding: 10px 5px 0;
  }
}

/* tabBtns
---------------------------*/
.mapWrapper .tabBtns {
  display: flex;
  align-items:center;
  max-width: 725px;
}
.mapWrapper .tabBtns li {
  display:flex;
  justify-content:center;
  align-items:center;
  flex-direction:column;
  height: 50px;
  width: 100%;
  color: #fff;
  font-size: 16px;
  line-height: 1.3;
  text-align: center;
  border-right: #fff 1px solid;
  background-color: rgba(59,59,65,0.8);
  cursor: pointer;
}
.mapWrapper .tabBtns li.active,
.mapWrapper .tabBtns li:hover{
  color: #80cdd1;
  background-color: rgba(59,59,65,1);
}
@media only screen and (max-width: 768px) {
  .mapWrapper .tabBtns {
    max-width: none;
  }
  .mapWrapper .tabBtns li {
    height: 40px;
    font-size: 14px;
  }
}

/* mapWrap
---------------------------*/
.mapWrap{
  position:relative;
  height: 730px;
}
.mapWrap>div{
  position:absolute;
  top:0;
  left:0;
  right:0;
  bottom:0;
  padding: 0;
  display: none;
}
.mapWrap>div iframe{
  width:100%;
  height: 730px;
  max-height: 730px;
  border: none;
  padding: 0;
}
@media only screen and (max-width: 1024px) {
  .lifeInfoMap iframe{
    border: 0;
    height: 700px;
  }
}
@media only screen and (max-width: 991px) {
  .lifeInfoMap iframe{
    height: 500px!important;
  }
  .mapWrapper ul {
     flex-wrap: wrap;
     justify-content:flex-start;
     border-bottom: none;
  }
  .mapWrapper li{
    width: calc(100% / 4);
    border-bottom: 1px solid #2F2B2B;
  }
}
@media only screen and (max-width: 807px) {
  .mapWrap{
    position:relative;
    height: 700px;
  }
  .mapWrap > div iframe{
    height: 700px;
    max-height: 700px;
  } 
}

/* ライフインフォ
--------------------------------- */
.wrap-tab{
  overflow: hidden;
}
.list-tab{
  display: flex;
  margin: 0 -1px;
  max-width: 725px;
}
.list-tab > li{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 50px;
  width: 100%;
  color: #fff;
  font-size: 16px;
  line-height: 1.3;
  text-align: center;
  border-right: #fff 1px solid;
  background-color: rgba(59,59,65,0.8);
  cursor: pointer;
}
.list-tab .active{
  background: #3b3b41;
  color: #80cdd1;
}
.wrap-tab-content {
  background-color: #3b3b41;
  padding: 40px 40px 60px;
}
.tab-content{
  display: none;
}
.lifeinfo_title {
  margin-bottom: 10px;
  color: #fff;
  font-size: 18px;
}
.tab-content.active{
  display: block;
}
.lifeinfo_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.lifeinfo_list {
  color: #fff;
  font-size: 14px;
  width: 48%;
  border-bottom: 1px solid #fff;
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  text-align: left;
}
.lifeinfo_list .shop {
  width: calc(100% - 140px);
}
.lifeinfo_list .times {
  width: 133px;
}
@media only screen and (max-width:768px) {
  .wrap-tab{
    overflow: hidden;
  }
  .list-tab{
    display: block;
    margin: 0;
    max-width: 100%;
  }
  .list-tab > li{
    height: 40px;
    font-size: 14px;
    border-right: none;
    border-bottom: 1px solid #3b3b41;
  }
  .wrap-tab-content {
    background-color: #3b3b41;
    padding: 20px 20px 40px;
  }

  .lifeinfo_title {
    font-size: 16px;
  }
  .tab-content.active{
    display: block;
  }
  .lifeinfo_wrap {
    display: block;
    height: 350px;
    overflow-y: scroll;
  }
  .lifeinfo_list {
    color: #fff;
    font-size: 14px;
    width: 100%;
    border-bottom: 1px solid #fff;
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    text-align: left;
  }
}




/*---------------------------------------------------------------

 mapBtn

--------------------------------------------------------------- */
.mapBtn {
  margin-top: 40px;
}
.mapBtn a {
  display: block;
  max-width: 380px;
  margin: 0 auto;
  color: #fff;
  font-size: 16px;
  background-color: #2b2a65;
  text-align: center;
  text-decoration: none;
}
.mapBtn a span {
  position: relative;
  display: inline-block;
  padding: 20px 0 20px 45px;
}
.mapBtn.red a {
  background-color: #652a2a;
} 
.mapBtn a span:before {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  content: '';
  width: 25px;
  height: 36px;
  background: url(../images/ico.png) no-repeat center center / contain;
  transform: translateY(-50%);
}
@media only screen and (max-width:768px) {
  .mapBtn {
     margin-top: 25px;
  }
  .mapBtn a {
    font-size: 14px;
  }
  .mapBtn a span {
    padding-left: 30px;
  }
  .mapBtn a span:before {
    width: 20px;
    height: 31px;
  }
}


































