@charset "UTF-8";

/* section：共通 */
.sec-title {
  text-align: center;
}
.sec-title h2 {
  display: inline-block;
  font-size: 3rem; /* 40px */
  line-height: 1.3;
  font-weight: bold;
  font-family: var(--sub-font);
  letter-spacing: 0.1em;
  border-bottom: 4px solid var(--third-color);
}
/* スマホ&タブレット対応 */
@media (max-width: 767px) {
  .sec-title h2 {
    font-size: 2rem; /* 40px */
  }
}

/*-------------------------------------------
ONLINE SHOP
-------------------------------------------*/

/* 見出し＆メイン画像の大枠 */
.shop-title,
.news-title {
  height: 350px;
  background-repeat: no-repeat;
  background-position: center top 33%;
  background-size: cover;
  /* 子要素の配置を調整 */
  display: flex;
  flex-direction: column; /* 縦並びに */
  /* 縦・横を真ん中に */
  align-items: center;
  justify-content: center;
  color: #fff;
  text-shadow: 1px 1px 10px #4b2c14;
}
.shop-title {
  background-image: url(../images/shop/bg-img.JPG);
}
.news-title {
  background-image: url(../images/news/bg-img-02.JPG);
}
/* 見出しh1 */
.shop-title h1,
.news-title h1 {
  font-size: 2.6rem;
  font-family: PT Sans, "sans-serif";
  letter-spacing: 0.15em;
}
/* サブ見出し */
.shop-title p,
.news-title p {
  margin-top: 8px;
  font-size: 1rem;
}
/* スマホ用 */
@media (max-width: 767px) {
  .shop-title,
  .news-title {
    height: 300px;
    background-position: left 10% center;
  }
  /* 見出しh1 */
  .shop-title h1,
  .news-title h1 {
    font-size: 2rem;
  }
}

/* online */
.online {
  padding: var(--base-space);
}

/* 商品リストの親要素ul */
.online ul {
  margin-top: 90px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
/* online:タブレットレイアウト */
@media (max-width: 1024px) {
  .online ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* online:スマホレイアウト */
@media (max-width: 767px) {
  .online ul {
    margin-top: 64px;
    grid-template-columns: repeat(1, 1fr);
  }
}
.online-item a {
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition-duration: 0.2s;
}
.online-item a:hover {
  text-decoration: underline;
}
/* 画像 */
.online-item figure img {
  aspect-ratio: 3/2;
  object-fit: cover;
  width: 100%;
}

/* 各商品の説明 */
.online-item dt {
  font-weight: bold;
}
.online-item dd {
  margin-top: 10px;
  font-size: 0.875rem;
  line-height: 20px;
}
/* 商品の値段 */
.online-item .price {
  font-weight: bold;
}
@media (max-width: 767px) {
  .online-item dd {
    font-size: 0.75rem;
  }
}

.navigation {
  margin-top: 24px;
  margin-bottom: 24px;
}
.navigation > .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  border-radius: 50%;
  margin-top: 40px;
}
.navigation > .page-numbers li a {
  border: 1px solid #5a79ba;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.5em;
  height: 2.5em;
  border-radius: 50%;
}
.navigation > .page-numbers li a:hover {
  background-color: #5a79ba;
  color: #fff;
}
.current {
  color: white;
  border: 1px solid #5a79ba;
  background-color: #5a79ba;
  width: 2.5em;
  height: 2.5em;
}
/* info */
.info {
  padding: var(--base-space);
}
.info .w-container {
  max-width: 1000px;
  margin: auto;
}

.info-wrapper {
  font-family: "游ゴシック体";
  margin-top: 90px;
}
.info figure {
  width: 60%;
  margin: auto;
}
.info figure img {
  border-radius: 81% 19% 88% 12% / 16% 82% 18% 84%;
}
.info-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 90px;
}
/* お店の情報 */
.info-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 16px 24px;
  width: 45%;
}
.info-list a {
  text-decoration: underline;
  padding: 16px 0;
}
.info-list dt {
  width: 20%;
  font-weight: bold;
  margin-bottom: 8px;
}
.info-list dd {
  width: 65%;
}
.info-container .map {
  width: 50%;
}
.info-container .map iframe {
  aspect-ratio: 3/2;
}
/* info:タブレットレイアウト */
@media (max-width: 1024px) {
  .info-wrapper {
    margin-top: 64px;
  }
  .info-container {
    display: block;
    margin-top: 64px;
  }
  /* お店の情報 */
  .info-list {
    padding: 16px 8px;
    width: 100%;
  }
  .info-list dt {
    margin-bottom: 16px;
  }
  .info-list dd {
    width: 70%;
  }
  .info-container .map {
    width: 100%;
  }
}

