@charset "UTF-8";

/* ページタイトル */
.page-title::before {
  left: 60px;
}

/* ===============================
   共通
================================ */
.shop-main {
  padding: 0 24px 120px;
}

.shop-section-title {
  border-left: solid 8px #948b72;
  font-size: 24px;
  font-weight: bold;
  padding-left: 16px;
  margin-bottom: 40px;
}

/* ===============================
   店舗案内
================================ */
#shop-info {
  margin-bottom: 100px;
}

.shop-intro {
  display: flex;
  gap: 56px;
  align-items: flex-start;
}

.shop-intro-img {
  width: 48%;
  flex-shrink: 0;
}
.shop-intro-img img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.shop-intro-text {
  flex: 1;
}

.shop-name {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 16px;
  padding-bottom: 16px;
  border-bottom: solid 1px #efefef;
}

.shop-catch {
  font-size: 16px;
  line-height: 1.8;
  color: #948b72;
  margin-bottom: 24px;
}

.shop-text {
  font-size: 14px;
  line-height: 2;
  color: #555;
}

/* ===============================
   店舗詳細
================================ */
#shop-detail {
  margin-bottom: 100px;
}

.shop-table {
  display: flex;
  flex-wrap: wrap;
  border-bottom: solid 1px #efefef;
}

.shop-table dt {
  width: 20%;
  border-top: solid 1px #efefef;
  font-weight: bold;
  font-size: 14px;
  padding: 20px 16px;
  background-color: #faf9f7;
}

.shop-table dd {
  width: 80%;
  border-top: solid 1px #efefef;
  font-size: 14px;
  padding: 20px 16px;
  line-height: 1.8;
}

.shop-table dd a {
  color: inherit;
  text-decoration: underline;
}

/* ===============================
   アクセス
================================ */
#shop-access {
  margin-bottom: 100px;
}

.access-map {
  margin-bottom: 32px;
}

.access-map iframe {
  width: 100%;
  height: 400px;
  display: block;
}

.access-list {
  display: flex;
  flex-wrap: wrap;
  border-bottom: solid 1px #efefef;
}

.access-list dt {
  width: 120px;
  border-top: solid 1px #efefef;
  font-weight: bold;
  font-size: 14px;
  padding: 16px;
}

.access-list dd {
  flex: 1;
  border-top: solid 1px #efefef;
  font-size: 14px;
  padding: 16px;
  line-height: 1.8;
}

/* ===============================
   よくある質問
================================ */
#shop-faq {
  margin-bottom: 100px;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-top: solid 1px #efefef;
  padding: 32px 0;
}

.faq-item:last-child {
  border-bottom: solid 1px #efefef;
}

.faq-item dt {
  display: flex;
  align-items: baseline;
  gap: 16px;
  font-weight: bold;
  font-size: 15px;
  margin-bottom: 16px;
}

.faq-item dd {
  display: flex;
  align-items: baseline;
  gap: 16px;
  font-size: 14px;
  line-height: 1.9;
  color: #555;
  padding-left: 4px;
}

.faq-q,
.faq-a {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 13px;
  font-weight: bold;
  font-family: 'Shippori Mincho', serif;
}

.faq-q {
  background-color: #948b72;
  color: #fff;
}

.faq-a {
  background-color: #f0ede8;
  color: #948b72;
}

/* ===============================
   お問い合わせCTA
================================ */
.shop-contact {
  background: linear-gradient(75deg, #f5f5f5 0%, #f5f5f5 50%, #fff 50%, #fff 100%);
  padding: 120px 0;
}

.shop-contact .content {
  display: flex;
  align-items: center;
  background-color: #fff;
  padding: 40px;
  max-width: 1048px;
  margin: 0 auto;
}

.shop-contact .content .title {
  font-size: 18px;
  margin-bottom: 8px;
}

.shop-contact .content .tel-area {
  width: 50%;
  border-right: solid 1px #948b72;
  padding: 24px;
  text-align: center;
}

.shop-contact .content .tel-area .tel {
  font-size: 44px;
  line-height: 1;
  color: #2a2a2a;
  text-decoration: none;
}

.shop-contact .content .tel-area .text {
  font-size: 14px;
  margin-top: 8px;
}

.shop-contact .content .form-area {
  width: 50%;
  padding: 24px;
  text-align: center;
}

.shop-contact .btn-link {
  display: inline-block;
  padding: 0.8rem 3rem;
  background-color: #948b72;
  color: #fff;
  text-decoration: none;
  text-align: center;
  padding: 1rem 1.5rem;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  box-sizing: border-box;
  transition: background-color 0.3s ease;
}

.shop-contact .content .form-area .btn-link:hover {
  background-color: #948b72;
  color: #fff;
  opacity: 0.8;
}

.shop-contact .content .form-area .btn-link::after {
  content: none;
}

/*-------------------------------------------
sp
-------------------------------------------*/
@media screen and (max-width: 767px) {
  .page-title::before {
    left: 44px;
  }

  .shop-main {
    padding: 0 16px 80px;
  }

  .shop-section-title {
    font-size: 20px;
    margin-bottom: 24px;
  }

  /* 店舗案内 */
  #shop-info {
    margin-bottom: 64px;
  }

  .shop-intro {
    flex-direction: column;
    gap: 24px;
  }

  .shop-intro-img {
    width: 100%;
  }

  .shop-name {
    font-size: 18px;
  }

  /* 店舗詳細 */
  #shop-detail {
    margin-bottom: 64px;
  }

  .shop-table dt {
    width: 35%;
    padding: 12px;
    font-size: 13px;
  }

  .shop-table dd {
    width: 65%;
    padding: 12px;
    font-size: 13px;
  }

  /* アクセス */
  #shop-access {
    margin-bottom: 64px;
  }

  .access-map iframe {
    height: 280px;
  }

  .access-list {
    display: block;
  }

  .access-list dt {
    width: 100%;
    border-top: solid 1px #efefef;
    border-bottom: none;
    padding: 12px 12px 4px;
    font-size: 13px;
  }

  .access-list dd {
    width: 100%;
    border-top: none;
    padding: 4px 12px 12px;
    font-size: 13px;
  }

  /* FAQ */
  #shop-faq {
    margin-bottom: 64px;
  }

  .faq-item {
    padding: 24px 0;
  }

  .faq-item dt {
    font-size: 14px;
    gap: 12px;
    margin-bottom: 12px;
  }

  .faq-item dd {
    font-size: 13px;
    gap: 12px;
  }

  /* CTA */
  .shop-contact {
    background: #f5f5f5;
    padding: 48px 24px;
  }

  .shop-contact .content {
    flex-direction: column;
    padding: 24px;
  }

  .shop-contact .content .title {
    font-size: 16px;
  }

  .shop-contact .content .tel-area {
    width: 100%;
    border-right: none;
    border-bottom: solid 1px #948b72;
    padding: 24px 0;
  }

  .shop-contact .content .tel-area .tel {
    font-size: 28px;
  }

  .shop-contact .content .form-area {
    width: 100%;
  }
}
