@charset "UTF-8";

/*-------------------------------------------
MENU
-------------------------------------------*/

/* 見出し＆メイン画像の大枠 */
.menu-title {
  height: 350px;
  background-image: url(../images/menu/goods-bgimg.JPG);
  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;
}
/* 見出しh1 */
.menu-title h1 {
  font-size: 2.6rem;
  font-family: PT Sans, "sans-serif";
  letter-spacing: 0.15em;
}
/* サブ見出し */
.menu-title p {
  margin-top: 8px;
  font-size: 1rem;
}
/* スマホ用 */
@media (max-width: 767px) {
  .menu-title {
    height: 300px;
    background-image: url(../images/menu/goods-bgimg.JPG);
    background-repeat: no-repeat;
    background-position: left 10% center;
  }
  /* 見出しh1 */
  .menu-title h1 {
    font-size: 2rem;
  }
}

/* 商品 */
.goods {
  padding: var(--base-space);
}
ul.tab-list {
  display: flex;
  gap: 40px;
  justify-content: center;
}
/* スマホ用 */
@media (max-width: 767px) {
  ul.tab-list {
    gap: 24px;
  }
}
li.tab-item {
  min-width: 150px;
  text-align: center;
  border: 2px solid var(--third-color);
  border-radius: 10px;
  padding: 8px 24px;
  cursor: pointer;
}
li.tab-item.active {
  background-color: var(--third-color);
  color: #fff;
}
/* スマホ用 */
@media (max-width: 767px) {
  li.tab-item {
    font-size: 0.875rem;
  }
}
.tab-box {
  margin-top: 64px;
}
.goods-list {
  display: none;
}
.goods-list.show {
  /* gridレイアウトで調整 */
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 90px; /* 左右の余白 */
  row-gap: 64px; /* 上下の余白 */
}
/* タブレット用 */
@media (max-width: 1024px) {
  .goods-list.show {
    column-gap: 32px; /* 左右の余白 */
    row-gap: 32px; /* 上下の余白 */
  }
}
/* スマホ用 */
@media (max-width: 767px) {
  .goods-list.show {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 16px; /* 左右の余白 */
    row-gap: 24px; /* 上下の余白 */
  }
}
.goods-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.goods-item figure img {
  aspect-ratio: 3/2;
  object-fit: cover;
  width: 100%;
}
.goods-item p {
  margin-top: auto;
}

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

/* 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 */
  }
}

.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%;
  }
}

/*-------------------------------------------
About us：私たちについて
-------------------------------------------*/

/* トップ：見出し＆メイン画像の大枠 */
.about-title {
  height: 350px;
  background-image: url(../images/about/about-bg-img.jpg);
  background-repeat: no-repeat;
  background-position: top 10% right 20%;
  background-size: cover;
  /* 子要素の配置を調整 */
  display: flex;
  flex-direction: column; /* 縦並びに */
  /* 縦・横を真ん中に */
  align-items: center;
  justify-content: center;
  color: #fff;
  text-shadow: 1px 1px 10px #4b2c14;
}
/* 見出しh1 */
.about-title h1 {
  font-size: 2.6rem;
  font-family: PT Sans, "sans-serif";
  letter-spacing: 0.15em;
}
/* サブ見出し */
.about-title p {
  margin-top: 8px;
  font-size: 1rem;
}
/* スマホ用 */
@media (max-width: 767px) {
  .about-title {
    height: 300px;
    background-position: center;
  }
  /* 見出しh1 */
  .about-title h1 {
    font-size: 2rem;
  }
}
/* about us */
.about-us {
  padding: var(--base-space);
}
.about-us .w-container {
  max-width: 1000px;
  margin: auto;
}
.about-us-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.about-us-left {
  flex: 0 0 40%;
  max-width: 40%;
}
.about-us-right {
  flex: 0 0 50%;
  max-width: 50%;
}
.about-us-right h2 {
  letter-spacing: 0.34em;
  font-size: 2rem;
  line-height: 1.4;
}
.about-us-right p {
  font-size: 0.875rem;
  margin-top: 16px;
}
/* 概要:タブレットレイアウト */
@media (max-width: 1024px) {
  .about-us-wrapper {
    display: block;
  }
  .about-us-left {
    max-width: 80%;
    margin: auto;
  }
  .about-us-right {
    max-width: 100%;
    margin-top: 64px;
  }
  .about-us-right h2 {
    font-size: 1.375rem;
  }
  .about-us-right p {
    font-size: 0.875rem;
    margin-top: 32px;
  }
}

/* philosophy */
.philosophy {
  padding: var(--base-space);
  background-color: #f6f6f6;
}
.philosophy .w-container {
  max-width: 1000px;
  margin: auto;
}
.p-wrapper {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 90px;
}
.p-wrapper figure img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
}
.p-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  font-family: "游ゴシック体";
  font-weight: bold;
}
.p-item h3 {
  font-size: 2rem;
  line-height: 1.3;
  border-bottom: 3px solid #333;
}
/* 概要:タブレットレイアウト */
@media (max-width: 1024px) {
  .p-wrapper {
    display: block;
  }
  /* 各アイテム同士の余白 */
  .p-item {
    margin-bottom: 64px;
  }
  .p-item:last-child {
    margin-bottom: 0;
  }
  /* イメージ画像のサイズ */
  .p-wrapper figure img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
  }
}

/* staff */
.staff {
  padding: var(--base-space);
}
.staff .w-container {
  max-width: 1000px;
  margin: auto;
}
.staff-card {
  display: flex;
  justify-content: space-between;
  margin-top: 90px;
}
.staff-card-item {
  width: 45%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
/* スタッフの氏名 */
.staff-name {
  order: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.staff-name h3{
  font-size: 1.375rem;
}
.staff-sns a{
  padding: 8px;
}
.staff-sns a:hover{
  opacity: 0.7;
}
/* スタッフの写真 */
.staff-card-item figure {
  order: 1;
}
/* スタッフの自己紹介文 */
.staff-profile {
  order: 3;
}
/* 概要:タブレットレイアウト */
@media (max-width: 767px) {
  .staff-card {
    flex-direction: column;
    gap: 64px;
  }
  .staff-card-item {
    width: 100%;
  }
  .staff-name h3{
    font-size: 1.25rem;
  }
  /* スタッフの自己紹介文 */
.staff-profile {
  font-size: 0.875rem;
}
}