/* -------------
news
--------------- */

.news {
  padding: var(--base-space);
}
/* news：記事リスト */
.news-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px;
  max-width: 850px;
  margin: 90px auto 0px auto;
}
/* info:タブレットレイアウト */
@media (max-width: 767px) {
  .news-inner {
    grid-template-columns: repeat(1, 1fr);
  }
}
.card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 5px rgba(36, 36, 36, 0.15);
}
.card a {
  display: block;
  height: 100%;
}
.card a:hover {
  text-decoration: underline;
}
.card article {
  display: flex;
  flex-direction: column;
  padding: 40px 0;
  gap: 16px;
}
/* 記事タイトル */
.card-title {
  order: 3;
  padding-left: 16px;
  padding-right: 16px;
  font-size: 1.125rem;
}
/* 画像 */
.card figure {
  order: 2;
}
.card figure img {
  aspect-ratio: 3/2;
  object-fit: cover;
  width: 100%;
}
.card-sheet {
  order: 1;
  padding-left: 16px;
  padding-right: 16px;
}
.card-cat {
  font-size: 0.75rem;
  color: #7b7b7b;
  background-color: #f8f8f8;
  border-radius: 4px;
  font-weight: 600;
  line-height: 1;
  padding: 4px 8px;
  margin-bottom: 4px;
  display: inline-block;
}
.card time {
  font-size: 0.75rem;
  font-weight: bold;
  display: flex;
  align-items: center;
}

/* entry:記事 */
.entry-container {
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
}
.entry-header {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .entry-header {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.entry h1 {
  margin-top: 64px;
  margin-bottom: 24px;
  font-size: 2rem;
}
.entry h2 {
  font-size: 1.625rem;
  margin-top: 64px;
  margin-bottom: 24px;
  background: #f8f8f8;
  padding: 16px;
  border-left: 8px solid #5a79ba;
}
.entry h3 {
  font-size: 1.375rem;
  margin-top: 40px;
  margin-bottom: 24px;
  padding: 8px;
  border-left: 6px solid #5a79ba;
}
.entry h4 {
  font-size: 1.125rem;
  margin-top: 64px;
  margin-bottom: 16px;
}
.entry h4:before {
  content: "✓";
  font-family: system-ui;
  margin-right: 8px;
  color: #5a79ba;
}
/* スマホ用レイアウト */
@media (max-width: 767px) {
  .entry-header {
    padding-left: 16px;
    padding-right: 16px;
  }
  .entry h1 {
    font-size: 1.75rem;
    margin-top: 40px;
    margin-bottom: 16px;
  }
  .entry h2 {
    font-size: 1.25rem;
  }
  .entry h3 {
    font-size: 1.125rem;
  }
}
.entry-date-container {
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.7098039216);
}
.entry figure {
  margin: 40px auto;
}
.entry figure img {
  max-width: 100%;
}
.entry-area > :first-child {
  margin-top: 0;
}
@media (max-width: 767px) {
  .entry-area {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.entry-area ul,
.entry-area ol {
  font-size: 1rem;
  list-style-position: inside;
  background-color: #f9f9f9;
  padding: 20px 20px 15px;
  margin: 4% auto;
}
.entry p {
  font-size: 1rem;
  margin-bottom: 24px;
}
hr {
  border: dotted 2px rgba(0, 0, 0, 0.15);
  margin: 64px 0;
}
