@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500;600;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+Antique:wght@300;400;500;700;900&display=swap");
:root {
  --gutter-width: 1rem;
  --outer-margin: 2rem;
  --gutter-compensation: calc((var(--gutter-width) * 0.5) * -1);
  --half-gutter-width: calc((var(--gutter-width) * 0.5));
  --xs-min: 30;
  --sm-min: 48;
  --md-min: 64;
  --lg-min: 75;
  --screen-xs-min: var(--xs-min)em;
  --screen-sm-min: var(--sm-min)em;
  --screen-md-min: var(--md-min)em;
  --screen-lg-min: var(--lg-min)em;
  --container-sm: calc(var(--sm-min) + var(--gutter-width));
  --container-md: calc(var(--md-min) + var(--gutter-width));
  --container-lg: calc(var(--lg-min) + var(--gutter-width));
}

.row {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.row.reverse { -webkit-box-orient: horizontal; -webkit-box-direction: reverse; -ms-flex-direction: row-reverse; flex-direction: row-reverse; }
.col.reverse { -webkit-box-orient: vertical; -webkit-box-direction: reverse; -ms-flex-direction: column-reverse; flex-direction: column-reverse; }

.col-xs, .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6,
.col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12,
.col-xs-offset-0, .col-xs-offset-1, .col-xs-offset-2, .col-xs-offset-3,
.col-xs-offset-4, .col-xs-offset-5, .col-xs-offset-6, .col-xs-offset-7,
.col-xs-offset-8, .col-xs-offset-9, .col-xs-offset-10, .col-xs-offset-11, .col-xs-offset-12 {
  -webkit-box-sizing: border-box; box-sizing: border-box;
  -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto;
  padding-right: var(--half-gutter-width, 0.5rem);
  padding-left: var(--half-gutter-width, 0.5rem);
}

.col-xs { -webkit-box-flex: 1; -ms-flex-positive: 1; flex-grow: 1; -ms-flex-preferred-size: 0; flex-basis: 0; max-width: 100%; }
.col-xs-1 { -ms-flex-preferred-size: 8.33333333%; flex-basis: 8.33333333%; max-width: 8.33333333%; }
.col-xs-2 { -ms-flex-preferred-size: 16.66666667%; flex-basis: 16.66666667%; max-width: 16.66666667%; }
.col-xs-3 { -ms-flex-preferred-size: 25%; flex-basis: 25%; max-width: 25%; }
.col-xs-4 { -ms-flex-preferred-size: 33.33333333%; flex-basis: 33.33333333%; max-width: 33.33333333%; }
.col-xs-5 { -ms-flex-preferred-size: 41.66666667%; flex-basis: 41.66666667%; max-width: 41.66666667%; }
.col-xs-6 { -ms-flex-preferred-size: 50%; flex-basis: 50%; max-width: 50%; }
.col-xs-7 { -ms-flex-preferred-size: 58.33333333%; flex-basis: 58.33333333%; max-width: 58.33333333%; }
.col-xs-8 { -ms-flex-preferred-size: 66.66666667%; flex-basis: 66.66666667%; max-width: 66.66666667%; }
.col-xs-9 { -ms-flex-preferred-size: 75%; flex-basis: 75%; max-width: 75%; }
.col-xs-10 { -ms-flex-preferred-size: 83.33333333%; flex-basis: 83.33333333%; max-width: 83.33333333%; }
.col-xs-11 { -ms-flex-preferred-size: 91.66666667%; flex-basis: 91.66666667%; max-width: 91.66666667%; }
.col-xs-12 { -ms-flex-preferred-size: 100%; flex-basis: 100%; max-width: 100%; }
.col-xs-offset-0 { margin-left: 0; }
.col-xs-offset-1 { margin-left: 8.33333333%; }
.col-xs-offset-2 { margin-left: 16.66666667%; }
.col-xs-offset-3 { margin-left: 25%; }
.col-xs-offset-4 { margin-left: 33.33333333%; }
.col-xs-offset-5 { margin-left: 41.66666667%; }
.col-xs-offset-6 { margin-left: 50%; }
.col-xs-offset-7 { margin-left: 58.33333333%; }
.col-xs-offset-8 { margin-left: 66.66666667%; }
.col-xs-offset-9 { margin-left: 75%; }
.col-xs-offset-10 { margin-left: 83.33333333%; }
.col-xs-offset-11 { margin-left: 91.66666667%; }

.start-xs { -webkit-box-pack: start; -ms-flex-pack: start; justify-content: flex-start; text-align: start; }
.center-xs { -webkit-box-pack: center; -ms-flex-pack: center; justify-content: center; text-align: center; }
.end-xs { -webkit-box-pack: end; -ms-flex-pack: end; justify-content: flex-end; text-align: end; }
.top-xs { -webkit-box-align: start; -ms-flex-align: start; align-items: flex-start; }
.middle-xs { -webkit-box-align: center; -ms-flex-align: center; align-items: center; }
.bottom-xs { -webkit-box-align: end; -ms-flex-align: end; align-items: flex-end; }
.around-xs { -ms-flex-pack: distribute; justify-content: space-around; }
.between-xs { -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between; }
.first-xs { -webkit-box-ordinal-group: 0; -ms-flex-order: -1; order: -1; }
.last-xs { -webkit-box-ordinal-group: 2; -ms-flex-order: 1; order: 1; }

.col, .col-1, .col-2, .col-3, .col-4, .col-5, .col-6,
.col-7, .col-8, .col-9, .col-10, .col-11, .col-12,
.col-offset-0, .col-offset-1, .col-offset-2, .col-offset-3,
.col-offset-4, .col-offset-5, .col-offset-6, .col-offset-7,
.col-offset-8, .col-offset-9, .col-offset-10, .col-offset-11, .col-offset-12 {
  -webkit-box-sizing: border-box; box-sizing: border-box;
  -webkit-box-flex: 0; -ms-flex: 0 0 auto; flex: 0 0 auto;
  padding-right: 4px; padding-left: 4px;
}
@media screen and (max-width: 767px) {
  .col, .col-1, .col-2, .col-3, .col-4, .col-5, .col-6,
  .col-7, .col-8, .col-9, .col-10, .col-11, .col-12 {
    -ms-flex-preferred-size: 100%; flex-basis: 100%; max-width: 100%;
  }
}

.col-1 { -ms-flex-preferred-size: 8.33333333%; flex-basis: 8.33333333%; max-width: 8.33333333%; }
.col-2 { -ms-flex-preferred-size: 16.66666667%; flex-basis: 16.66666667%; max-width: 16.66666667%; }
.col-3 { -ms-flex-preferred-size: 25%; flex-basis: 25%; max-width: 25%; }
.col-4 { -ms-flex-preferred-size: 33.33333333%; flex-basis: 33.33333333%; max-width: 33.33333333%; }
.col-5 { -ms-flex-preferred-size: 41.66666667%; flex-basis: 41.66666667%; max-width: 41.66666667%; }
.col-6 { -ms-flex-preferred-size: 50%; flex-basis: 50%; max-width: 50%; }
.col-7 { -ms-flex-preferred-size: 58.33333333%; flex-basis: 58.33333333%; max-width: 58.33333333%; }
.col-8 { -ms-flex-preferred-size: 66.66666667%; flex-basis: 66.66666667%; max-width: 66.66666667%; }
.col-9 { -ms-flex-preferred-size: 75%; flex-basis: 75%; max-width: 75%; }
.col-10 { -ms-flex-preferred-size: 83.33333333%; flex-basis: 83.33333333%; max-width: 83.33333333%; }
.col-11 { -ms-flex-preferred-size: 91.66666667%; flex-basis: 91.66666667%; max-width: 91.66666667%; }
.col-12 { -ms-flex-preferred-size: 100%; flex-basis: 100%; max-width: 100%; }
.col-offset-0 { margin-left: 0; }
.col-offset-1 { margin-left: 8.33333333%; }
.col-offset-2 { margin-left: 16.66666667%; }
.col-offset-3 { margin-left: 25%; }
.col-offset-4 { margin-left: 33.33333333%; }
.col-offset-5 { margin-left: 41.66666667%; }
.col-offset-6 { margin-left: 50%; }
.col-offset-7 { margin-left: 58.33333333%; }
.col-offset-8 { margin-left: 66.66666667%; }
.col-offset-9 { margin-left: 75%; }
.col-offset-10 { margin-left: 83.33333333%; }
.col-offset-11 { margin-left: 91.66666667%; }

.start { justify-content: flex-start; text-align: start; }
.center { justify-content: center; text-align: center; }
.end { justify-content: flex-end; text-align: end; }
.top { align-items: flex-start; }
.middle { align-items: center; }
.bottom { align-items: flex-end; }
.around { justify-content: space-around; }
.between { justify-content: space-between; }
.first { order: -1; }
.last { order: 1; }

html { overflow-x: hidden; overflow-y: visible; }

body {
  font-family: "Noto Serif JP", "yu-mincho-pr6n", "Hiragino Mincho ProN", "MS PMincho", sans-serif;
  font-weight: 400;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-size: cover;
  position: relative;
  font-size: 100% !important;
  height: 100%;
  line-height: 1.8;
  letter-spacing: 2px;
  color: #333;
  background: linear-gradient(rgba(255,255,255,0.7), rgba(255,255,255,0.5)), url(../images/background.png) repeat !important;
  background-size: 50% 50%;
  margin: 0;
}

img { display: block; max-width: 100%; }
main { margin: 80px 0 0; }
.first { order: 1; }
@media screen and (max-width: 767px) { .first { order: 2 !important; } }
.second { order: 2; }
@media screen and (max-width: 767px) { .second { order: 1; } }
.inline { display: none; }
@media screen and (max-width: 767px) { .inline { display: inline-block !important; } }
.readmore { display: inline; text-align: center; font-size: 0.8rem; margin: 0; color: #675852; text-decoration: underline dotted; }
article { padding: calc(40px + 3vw) 0; }
a { text-decoration: none; color: #272727; }
.pc { display: block; }
@media screen and (max-width: 991px) { .pc { display: none; } }
.sp { display: none; }
@media screen and (max-width: 991px) { .sp { display: block; } }
.row { margin: 0 !important; }

.container-fluid { width: calc(100% - 16px); height: 100%; margin: 0 auto; position: relative; }
.container { max-width: 1184px; margin: 0 auto; padding: 0 16px; position: relative; height: 100%; }
@media screen and (max-width: 767px) { .container { width: calc(100% - 16px); padding: 0 !important; } }

.block-revealer__element { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: #000; pointer-events: none; opacity: 0; }

.wp-pagenavi { margin: 20px 0; font-size: 12px; text-align: center; }
.wp-pagenavi a { color: #4a4a4a; margin: 0 8px; }
.pages { margin-right: 20px; }
.sfwppa-pages { margin: 0 8px; }
.wp-pagenavi .current, .wp-pagenavi a.page { margin: 0 6px 6px 0; display: inline-block; border: solid 1px #eee; width: 40px; height: 40px; border-radius: 50%; line-height: 40px; text-align: center; }
.wp-pagenavi .current { border: none; background: #87e6e9; color: #fff; }
.wp-pagenavi a.page:hover { background: #87e6e9; color: #fff; }
.wp-pagenavi .first, .wp-pagenavi .extend { margin-right: 10px; }
.wp-pagenavi .previouspostslink, .wp-pagenavi .nextpostslink { display: none; }

#stickyBox { position: relative; width: 100%; }
#stickyBox.is-show #floating-menu { left: 30px; position: fixed; top: 0; }
.sticky #floating-menu { top: 0; position: fixed; }

.header {
  position: sticky !important;
  top: 0 !important; left: 0 !important; right: 0 !important;
  width: 100% !important;
  z-index: 1000 !important;
  background: rgba(255,255,255,0.95) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.header.scrolled { background: rgba(255,255,255,0.98) !important; box-shadow: 0 4px 20px rgba(0,0,0,0.15); }
.header-content { margin: 0 auto; padding: 1rem; display: flex; justify-content: space-between; align-items: center; }
.site-title { max-width: 140px; margin: 0; font-weight: bold; color: #333; text-decoration: none; }
.site-title:hover { color: #666; }
.nav-menu { display: flex; gap: 2rem; list-style: none; margin: 0; padding: 0; }
.nav-menu a { color: #333; text-decoration: none; font-size: 1.1rem; padding: 0.5rem 0; position: relative; transition: color 0.3s ease; }
.nav-menu a::after { content: ""; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: #333; transition: width 0.3s; }
.nav-menu a:hover::after { width: 100%; }
.main-content { max-width: 1200px; margin: 2rem auto; padding: 0 1rem; }
.user-menu { display: flex; gap: 1rem; align-items: center; }
.cart-icon { position: relative; text-decoration: none; color: #333; font-size: 24px; }
.cart-count { position: absolute; top: -2px; right: -8px; background: #e74c3c; color: white; border-radius: 50%; width: 20px; height: 20px; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; }
.login-btn { font-size: 24px; border: none; padding: 0.5rem 1.5rem; cursor: pointer; text-decoration: none; transition: background-color 0.3s; }

@media (max-width: 768px) {
  .header-content { flex-direction: row; justify-content: space-between; align-items: center; gap: 0; }
  .hamburger { display: flex; order: 1; }
  .site-title { order: 2; text-align: center; max-width: none; }
  .right { order: 3; }
  .nav-menu { flex-direction: column; gap: 1rem; }
  .user-menu { flex-direction: row; gap: 1rem; }
  .header img { width: 100px; }
  .header .header-content { padding: 12px 0; }
  .header .side-menu { width: 85%; max-width: 320px; }
  .hamburger { display: block; }
  .login-btn { padding: 0; }
}

#main_visual h1 { letter-spacing: 0.1em; font-size: 2em; line-height: 1.2; margin: 0; padding: 0 0.5em; }
@media screen and (max-width: 767px) { #main_visual h1 { font-size: 1.6em !important; } }

.infomation { background: #494040; color: #fff; padding: 4px 0; position: relative; z-index: 998; }
.infomation-content { text-align: center; }
.infomation-content p { line-height: 0; font-size: 12px; letter-spacing: 0.08em; }

.hamburger { flex-direction: column; justify-content: center; width: 40px; height: 48px; background: none; border: none; cursor: pointer; z-index: 1201; }
.hamburger span { display: block; height: 1px; width: 32px; background: #333; margin: 8px 0; border-radius: 2px; transition: all 0.5s; }

.side-menu { position: fixed; top: 0; left: -100%; width: 320px; height: 100vh; background: #360509; box-shadow: 2px 0 8px rgba(0,0,0,0.15); z-index: 1202; transition: left 0.3s cubic-bezier(0.4,0,0.2,1); padding: 0; overflow-y: auto; }
.side-menu .close-btn { position: absolute; top: 16px; right: 20px; background: none; border: none; cursor: pointer; z-index: 10; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; }
.side-menu .close-btn::before, .side-menu .close-btn::after { content: ""; position: absolute; width: 20px; height: 2px; background: white; border-radius: 1px; }
.side-menu .close-btn::before { transform: rotate(45deg); }
.side-menu .close-btn::after { transform: rotate(-45deg); }
.side-menu .close-btn:hover { background: rgba(255,255,255,0.1); border-radius: 50%; }
.side-menu .nav-menu { display: flex; flex-direction: column; margin: 0; padding: 60px 0 20px 0; list-style: none; gap: 0 !important; }
.side-menu .nav-menu a { font-size: 0.9rem !important; }
.side-menu .nav-menu .menu-link { display: flex; align-items: center; justify-content: space-between; color: white; font-size: 1.1em; text-decoration: none; padding: 8px 24px; transition: all 0.2s ease; }
.side-menu .nav-menu .menu-link:hover { background: rgba(255,255,255,0.1); color: #fff; }
.side-menu .nav-menu .menu-link .dropdown-arrow { font-size: 0.8em; transition: transform 0.3s ease; margin-left: 8px; }
.side-menu .nav-menu .menu-item { position: relative; }
.side-menu .nav-menu .menu-item.has-submenu.active .menu-link { background: rgba(255,255,255,0.15); }
.side-menu .nav-menu .menu-item .submenu { display: none; background: rgba(0,0,0,0.2); margin: 0; padding: 0; list-style: none; }
.side-menu .nav-menu .menu-item .submenu li a { display: block; color: rgba(255,255,255,0.9); font-size: 0.95em; text-decoration: none; padding: 12px 24px 12px 48px; transition: all 0.2s ease; }
.side-menu .nav-menu .menu-item .submenu li a:hover { background: rgba(255,255,255,0.1); color: #fff; padding-left: 56px; }
.side-menu .nav-menu .menu-divider { height: 1px; background: rgba(255,255,255,0.2); margin: 8px 24px; list-style: none; }
.side-menu .social-icons { display: flex; justify-content: center; gap: 16px; padding: 16px 0; border-top: 1px solid rgba(255,255,255,0.2); }
.side-menu .social-icons .social-icon { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; background: rgba(255,255,255,0.1); color: white; text-decoration: none; border-radius: 50%; transition: all 0.2s ease; font-size: 1.2em; }
.side-menu .social-icons .social-icon:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }
.side-menu.open { left: 0; pointer-events: auto; }
.menu-overlay { display: none; position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; background: rgba(0,0,0,0.25); z-index: 1200; opacity: 0; transition: opacity 0.3s; }
.menu-overlay.show { display: block; opacity: 1; }

footer { padding: 80px 0 !important; text-align: left !important; }
footer img { width: 200px; }
footer h3 { font-size: 16px; }
footer ul { padding: 0; }
footer ul li { list-style-type: none; font-size: 14px; position: relative; }
footer ol { padding: 0; }
footer ol li { list-style-type: none; font-size: 14px; padding: 8px 0; }
footer ol li::before { content: "\f105"; font-family: "Line Awesome Free"; font-weight: 900; color: #333; margin-right: 8px; }

/* =============================================
   みやぶん カスタム追加CSS
   ============================================= */

/* パンくず非表示 */
.breadcrumb, .breadcrumbs, nav[aria-label="breadcrumb"],
.shop-breadcrumb, #breadcrumb, .ec-breadcrumb { display: none !important; }

/* 背景色統一：ランキング&#12316;お知らせまで全部同じ色 */
.ranking,
.shipping_fee_guidance,
.notice--gray,
.notices-section,
.ichoshi-section,
.sns-section,
.page-information { background: #f5f5f5 !important; }

/* ログイン・スケジュール横並び */
.notice-buttons--top { display: flex !important; flex-direction: row !important; gap: 12px !important; padding: 12px 0 !important; }
.notice-buttons--top a { flex: 1 !important; margin: 0 !important; max-width: 100% !important; }

/* ボタン色 */
.notice-btn-secondary { background: #EBE6E7 !important; }
.notice-btn-thirdary { background: #514A48 !important; color: white !important; border-color: #514A48 !important; }
.notice-btn-outline { background: transparent !important; border: 1px solid #330e0e !important; }

/* SNSセクション */
.sns-section { padding: 40px 0 !important; }
.sns-section .sns-icons { display: flex !important; justify-content: center !important; gap: 32px !important; align-items: center !important; }

/* イチオシセクション */
.ichoshi-section { padding: 8px 0 32px !important; }
.ichoshi-header { text-align: center !important; padding: 24px 0 20px !important; }
.ichoshi-title { font-family: "Noto Serif JP","yu-mincho-pr6n",serif !important; font-size: 18px !important; font-weight: 400 !important; letter-spacing: 0.2em !important; color: #444 !important; margin-bottom: 8px !important; }
.ichoshi-period { font-size: 12px !important; color: #555 !important; letter-spacing: 0.12em !important; }
.ichoshi-cards { display: flex !important; flex-direction: column !important; gap: 8px !important; padding: 0 16px !important; }
.ichoshi-card { display: flex !important; align-items: stretch !important; background: #faf8f5 !important; overflow: hidden !important; cursor: pointer !important; text-decoration: none !important; color: inherit !important; min-height: 140px !important; transition: opacity 0.2s ease !important; }
.ichoshi-card:active { opacity: 0.82 !important; }
.ichoshi-img { width: 50% !important; flex-shrink: 0 !important; overflow: hidden !important; }
.ichoshi-img img { width: 100% !important; height: 100% !important; object-fit: cover !important; display: block !important; }
.ichoshi-body { flex: 1 !important; padding: 14px 12px 14px 16px !important; display: flex !important; flex-direction: column !important; justify-content: center !important; gap: 6px !important; }
.ichoshi-tag { font-size: 9px !important; letter-spacing: 0.25em !important; color: #666 !important; }
.ichoshi-name { font-family: "Noto Serif JP","yu-mincho-pr6n",serif !important; font-size: 13px !important; font-weight: 400 !important; letter-spacing: 0.06em !important; line-height: 1.5 !important; color: #333 !important; }
.ichoshi-sub { font-size: 10px !important; color: #666 !important; letter-spacing: 0.03em !important; line-height: 1.6 !important; }
.ichoshi-price { font-size: 14px !important; font-weight: 500 !important; color: #333 !important; margin-top: 2px !important; }
.ichoshi-tax { font-size: 10px !important; font-weight: 400 !important; color: #777 !important; margin-left: 1px !important; }

@media screen and (min-width: 768px) {
  .ichoshi-cards { padding: 0 !important; gap: 10px !important; display: grid !important; grid-template-columns: repeat(2, 1fr) !important; }
  .ichoshi-card { min-height: 200px !important; flex-direction: row !important; }
  .ichoshi-img { width: 50% !important; height: auto !important; }
  .ichoshi-name { font-size: 16px !important; }
  .ichoshi-sub { font-size: 12px !important; }
  .ichoshi-price { font-size: 16px !important; }
  .ichoshi-tag { font-size: 11px !important; }
  .ichoshi-body { padding: 24px 24px 24px 32px !important; gap: 10px !important; }
}

/* お買い物ガイド */
.sg-wrap {
  max-width: 640px !important;
  margin: 0 auto !important;
  padding: 40px 20px 80px !important;
}
.sg-title {
  font-size: 24px !important;
  letter-spacing: 0.2em !important;
  font-weight: 400 !important;
  text-align: center !important;
  padding: 12px 32px !important;
  background: #c8c2be !important;
  display: inline-block !important;
  margin: 0 auto 40px !important;
}
.sg-page {
  width: 100% !important;
  text-align: center !important;
  margin-bottom: 16px !important;
}
.sg-block {
  margin-bottom: 40px !important;
}
.sg-step-label {
  font-size: 14px !important;
  letter-spacing: 0.15em !important;
  font-weight: 500 !important;
  color: #333 !important;
  padding: 10px 24px !important;
  background: #c8c2be !important;
  display: inline-block !important;
  margin-bottom: 20px !important;
}
.sg-sep {
  border: none !important;
  border-top: 1px solid #c8c2be !important;
  margin: 40px 0 !important;
}
.sg-wrap p {
  font-size: 13px !important;
  line-height: 2.2 !important;
  color: #444 !important;
  letter-spacing: 0.08em !important;
  text-align: left !important;
}
.sg-wrap small {
  font-size: 13px !important;
}
.sg-wrap big {
  font-size: 13px !important;
}
.sg-link {
  color: #8b3a2a !important;
  text-decoration: underline dotted !important;
  cursor: pointer !important;
}
.sg-order-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 24px !important;
  counter-reset: sg-counter !important;
}
.sg-order-list li {
  counter-increment: sg-counter !important;
  display: flex !important;
  align-items: flex-start !important;
  gap: 12px !important;
  padding: 12px 0 !important;
  border-bottom: 1px solid #c8c2be !important;
  font-size: 13px !important;
  color: #444 !important;
  letter-spacing: 0.08em !important;
  line-height: 1.8 !important;
}
.sg-order-list li::before {
  content: counter(sg-counter) !important;
  min-width: 24px !important;
  height: 24px !important;
  background: transparent !important;
  color: #c8c2be !important;
  font-size: 11px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  margin-top: 2px !important;
  border: 1px solid #c8c2be !important;
}

.sg-table {
  width: 100% !important;
  border-collapse: collapse !important;
  font-size: 13px !important;
  margin-bottom: 8px !important;
}
.sg-table tr {
  border-bottom: 1px solid #c8c2be !important;
}
.sg-table td {
  padding: 12px 8px !important;
  color: #444 !important;
  line-height: 1.8 !important;
  letter-spacing: 0.06em !important;
  vertical-align: middle !important;
}
.sg-table-area {
  color: #333 !important;
  font-weight: 500 !important;
  width: 55% !important;
}

.sg-title-lg {
  font-size: 24px !important;
  letter-spacing: 0.2em !important;
  font-weight: 400 !important;
  text-align: center !important;
  display: block !important;
  margin: 0 auto 40px !important;
  padding-bottom: 16px !important;
  border-bottom: 1px solid #c8c2be !important;
}

/* よくある質問 */
.faq-page {
  max-width: 640px !important;
  margin: 0 auto !important;
  padding: 40px 20px 80px !important;
}
.page-title {
  font-size: 24px !important;
  font-weight: 400 !important;
  letter-spacing: 0.2em !important;
  text-align: center !important;
  color: #444 !important;
  padding-bottom: 16px !important;
  border-bottom: 1px solid #c8c2be !important;
  margin-bottom: 40px !important;
}
.faq-categories {
  margin-bottom: 40px !important;
}
.category-btn {
  width: 100% !important;
  padding: 12px 8px !important;
  background: transparent !important;
  border: 1px solid #c8c2be !important;
  font-family: "Noto Serif JP", serif !important;
  font-size: 12px !important;
  letter-spacing: 0.1em !important;
  color: #444 !important;
  cursor: pointer !important;
  margin-bottom: 8px !important;
  transition: all 0.2s !important;
}
.category-btn:hover {
  background: #c8c2be !important;
  color: #fff !important;
}
.category-btn.active {
  background: #c8c2be !important;
  color: #fff !important;
  border-color: #c8c2be !important;
}
.faq-item {
  border-bottom: 1px solid #c8c2be !important;
  margin-bottom: 0 !important;
}
.faq-question {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 20px 0 !important;
  cursor: pointer !important;
}
.faq-question h3 {
  font-size: 13px !important;
  font-weight: 400 !important;
  letter-spacing: 0.1em !important;
  color: #333 !important;
  margin: 0 !important;
  line-height: 1.8 !important;
  border: none !important;
  padding: 0 !important;
}
.faq-icon {
  font-size: 18px !important;
  color: #c8c2be !important;
  flex-shrink: 0 !important;
  margin-left: 16px !important;
  transition: transform 0.3s !important;
}
.faq-item.active .faq-icon {
  transform: rotate(45deg) !important;
}
.faq-answer {
  display: none !important;
  padding: 0 0 20px !important;
}
.faq-item.active .faq-answer {
  display: block !important;
}
.faq-answer p {
  font-size: 13px !important;
  line-height: 2.2 !important;
  color: #555 !important;
  letter-spacing: 0.08em !important;
  margin-bottom: 12px !important;
}

@media screen and (min-width: 768px) {
  .ichoshi-section .ichoshi-cards { display: grid !important; grid-template-columns: repeat(2, 1fr) !important; gap: 24px !important; }
  .ichoshi-section .ichoshi-card { min-height: 160px !important; flex-direction: row !important; }
  .ichoshi-section .ichoshi-img { width: 45% !important; height: auto !important; flex-shrink: 0 !important; }
  .ichoshi-section .ichoshi-img img { width: 100% !important; height: 100% !important; object-fit: cover !important; }
  .ichoshi-section .ichoshi-name { font-size: 15px !important; }
  .ichoshi-section .ichoshi-sub { font-size: 11px !important; }
  .ichoshi-section .ichoshi-price { font-size: 15px !important; }
  .ichoshi-section .ichoshi-tag { font-size: 10px !important; }
  .ichoshi-section .ichoshi-body { padding: 16px !important; gap: 8px !important; }
}