#bg1 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-image: url("../img/uhauha.png");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  z-index: -1;
}
#bg1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3); /* 黒い膜。0.5は透明度。調整可 */
  z-index: 1;
}
.bar-wrap__body__item__right__list__item a {
color:blue;
text-decoration: dotted ;
}
.__inner {
  max-width: 1100px;
}
.title {
  background-color: rgba(0, 0, 0, 0.8);
  padding: 80px 0 0 0;
}
.bar {
  background-color: rgba(0, 0, 0, 0.8);
  padding: 80px 0 40px 0;
}
.bar-wrap {
  width: 90%;
  margin: 0 auto;
  color: #000;
}
.bar-wrap__area {
  display: flex;
  flex-direction: column;
  align-items: start; /* 横方向中央 */
  justify-content: center;
  text-align: center;
  width: 100%;
}
.bar-wrap__area p {
  width: 30%;
  font-size: 28px;
  align-items: start;
  display: flex;
  border-bottom: #fff solid 2px;
  margin-bottom: 40px;
  color: #fff;
}
.bar-wrap__body__item {
  background-color: #1e2a38;
  display: flex;
  align-items: center;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); /* ← ここで浮き上がり感 */
  margin-bottom: 40px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  align-items: stretch;
}
.bar-wrap__body__item:hover {
  transform: translateY(-10px);
}
.bar-wrap__body__item__left {
  width: 30%;
  height: 100%;
}
.bar-wrap__body__item__left__img {
  height: 100%; /* 追加 */
  width: 100%;
}
.bar-wrap__body__item__left__img img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
}
.bar-wrap__body__item__right {
  display: flex;
  flex-direction: column;
  align-self: center;
  font-size: 18px;
  line-height: 2;
  margin-left: 20px;

}

.bar-wrap__body__item__right__head {
  font-weight: bold;
  font-size: 28px;
}
.footer {
  background-color: #000;
  text-align: center;
  color: #fff;
}
.footer-wrap {
  padding-top: 40px;
  border-bottom: #ffffff solid 1px;
  border-top: #fff solid 1px;
}
.br-mobile {
  display: none;
}
@media (max-width: 1200px) {
.bar-wrap__body__item__right__list__item {
  font-size:16px;
}
.bar-wrap__body__item__right__list__items {
  font-size:16px;
}
@media screen and (max-width: 1000px) {
  .bar-wrap__body {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.bar-wrap__body__item__right__head h4{
    font-size: 24px;
      margin-left:1%;
  }
  .bar-wrap__body__item {
    flex-direction: column;
    align-items: center;
    width:45%;
    margin:0 auto;
  }
  .bar-wrap__body__item__right__list__item {
  font-size:14px;
  margin-left:1%;
}
.bar-wrap__body__item__right__list__items {
  font-size:14px;
    margin-left:1%;
}
  .bar-wrap__body__item__left {
    width: 100%;
    height: 200px;
  }
  .bar-wrap__body__item__right {
    width: 100%;
    margin-left: 0;
  }
  .bar-wrap__body__item__left__img {
  width: 100%;
  height: 200px;
}
  .bar-wrap__body__item__left__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  border
}
.br-mobile {
    display: block;
  }
  
}
@media screen and (max-width: 650px){
  .bar-wrap__body {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .bar-wrap__body__item {
    perspective: 1000px;
    width: 90%;
    height: 300px;
    position: relative;
  }

  .bar-wrap__body__item__left,
  .bar-wrap__body__item__right {
    backface-visibility: hidden;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transition: transform 0.8s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items:start;
  }

  .bar-wrap__body__item__left {
    z-index: 2;
    transform: rotateY(0deg);
    position: relative;
  }

  .bar-wrap__body__item__right {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    transform: rotateY(180deg);
    padding: 1em;
    box-sizing: border-box;
  }

  .bar-wrap__body__item:hover .bar-wrap__body__item__left {
    transform: rotateY(-180deg);
  }

  .bar-wrap__body__item:hover .bar-wrap__body__item__right {
    transform: rotateY(0deg);
    z-index: 3;
  }
  .bar-wrap__body__item__left__img {
    width: 100%;
    height: 100%;
  }

  .bar-wrap__body__item__left__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: none;
  }
.bar-wrap__body__item__left__img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* ここで黒いフィルター（40%の暗さ） */
  z-index: 1;
}

  .bar-wrap__body__item__right__list {
    font-size: 0.9rem;
    line-height: 1.5;
  }
  .bar-wrap__body__item {
    flex-direction: column;
    align-items: center;
    width:90%;
    margin: 0 auto;
  }

  .bar-wrap__body__item__left {
    position: relative;
  }
.bar-wrap__body__item__right__head h4 {
  width:100%;
  font-size:clamp(1.125rem, 0.875rem + 1.25vw, 1.5rem);
}
.bar-wrap__body__item__right__list {
  width:95%;
}
.bar-wrap__body__item__right__list__item {
  width:100%;
  font-size:clamp(0.625rem, 0.4583rem + 0.8333vw, 0.875rem);
}
.bar-wrap__body__item__right__list__items  {
  width:100%;
  font-size:clamp(0.625rem, 0.4583rem + 0.8333vw, 0.875rem);
}
  /* 追加: 表面にも店名を表示 */
  .bar-wrap__body__item__left::before {
    content: attr(data-barname);
    position: absolute;
    top: 10px;
    left: 10px;
    color: #fff;
    font-size: clamp(1rem, 0.8333rem + 0.8333vw, 1.25rem);;
    font-weight: bold;
    padding: 4px 8px;
    border-radius: 4px;
    z-index: 10;
  }
  .bar-wrap__body__item__right__list__item {
    padding-bottom:10px;
  }
  .bar-wrap__area p {
    font-size:20px;
  }
  .bar-wrap__body__item {
    perspective: 1000px;
    width: 100%;
    height: 200px;
    position: relative;
  }
  .bar {
  padding: 40px 0 20px 0;
}
}
}