@charset "UTF-8";
/* ============================================
   熊本県産畳表使用キャンペーン 共通スタイル
   基準幅: 393px / 最大 560px 中央寄せ
============================================ */
:root {
  --green: #0F8142;
  --greenLight: #41A044;
  --bgGreen: #E8F3EA;
  --line: #D9EADE;
  --ink: #0F0F0F;
  --ink2: #2C2E35;
  --red: #FF2E17;
  --blue: #0154AD;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  color: var(--ink);
  background: #d9e6dc;
  line-height: 1.5;
  font-feature-settings: "palt";
}

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

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

ul {
  list-style: none;
}

.siteWrap {
  max-width: 560px;
  margin-inline: auto;
  background: #fff;
  box-shadow: 0 0 24px rgba(0, 0, 0, .12);
  min-height: 100vh;
}

.siteWrap.wrapGreen {
  background: var(--bgGreen);
}

/* 共通パーツ: 丸矢印 */
.circleArrow {
  flex: none;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: var(--green);
  display: grid;
  place-items: center;
}

.circleArrow svg {
  width: 11px;
  height: 11px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.circleArrowSmall {
  flex: none;
  margin-left: auto;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
}

.circleArrowSmall svg {
  width: 8px;
  height: 8px;
  stroke: var(--green);
  fill: none;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* 地区見出し・地区ボタン共通 */
.areaBar {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--green);
  border-radius: 8px;
  padding: 10px 13px;
  color: #fff;
  font-weight: 700;
  font-size: clamp(14px, 3.8vw, 15px);
  letter-spacing: .02em;
  line-height: 1.3;
}

.areaBar .iconPin {
  flex: none;
  width: 19px;
  height: 19px;
  fill: #fff;
}

/* ============================================
   index.php
============================================ */
.fv img {
  width: 100%;
}

.periodSection {
  background: #fff;
  padding: 0 clamp(13px, 3.8vw, 15px) clamp(16px, 5vw, 20px);
}

.periodCard {
  background: #fff;
  border: 3px solid var(--greenLight);
  border-radius: 11px;
  box-shadow: 3px 4px 4px rgba(0, 0, 0, .18);
  padding: clamp(12px, 3.6vw, 14px) clamp(16px, 5.8vw, 23px);
}

.periodCard h2 {
  color: var(--green);
  font-size: clamp(20px, 6.1vw, 24px);
  font-weight: 700;
  line-height: 1.3;
}

.periodDate {
  margin-top: clamp(4px, 1.5vw, 6px);
  font-weight: 700;
  font-size: clamp(11px, 3.6vw, 14px);
  line-height: 1.2;
  white-space: nowrap;
}

.periodDate .num {
  font-size: clamp(19px, 7.1vw, 28px);
  letter-spacing: -.01em;
}

.periodDate .small {
  font-size: clamp(9px, 3.1vw, 12px);
}

.shopsSection {
  background: var(--bgGreen);
  padding: clamp(24px, 7.1vw, 28px) clamp(14px, 3.8vw, 15px) clamp(44px, 15vw, 60px);
}

.shopsLead {
  color: var(--green);
  font-weight: 700;
  font-size: clamp(16px, 4.6vw, 18px);
  line-height: 1.2;
  padding-inline: clamp(6px, 1.9vw, 8px);
}

.shopsTitle {
  color: var(--green);
  font-weight: 700;
  font-size: clamp(21px, 6.1vw, 24px);
  line-height: 1.3;
  margin-top: 2px;
  padding-inline: clamp(6px, 1.9vw, 8px);
}

.shopsNote {
  margin-top: clamp(6px, 2vw, 8px);
  color: var(--ink2);
  font-weight: 500;
  font-size: clamp(11px, 3.2vw, 12.6px);
  line-height: 1.25;
  padding-left: calc(1em + clamp(6px, 1.9vw, 8px));
  padding-right: clamp(6px, 1.9vw, 8px);
  text-indent: -1em;
}

.shopListLink {
  margin-top: clamp(12px, 3.8vw, 15px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: #fff;
  border-radius: 14px;
  outline: 3px solid var(--greenLight);
  outline-offset: -3px;
  box-shadow: 3px 4px 8px rgba(0, 0, 0, .18);
  padding: clamp(19px, 6vw, 23.5px) clamp(18px, 6.1vw, 24px);
  transition: opacity .2s;
}

.shopListLink:hover {
  opacity: .85;
}

.shopListLinkLabel {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-weight: 700;
  font-size: clamp(19px, 5.6vw, 22px);
  letter-spacing: .03em;
  line-height: 1.3;
}

.shopListLinkLabel svg {
  flex: none;
  width: 28px;
  height: 28px;
  fill: var(--green);
}

.areaList {
  margin-top: clamp(16px, 5.1vw, 20px);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.areaList a.areaBar {
  transition: opacity .2s;
}

.areaList a.areaBar:hover {
  opacity: .85;
}

/* ============================================
   shoplist.html
============================================ */
.shoplistMain {
  padding: clamp(28px, 10.9vw, 43px) clamp(14px, 4vw, 16px) 0;
}

.listCard {
  background: #fff;
  border-radius: 14px;
  outline: 3px solid var(--greenLight);
  outline-offset: -3px;
  box-shadow: 3px 4px 8px rgba(0, 0, 0, .18);
  padding: clamp(16px, 5.1vw, 20px) clamp(12px, 3.6vw, 14px) clamp(20px, 6.1vw, 24px);
  margin-bottom: 8%;
}

.listTitle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-weight: 700;
  font-size: clamp(19px, 5.6vw, 22px);
  letter-spacing: .03em;
  line-height: 1.3;
}

.listTitle svg {
  flex: none;
  width: 28px;
  height: 28px;
  fill: var(--green);
}

.listNote {
  margin-top: clamp(2px, .8vw, 3px);
  font-size: clamp(11px, 3vw, 12px);
  padding-left: 2px;
}

.areaSection {
  margin-top: 24px;
  scroll-margin-top: 12px;
}

.areaSection:first-of-type {
  margin-top: 10px;
}

.shopList {
  margin-top: 9px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.shopCard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .07);
  padding: 10px 15px;
}

.shopName {
  font-size: clamp(14px, 3.8vw, 15px);
  font-weight: 700;
  line-height: 1.4;
}

.shopMeta {
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.shopRow a {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: clamp(12px, 3.3vw, 13px);
  line-height: 1.45;
  transition: color .2s;
}

.shopRow a:hover {
  color: var(--green);
}

.shopRow svg {
  flex: none;
  width: 16px;
  height: 16px;
  margin-top: 1px;
  fill: var(--green);
}

/* フッター */
.footerBar {
  background: var(--greenLight);
  color: #fff;
  text-align: center;
  padding: 6px 10px;
}

.footerTitle {
  font-weight: 700;
  font-size: clamp(12px, 3.4vw, 13.5px);
  line-height: 1.35;
}

.footerSub {
  margin-top: 1px;
  font-size: clamp(9px, 2.6vw, 10px);
  line-height: 1.35;
}

.footerNote {
  color: var(--ink2);
  font-size: clamp(9.5px, 2.8vw, 11px);
  line-height: 1.7;
  text-align: right;
  padding: 12px 16px 14px;
}
