

/*====================================================
////id |  greeting
====================================================*/
.greeting-text .name {
  font-size: 1.125em;
  text-align: right;
}
.greeting-text .name .small {
  font-size: .7em;
}
/* ////////// mobile ////////// */
@media screen and (max-width: 960.0px) {
  .greeting-img {
    margin: 0 auto min(7vw, 30px);
    width: min(70%, 400px);
  }
}

/* ////////// PC ////////// */
@media print, screen and (min-width: 960.1px) {
  .greeting-content {
    display: flex;
      gap: min(4vw, 80px);
      justify-content: center;
  }
  .greeting-img {
    width: 30%;
  }
  .greeting-text {
    flex: 1;
    max-width: 900px;
  }
}

@media (hover: hover) {}


/*====================================================
////id |  information
====================================================*/
#information {
  background: var(--color_5);
}
.information-item-wrapper {
  display: grid;
    grid-template-columns: auto 1fr;
  margin: auto;
  width: min(100%, 700px);
}
.information-item {
  border-top: solid 1px var(--gray);
  display: grid;
    grid-gap: min(7vw, 50px);
    grid-template-columns: subgrid;
    grid-column: span 2;
  padding: 1em 0;
}
.information-item:last-child {
  border-bottom: solid 1px var(--gray);
}
.information-item dt {
  font-weight: 700;
}
/* ////////// mobile ////////// */
@media screen and (max-width: 769.0px) {
}

/* ////////// PC ////////// */
@media print, screen and (min-width: 769.1px) {
}

@media (hover: hover) {}


/*====================================================
////id |  shop
====================================================*/
.shop-inner {
  padding-bottom: 0;
}
.shop-item-wrapper {
  display: grid;
    grid-gap: min(4vw, 20px);
}
.shop-item {
  background: #fff;
  border-radius: min(5vw, 30px);
  display: grid;
    grid-gap: min(3vw, 16px) min(4vw, 40px);
  line-height: 1.5;
  padding: min(8vw, 40px) min(5vw, 100px);
}
.shop-item-title {
  color: var(--color_1);
  font-size: 1.35em;
}
.shop-detail {
  display: grid;
    grid-template-columns: auto 1fr;
}
.shop-detail dl {
  border-top: solid 1px var(--gray);
  display: grid;
    grid-gap: min(7vw, 40px);
    grid-template-columns: subgrid;
    grid-column: span 2;
  padding: 1em 0;
}
.shop-detail dl:last-child {
  border-bottom: solid 1px vaR(--gray);
}
.shop-detail dt {
  font-weight: 700;
}
/* ////////// mobile ////////// */
@media screen and (max-width: 769.0px) {
  .shop-item-title {
    text-align: center;
  }
  .shop-detail-wrapper {
    margin-top: 10px;
  }
}

/* ////////// PC ////////// */
@media print, screen and (min-width: 769.1px) {
  .shop-item {
    grid-template-columns: 1fr 1fr;
  }
  .shop-item-title-wrapper {
    display: flex;
      align-items: flex-end;
    grid-column: 2;
    grid-row: 1;
  }
  .shop-item-map {
    grid-column: 1;
    grid-row: 1 / 3;
  }
}

@media (hover: hover) {}
