@charset "utf-8";

/* ご挨拶 */
.greeting {
  max-width: 1600px;
  margin: 50px auto;
  text-align: center;
}

.greeting span {
  display: block;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
}

.greeting p {
  font-size: 16px;
  line-height: 2;
}

/* 店舗風景 */
.view {
  margin: 60px auto 200px;
  text-align: center;
}

.view-img {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.view-img img {
  width: 400px;
}

/* 店舗概要 */
.store-overview .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin: 60px auto;
  padding: 0 20px;
  max-width: 900px;
}

.store-overview .container img {
  flex: 0 0 48%;
  max-width: 400px;
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.store-overview .text {
  flex: 1 1 48%;
  min-width: 260px;
  font-size: 15px;
  line-height: 2;
}

/* アクセススタート */
.access .map {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin: 60px auto;
  max-width: 900px;
  padding: 0 20px;
}

.access iframe {
  flex: 0 0 48%;
  max-width: 400px;
  width: 100%;
  height: 250px;
  display: block;
  object-fit: cover;
}

.access p {
  flex: 1 1 48%;
  min-width: 260px;
  font-size: 15px;
  line-height: 2;
}

.access p span {
  font-size: 20px;
  font-weight: bold;
  color: #8b4e13;
  display: inline-block;
  margin-bottom: 10px;
}

/* レスポンシブ対応スタート */
@media screen and (max-width: 1024px) {
  /* ご挨拶 */
  .greeting {
    margin: 80px auto;
    padding: 0 20px;
  }

  .greeting span {
    font-size: 20px;
  }

  .greeting p {
    font-size: 14px;
    line-height: 1.8;
  }

  /* 店舗風景 */
  .view {
    margin: 80px auto;
  }

  .view-img img {
    width: 80%;
    max-width: 80%;
  }

  /* 店舗概要 */
  .store-overview .container {
    flex-direction: column-reverse;
    gap: 20px;
  }

  .store-overview .container img {
    max-width: 100%;
  }

  .store-overview .text {
    font-size: 14px;
    line-height: 1.8;
  }

  /* アクセススタート */
  .access .map {
    flex-direction: column-reverse;
    gap: 20px;
  }

  .access iframe {
    width: 100%;
    aspect-ratio: 16/10;
  }

  .access p {
    font-size: 14px;
    text-align: center;
  }

  .access p span {
    font-size: 20px;
  }
}
