@charset "utf-8";
/*  branch.css
---------------------------------------------- */

/*  pc
---------------------------------------------- */
/*-------- arrow --------*/
.arrow-down {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 14px;
  aspect-ratio: 1/1;
}
.arrow-down::after {
  content: "";
  width: 9px;
  height: 9px;
  margin-top: -4px;
  border-bottom: solid 1px #fff;
  border-right: solid 1px #fff;
  transform: rotate(45deg);
}

/*-------- shop-information --------*/
#shop-information {
  padding-bottom: 90px;
}
#shop-information .shop-information-lead {
  line-height: 2;
  text-align: center;
}
#shop-information .shop-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
}
#shop-information .shop-nav li {
  width: calc((100% - 40px) / 5);
}
#shop-information .shop-nav a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  padding: 0 15px;
  background: #385874;
  color: #fff;
  text-align: center;
  line-height: 1.3;
  transition: all 0.3s;
}
#shop-information .shop-nav a:hover {
  background: #2d4a63;
}
#shop-information .shop-nav .arrow-down {
  right: 15px;
}

/*-------- shop-list --------*/
#shop-list {
  padding-bottom: 140px;
}
.shop-item {
  scroll-margin-top: 100px;
}
.shop-item + .shop-item {
  margin-top: 80px;
}
.shop-item_head {
  padding: 20px 30px;
  border-left: 7px solid #385874;
  border-bottom: 1px solid #e7e3df;
  line-height: 1.4;
}
.shop-item_body {
  display: flex;
  gap: 3.3333%;
  margin-top: 30px;
}
.shop-item_col:first-child {
  flex: 0 0 auto;
  width: 33.3333%;
}
.shop-item_col:last-child {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-width: 0;
}
.shop-item_img {
  height: auto;
  aspect-ratio: 400/230;
}
.shop-item_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: bottom;
}
.shop-item_tel {
  gap: 12px;
  width: auto;
  margin-top: 20px;
  font-family: "Noto Serif JP", serif;
}
.shop-item_tel::before {
  content: "";
  flex: 0 0 auto;
  width: 24px;
  height: 16px;
  background: url(../img/owner/icon_tel02.svg) no-repeat center / contain;
}
.shop-item_tel-name {
  margin-top: 20px;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.6;
}
.shop-item_tel-name + .shop-item_tel {
  margin-top: 8px;
}
.shop-item_data {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  flex: 0 0 auto;
  /* 写真と同じ高さにして、地図と電話ボタンの上端を揃える */
  aspect-ratio: 760/206;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.9;
}
.shop-item_data dt {
  width: 20%;
  padding: 5px 0;
  font-weight: normal;
}
.shop-item_data dd {
  width: 80%;
  padding: 5px 0;
}
.shop-item_sublist li {
  display: flex;
}
.shop-item_sublist-name {
  flex: 0 0 auto;
  width: 9.5em;
}
.shop-item_map {
  margin-top: 20px;
  aspect-ratio: 760/300;
}
.shop-item_map iframe {
  width: 100%;
  height: 100%;
  vertical-align: bottom;
}

/*  sp
---------------------------------------------- */
@media only screen and (max-width: 959px) {
  /*-------- arrow --------*/
  .arrow-down {
    width: 10px;
  }
  .arrow-down::after {
    width: 7px;
    height: 7px;
    margin-top: -3px;
  }

  /*-------- shop-information --------*/
  #shop-information {
    padding-bottom: 50px;
  }
  #shop-information .shop-information-lead {
    line-height: 1.8;
  }
  #shop-information .shop-nav {
    gap: 7px 2%;
    margin-top: 25px;
  }
  #shop-information .shop-nav li {
    width: 49%;
  }
  #shop-information .shop-nav a {
    height: 5rem;
    min-height: 45px;
    padding: 0 8px;
  }
  #shop-information .shop-nav .arrow-down {
    right: 10px;
  }

  /*-------- shop-list --------*/
  #shop-list {
    padding-bottom: 90px;
  }
  .shop-item {
    scroll-margin-top: 20px;
  }
  .shop-item + .shop-item {
    margin-top: 50px;
  }
  .shop-item_head {
    padding: 15px 15px;
  }
  .shop-item_body {
    display: block;
    margin-top: 20px;
  }
  .shop-item_col:first-child,
  .shop-item_col:last-child {
    width: auto;
  }
  .shop-item_col + .shop-item_col {
    margin-top: 20px;
  }
  .shop-item_tel {
    gap: 10px;
    margin-top: 15px;
  }
  .shop-item_tel::before {
    width: 24px;
    height: 16px;
  }
  .shop-item_tel-name {
    margin-top: 15px;
  }
  .shop-item_tel-name + .shop-item_tel {
    margin-top: 6px;
  }
  .shop-item_data {
    aspect-ratio: auto;
    line-height: 1.7;
  }
  .shop-item_data dt {
    width: 100%;
    padding: 0;
  }
  .shop-item_data dd {
    width: 100%;
    margin-bottom: 12px;
    padding: 0 0 12px;
    border-bottom: 1px solid #e7e3df;
  }
  .shop-item_data dd:last-of-type {
    margin-bottom: 0;
  }
  .shop-item_sublist-name {
    width: 9em;
  }
  .shop-item_map {
    margin-top: 15px;
    aspect-ratio: 16/9;
  }
}
