* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  min-width: 1200px;
}

body {
  min-width: 1200px;
  overflow-x: auto;
  font-family: "Hiragino Mincho ProN", "Yu Mincho", "Noto Serif JP", serif;
  color: #1f1f1f;
  background: #fff;
  line-height: 1.8;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ヘッダー */
.site-header {
  width: 100%;
  min-width: 1200px;
  height: 76px;
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  height: 100%;
  width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px 1fr 300px;
  align-items: center;
}

.logo img {
  height: 46px;
  margin-left: 28px;
}

.global-nav {
  display: flex;
  justify-content: center;
  gap: 46px;
  font-size: 15px;
  letter-spacing: .08em;
}

/* ドロップダウン */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background: #fff;
  border: 1px solid #ddd;
  border-top: 3px solid #b58a35;
  box-shadow: 0 5px 15px rgba(0,0,0,.08);
  display: none;
  z-index: 999;
}

.dropdown-menu a {
  display: block;
  padding: 12px 18px;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background: #f5f2ec;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

/* 言語切替 */
.language-switch {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}

.language-switch a {
  padding: 6px 10px;
  border: 1px solid #c9b07a;
  background: #fff;
}

.language-switch a.active {
  background: #b58a35;
  color: #fff;
}

/* メインビジュアル */
.hero {
  height: 470px;
  min-width: 1200px;
  background:
    linear-gradient(90deg, rgba(255,255,255,.45), rgba(255,255,255,.08)),
    url("images/hero.jpg") center/cover no-repeat;
}

.hero-copy {
  width: 1200px;
  margin: 0 auto;
  padding: 58px 0 0 40px;
}

.hero h1 {
  font-size: 42px;
  line-height: 1.55;
  letter-spacing: .12em;
  margin-bottom: 22px;
}

.hero p {
  font-size: 17px;
  line-height: 2;
  letter-spacing: .06em;
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin: 24px 0 18px;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,.25);
}

.hero-stats strong {
  font-size: 42px;
  line-height: 1;
}

.hero-stats span {
  display: inline-block;
  margin-left: 6px;
  font-size: 13px;
  line-height: 1.45;
}

.gold-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 230px;
  padding: 13px 26px;
  background: #b58a35;
  color: #fff;
  font-weight: 600;
  letter-spacing: .08em;
}

/* 共通 */
.section {
  padding: 48px 0;
}

.center-title {
  text-align: center;
  font-size: 32px;
  letter-spacing: .12em;
  margin-bottom: 34px;
}

/* 会社案内 */
.about {
  background: #f5f2ec;
}

.about-grid {
  width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px 1fr 320px;
  gap: 36px;
  align-items: center;
}

.about-image img,
.shop-photo-grid img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.about-text h2,
.contact-intro h2,
.shops-text h2 {
  font-size: 30px;
  letter-spacing: .1em;
  margin-bottom: 18px;
}

.about-text p,
.shops-text p,
.contact-intro p {
  font-size: 15px;
  letter-spacing: .04em;
}

.outline-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 42px;
  border: 1px solid #9a7a43;
  background: #fff;
  font-size: 14px;
  letter-spacing: .08em;
  transition: all .3s ease;
}

.outline-btn:hover {
  background: #b58a35;
  color: #fff;
  transform: translateY(-3px);
}

.shop-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.shop-photo-grid img:nth-child(3) {
  grid-column: 2;
}

/* 商品案内 */
.products {
  background: #fff;
}

.product-grid {
  width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  min-height: 190px;
  background: #f1f0ee;
  display: grid;
  grid-template-columns: 45% 55%;
  align-items: center;
  padding: 20px;
  transition: all .3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(0,0,0,.12);
}

.product-card img {
  height: 150px;
  object-fit: contain;
  margin: 0 auto;
}

.product-card h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.product-card p {
  font-size: 13px;
  line-height: 1.7;
}

.product-card span {
  display: inline-block;
  margin-top: 10px;
  padding: 6px 24px;
  background: #050505;
  color: #fff;
  font-size: 13px;
}

/* 店舗一覧 */
.shops {
  background: #f5f2ec;
}

.shops-grid {
  width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr .8fr 1.2fr;
  gap: 42px;
  align-items: center;
}

.map-area img {
  max-height: 290px;
  margin: 0 auto;
  object-fit: contain;
}

.area-links {
  display: grid;
  gap: 18px;
}

.area-links a {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 20px;
  align-items: center;
  border-bottom: 1px solid #ddd;
  padding-bottom: 12px;
  font-weight: 600;
  transition: all .3s ease;
}

.area-links a:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  border-bottom: 1px solid #b58a35;
}

.area-links img {
  height: 64px;
  width: 170px;
  object-fit: cover;
}

/* お問い合わせ */
.contact {
  width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 50px;
  align-items: center;
}

.sns-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 70px;
  text-align: center;
}

.sns-grid a {
  transition: all .3s ease;
}

.sns-grid a:hover {
  transform: translateY(-5px);
}

.sns-grid img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  margin: 0 auto 8px;
}

.sns-grid strong {
  display: block;
  font-size: 15px;
}

.sns-grid span {
  display: block;
  font-size: 13px;
}

/* フッター */
.footer {
  min-width: 1200px;
  background: #5b5750;
  color: #fff;
  padding: 26px 0 18px;
}

.footer-inner {
  width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 230px 1fr 300px;
  align-items: center;
  gap: 30px;
}

.footer-logo {
  height: 46px;
}

.footer nav {
  display: flex;
  justify-content: center;
  gap: 46px;
  font-size: 13px;
}

.footer nav a {
  color: rgba(255,255,255,0.9);
}

.footer-japan-link {
  border: 1px solid #ddd;
  padding: 12px;
  text-align: center;
  font-size: 13px;
}

.copyright {
  margin-top: 22px;
  text-align: center;
  font-size: 11px;
  color: #ddd;
}/* モーダル背景 */

.modal{
    display:none;
    position:fixed;
    z-index:9999;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.7);
}

/* 本体 */

.modal-content{
    background:#fff;
    width:700px;
    max-width:90%;
    margin:80px auto;
    padding:40px;
    position:relative;
    text-align:center;
}

/* 閉じる */

.close{
    position:absolute;
    top:15px;
    right:20px;
    font-size:32px;
    cursor:pointer;
}

.line-area{
    display:flex;
    justify-content:center;
    gap:40px;
    margin-top:30px;
}

.line-card img{
    width:220px;
}

.line-card h3{
    margin-bottom:15px;
}
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
}

.modal-content {
  background: #fff;
  width: 760px;
  margin: 80px auto;
  padding: 42px;
  position: relative;
  text-align: center;
}

.close {
  position: absolute;
  top: 14px;
  right: 22px;
  font-size: 34px;
  cursor: pointer;
}

.modal-lead {
  font-size: 14px;
  margin-top: 8px;
}

.line-area {
  display: flex;
  justify-content: center;
  gap: 42px;
  margin-top: 30px;
}

.line-card {
  width: 280px;
}

.line-card h3 {
  margin-bottom: 6px;
}

.line-card p {
  font-size: 13px;
  margin-bottom: 14px;
}

.line-card img {
  width: 225px;
  margin: 0 auto;
}.qr-small {
    width: 170px;
    height: auto;
    margin: 0 auto;
}

.qr-large {
    width: 420px !important;
    height: auto;
    margin: 0 auto;
}

.line-card img {
    border: 1px solid #ddd;
    padding: 8px;
    background: #fff;
}.sns-dropdown {
  position: relative;
}

.sns-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  background: #fff;
  border: 1px solid #ddd;
  border-top: 3px solid #b58a35;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  z-index: 999;
}

.sns-dropdown:hover .sns-dropdown-menu {
  display: block;
}

.sns-dropdown-menu a {
  display: block;
  padding: 10px 14px;
  font-size: 13px;
  color: #333;
  background: #fff;
}

.sns-dropdown-menu a:hover {
  background: #f5f2ec;
}.contact-intro h2 {
  font-size: 24px;
}
@media (max-width: 768px) {
  .contact-intro h2 {
    font-size: 22px;
  }
}