/*!
Theme Name: Sakura Hyakkaten
Theme URI: https://example.com/
Author: Nyandesign
Author URI: https://example.com/
Description: Sakura Hyakkaten custom WordPress theme.
Version: 0.1.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
Text Domain: sakura-hyakkaten
*/
:root {
  --color-ink: #1f1b19;
  --color-muted: #716a66;
  --color-paper: #ffffff;
  --color-soft: #f7f6f3;
  --color-line: #ebe7e1;
  --color-pink: #eaabb8;
  --color-blue: #405f79;
  --color-green: #b3cbaf;
  --font-sans: "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --font-serif: "EB Garamond", "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-paper);
  color: var(--color-ink);
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 2;
}

.site-wrapper {
  overflow: hidden;
  width: 100%;
}

.grecaptcha-badge {
  visibility: hidden;
}

.is-contact-page .grecaptcha-badge {
  visibility: visible;
}

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

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

.js-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.js-reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

@keyframes loadFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .js-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .top-hero__content,
  .top-hero__visual,
  .shop-guide-title h1,
  .company-overview-title h1,
  .contact-title h1,
  .category-title h1,
  .single-news-title h1,
  .privacy-policy-title h1,
  .not-found-title h1 {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
.screen-reader-text,
.skip-link {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  width: 1px;
}

.skip-link:focus {
  clip: auto;
  height: auto;
  left: 16px;
  padding: 10px 16px;
  top: 16px;
  width: auto;
  z-index: 1000;
  background: #fff;
}

.container,
.front-container {
  margin: 0 auto;
  max-width: 1220px;
  padding: 0 24px;
  width: 100%;
}

.site-header {
  backdrop-filter: blur(14px) saturate(135%);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 8px 28px rgba(31, 27, 25, 0.06);
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
  -webkit-backdrop-filter: blur(14px) saturate(135%);
  z-index: 60;
}

.admin-bar .site-header {
  top: 32px;
}

.home .site-footer {
  display: none;
}

.home .site-header {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-100%);
  visibility: hidden;
}

.home .site-header.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.site-main {
  padding-top: 80px;
}

.home .site-main {
  padding-top: 0;
}

.site-header__inner,
.site-footer__inner {
  align-items: center;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: none;
  padding: 14px 24px;
}

.site-branding img {
  height: 50px;
  width: auto;
}

.site-header__links {
  display: flex;
  font-size: 18px;
  gap: 34px;
  line-height: 1;
  margin-left: auto;
}

.site-header__colors {
  display: flex;
  gap: 8px;
}

.site-header__color {
  border-radius: 50%;
  display: block;
  height: 30px;
  width: 30px;
}

.site-header__color--pink {
  background: var(--color-pink);
}

.site-header__color--blue {
  background: var(--color-blue);
}

.site-header__color--green {
  background: var(--color-green);
}

.site-footer__nav ul {
  display: flex;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-toggle {
  background: transparent;
  border: 0;
  cursor: pointer;
  display: block;
  height: 42px;
  padding: 8px;
  width: 61px;
  z-index: 62;
}

.nav-toggle__bar,
.nav-toggle__bar::before,
.nav-toggle__bar::after {
  background: var(--color-ink);
  content: "";
  display: block;
  height: 1px;
  transition: background-color 0.22s ease, transform 0.28s ease;
  width: 45px;
}

.nav-toggle__bar {
  background: transparent;
  position: relative;
}

.nav-toggle__bar::before,
.nav-toggle__bar::after {
  left: 0;
  position: absolute;
  transform-origin: center;
}

.nav-toggle__bar::before {
  transform: translateY(-4px);
}

.nav-toggle__bar::after {
  transform: translateY(4px);
}

.nav-toggle[aria-expanded=true] .nav-toggle__bar {
  background: transparent;
}

.nav-toggle[aria-expanded=true] .nav-toggle__bar::before {
  transform: translateY(0) rotate(35deg);
}

.nav-toggle[aria-expanded=true] .nav-toggle__bar::after {
  transform: translateY(0) rotate(-35deg);
}

.site-nav {
  background: #fff;
  box-shadow: 0 10px 34px rgba(31, 27, 25, 0.1);
  display: block;
  height: 100vh;
  overflow-y: auto;
  padding: 92px 86px 74px;
  position: fixed;
  right: 0;
  top: 0;
  transform: translateX(100%);
  transition: transform 0.36s ease, visibility 0.36s ease;
  visibility: hidden;
  width: clamp(360px, 39vw, 750px);
  z-index: 61;
}

.site-nav.is-open {
  transform: translateX(0);
  visibility: visible;
}

.site-nav__brand {
  margin: 0 auto 22px;
  text-align: center;
}

.site-nav__brand img {
  display: block;
  height: auto;
  margin: 0 auto;
  width: 150px;
}

.site-nav__links,
.site-nav__links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav__links > li {
  border-bottom: 1px solid var(--color-line);
}

.site-nav__links > li:first-child {
  border-top: 1px solid var(--color-line);
}

.site-nav__links > li > a {
  display: grid;
  font-size: 16px;
  gap: 28px;
  grid-template-columns: 250px 1fr;
  padding: 18px 0;
}

.site-nav__links span {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.1;
}

.site-nav__links ul {
  font-size: 16px;
  line-height: 2.1;
  margin: -4px 0 20px 278px;
}

.site-nav__footer {
  margin-top: 88px;
  text-align: center;
}

.site-nav__footer p {
  font-size: 16px;
  line-height: 2;
  margin: 0 0 28px;
}

.site-nav__footer .pill-button {
  min-height: 50px;
  min-width: 220px;
}

.front-page {
  background: #fff;
  overflow: hidden;
}

.side-shop {
  align-items: center;
  background: #050505;
  color: #fff;
  display: grid;
  font-family: var(--font-serif);
  font-size: 10px;
  gap: 8px;
  justify-content: center;
  letter-spacing: 0.08em;
  padding: 18px 0 16px;
  position: fixed;
  right: 0;
  top: 420px;
  transform: none;
  width: 36px;
  z-index: 40;
}

.side-shop__cart {
  background: #fff;
  display: block;
  height: 16px;
  margin: 0 auto;
  mask: url("assets/images/cart.svg") center/20px 16px no-repeat;
  -webkit-mask: url("assets/images/cart.svg") center/20px 16px no-repeat;
  width: 20px;
}

.side-shop > span:not(.side-shop__cart) {
  text-orientation: mixed;
  writing-mode: vertical-rl;
}

.top-hero {
  display: grid;
  grid-template-columns: 620px 1000px;
  gap: 22px;
  margin: 104px auto 0;
  max-width: 1762px;
  padding: 0 70px;
}

.top-hero__content {
  align-items: center;
  animation: loadFadeUp 0.9s ease 0.12s both;
  display: flex;
  flex-direction: column;
  padding-top: 54px;
  text-align: center;
}

.top-hero__brand img {
  height: auto;
  margin: 0 auto;
  width: 200px;
}

.top-hero__brand p {
  font-size: 24px;
  letter-spacing: 0.18em;
  margin: 100px 0 0;
}

.top-hero__brand rt {
  font-size: 9px;
  letter-spacing: 0;
}

.top-hero__nav {
  align-items: flex-start;
  display: flex;
  gap: 36px;
  justify-content: center;
  margin-top: 64px;
}

.top-hero__nav a {
  font-size: 18px;
  letter-spacing: 0.18em;
  line-height: 1;
  text-orientation: mixed;
  writing-mode: vertical-rl;
}

.top-hero__links {
  display: flex;
  gap: 22px;
  margin-top: 72px;
}

.top-hero__circle {
  align-items: center;
  border-radius: 50%;
  color: #fff;
  display: flex;
  height: 100px;
  justify-content: center;
  width: 100px;
}

.top-hero__circle-logo {
  background: #fff;
  display: block;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
}

.top-hero__circle-logo--sakura {
  height: 46px;
  mask-image: url("assets/images/sakura-hyakkaten.svg");
  -webkit-mask-image: url("assets/images/sakura-hyakkaten.svg");
  width: 60px;
}

.top-hero__circle-logo--hakko {
  height: 38px;
  mask-image: url("assets/images/hakko-plus.svg");
  -webkit-mask-image: url("assets/images/hakko-plus.svg");
  width: 60px;
}

.top-hero__circle-logo--wakinodatei {
  height: 34px;
  mask-image: url("assets/images/wakinodatei.svg");
  -webkit-mask-image: url("assets/images/wakinodatei.svg");
  width: 62px;
}

.top-hero__circle--pink {
  background: var(--color-pink);
}

.top-hero__circle--blue {
  background: var(--color-blue);
}

.top-hero__circle--green {
  background: var(--color-green);
}

.top-hero__visual img {
  height: 800px;
  object-fit: cover;
  width: 1000px;
}

.top-hero__visual {
  animation: loadFadeUp 1s ease 0.3s both;
}

.front-section {
  padding: 145px 0 0;
}

.about-section__grid {
  display: grid;
  grid-template-columns: 330px minmax(0, 620px);
  gap: 170px;
  max-width: 1110px;
}

.section-title p {
  font-family: var(--font-serif);
  font-size: 40px;
  line-height: 1.2;
  margin: 0;
}

.section-title h1,
.section-title h2 {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.7;
  margin: 14px 0 0;
}

.section-title--center {
  text-align: center;
}

.about-section__text {
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 2.25;
}

.about-section__text p {
  margin: 0 0 22px;
}

.brand-card-grid {
  display: grid;
  gap: 70px;
  grid-template-columns: repeat(3, 450px);
  justify-content: center;
  margin-top: 142px;
  max-width: 1538px;
}

.brand-card {
  display: block;
  overflow: hidden;
  transition: transform 0.25s ease, opacity 0.25s ease;
  width: 450px;
}

.brand-card.js-reveal {
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.brand-card:hover {
  opacity: 0.86;
  transform: translateY(-4px);
}

.brand-card__photo {
  height: 300px;
  object-fit: cover;
  width: 450px;
}

.brand-card__body {
  align-items: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  height: 250px;
  justify-content: center;
  padding: 38px 28px;
  text-align: center;
  width: 450px;
}

.brand-card__logo {
  background: #fff;
  display: block;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
}

.brand-card__logo--sakura {
  aspect-ratio: 500/376;
  mask-image: url("assets/images/sakura-hyakkaten.svg");
  -webkit-mask-image: url("assets/images/sakura-hyakkaten.svg");
  width: 136px;
}

.brand-card__logo--hakko {
  aspect-ratio: 500/260;
  mask-image: url("assets/images/hakko-plus.svg");
  -webkit-mask-image: url("assets/images/hakko-plus.svg");
  width: 122px;
}

.brand-card__logo--wakinodatei {
  aspect-ratio: 500/212;
  mask-image: url("assets/images/wakinodatei.svg");
  -webkit-mask-image: url("assets/images/wakinodatei.svg");
  width: 144px;
}

.brand-card__body > span:not(.brand-card__logo) {
  display: block;
  font-size: 13px;
  letter-spacing: 0.08em;
  line-height: 1.8;
  margin-top: 24px;
}

.brand-card--sakura .brand-card__body {
  background: var(--color-pink);
}

.brand-card--hakko .brand-card__body {
  background: var(--color-blue);
}

.brand-card--wakinodatei .brand-card__body {
  background: var(--color-green);
}

.shop-section {
  padding-top: 180px;
  text-align: center;
}

.shop-section__inner {
  max-width: 920px;
}

.shop-section__illust {
  margin: 78px auto 42px;
  width: 950px;
}

.shop-section__lead {
  font-weight: 700;
  margin: 0 0 30px;
}

.shop-section p {
  letter-spacing: 0.08em;
  margin-left: auto;
  margin-right: auto;
  max-width: 820px;
}

.pill-button {
  align-items: center;
  background: #050505;
  border: 1px solid #050505;
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-family: var(--font-sans);
  font-size: 12px;
  justify-content: center;
  letter-spacing: 0.08em;
  line-height: 1;
  margin-top: 28px;
  min-height: 50px;
  min-width: 138px;
  padding: 0 26px;
}

.products-band-wrap {
  margin-top: 92px;
  position: relative;
}

.products-band {
  height: 420px;
  overflow: hidden;
  position: relative;
}

.products-slider {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  z-index: 1;
}

.products-slider .slick-track {
  align-items: flex-end;
  display: flex;
}

.products-slider__item {
  height: 230px;
  padding: 0 24px;
  width: auto;
}

.products-slider__item img {
  max-height: 100%;
  width: auto;
}

.products-band-wrap > span {
  bottom: -38px;
  color: rgba(204, 120, 141, 0.66);
  font-size: clamp(46px, 8vw, 118px);
  letter-spacing: 0.02em;
  line-height: 0.9;
  position: absolute;
  right: 0;
  white-space: nowrap;
  z-index: 2;
}

.products-band-wrap > span.js-reveal {
  transform: translateY(22px);
}

.products-band-wrap > span.js-reveal.is-revealed {
  transform: translateY(0);
}

.pb-section {
  padding-bottom: 140px;
}

.pb-card-grid {
  display: grid;
  gap: 70px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 90px auto 0;
  max-width: 1320px;
}

.pb-card {
  background: #fff;
  display: grid;
  grid-template-rows: auto 1fr;
}

.pb-card__visual {
  align-items: center;
  display: flex;
  justify-content: center;
  margin: 0;
  overflow: hidden;
}

.pb-card__visual img {
  height: auto;
  width: 100%;
}

.pb-card__body {
  border: 1px solid var(--color-line);
  border-top: 0;
  padding: 54px 56px 58px;
  text-align: center;
}

.pb-card__logo__area {
  align-items: center;
  display: flex;
  height: 120px;
  justify-content: center;
  margin: 0 auto 36px;
  width: fit-content;
}

.pb-card__logo {
  height: auto;
  margin: 0 auto;
  max-width: 100%;
}

.pb-card__logo--tabitomo {
  width: 180px;
}

.pb-card__logo--shunkashuto {
  width: 70px;
}

.pb-card__lead {
  font-size: 18px;
  letter-spacing: 0.08em;
  line-height: 1.8;
  margin: 0 0 28px;
}

.pb-card__text {
  font-size: 14px;
  letter-spacing: 0.08em;
  line-height: 2;
  text-align: left;
}

.pb-card__text p {
  margin: 0 0 18px;
}

.pb-card__text p:last-child {
  margin-bottom: 0;
}

.news-section {
  background: var(--color-soft);
  margin-top: 96px;
  padding: 190px 0 118px;
}

.news-section__grid {
  display: grid;
  grid-template-columns: 230px minmax(0, 760px);
  gap: 90px;
  max-width: 1040px;
}

.news-list {
  text-align: center;
}

.news-list__item {
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  display: grid;
  font-size: 13px;
  gap: 22px;
  grid-template-columns: 74px 108px minmax(0, 1fr) 20px;
  min-height: 54px;
  text-align: left;
}

.news-list__label {
  background: #fff;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 9px;
  justify-self: start;
  line-height: 1;
  padding: 6px 12px;
}

.news-list time {
  font-family: var(--font-sans);
  font-size: 11px;
}

.news-list i {
  color: #a9a29c;
  font-style: normal;
  justify-self: end;
}

.front-footer-section {
  background-color: var(--color-soft);
  background-image: url("assets/images/footerbg.webp");
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  padding: 100px 90px 350px;
}

.front-footer-card {
  background: #fff;
  box-shadow: 0 6px 28px rgba(31, 27, 25, 0.08);
  display: grid;
  gap: 55px;
  grid-template-columns: 280px 390px minmax(0, 350px) 420px;
  margin: 0 auto;
  max-width: 1730px;
  padding: 92px 64px 52px;
  position: relative;
  z-index: 1;
}

.front-footer-card__brand {
  align-items: center;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.front-footer-card__brand img {
  width: 178px;
}

.front-footer-card__brand p {
  margin: 28px 0 0;
}

.front-footer-card__brand p,
.front-footer-card__store p,
.front-footer-card__links a,
.front-footer-card__links ul {
  font-size: 12px;
  line-height: 1.8;
}

.front-footer-card__brand .pill-button {
  margin-top: 24px;
  min-height: 40px;
  min-width: 200px;
}

.front-footer-card__links {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 390px;
}

.front-footer-card__links > li {
  border-bottom: 1px solid var(--color-line);
}

.front-footer-card__links > li:first-child {
  border-top: 1px solid var(--color-line);
}

.front-footer-card__links a {
  display: grid;
  gap: 18px;
  grid-template-columns: 210px 1fr;
  padding: 12px 0;
}

.front-footer-card__links span {
  font-size: 22px;
  line-height: 1.2;
}

.front-footer-card__links ul {
  list-style: none;
  margin: -4px 0 12px 210px;
  padding: 0;
}

.front-footer-card__links ul a {
  display: block;
  padding: 3px 0;
}

.front-footer-card__store {
  margin: 0 0 22px;
}

.front-footer-card__store h2 {
  align-items: center;
  display: flex;
  font-size: 12px;
  font-weight: 700;
  gap: 8px;
  line-height: 1.7;
  margin: 0 0 6px;
}

.front-footer-card__store h2 a {
  display: inline-flex;
  height: 28px;
  width: 28px;
}

.front-footer-card__store h2 img {
  height: 28px;
  width: 28px;
}

.front-footer-card__store p {
  margin: 0;
}

.front-footer-card__map {
  align-self: start;
  border: 0;
  display: block;
  filter: grayscale(100%);
  height: 365px;
  width: 100%;
}

.copyright {
  background: #fff;
  box-shadow: 0 18px 28px rgba(31, 27, 25, 0.08);
  font-size: 10px;
  margin: 0 auto;
  max-width: 1730px;
  padding: 0 0 28px;
  position: relative;
  text-align: center;
  z-index: 1;
}

.shop-guide-page {
  background: #fff;
  padding: 70px 0 170px;
}

.shop-guide-title {
  margin: 0 auto 88px;
  max-width: 1320px;
  padding: 0;
}

.shop-guide-title p {
  color: var(--color-muted);
  font-family: var(--font-serif);
  font-size: 24px;
  line-height: 1.2;
  margin: 0 0 4px;
}

.shop-guide-title h1 {
  animation: loadFadeUp 0.8s ease 0.12s both;
  display: inline-block;
  font-size: 42px;
  font-weight: 400;
  line-height: 1.35;
  margin: 0;
  position: relative;
}

.shop-guide-title h1::after {
  background: var(--color-line);
  content: "";
  display: block;
  height: 10px;
  margin-top: 10px;
  width: 100%;
}

.shop-guide-store {
  margin: 0 auto 158px;
  max-width: 1320px;
  padding: 0;
  scroll-margin-top: 110px;
}

.shop-guide-store__accent {
  border-radius: 50%;
  display: block;
  height: 58px;
  margin: 0 auto 62px;
  width: 58px;
}

.shop-guide-store--pink .shop-guide-store__accent {
  background: var(--color-pink);
}

.shop-guide-store--blue .shop-guide-store__accent {
  background: var(--color-blue);
}

.shop-guide-store--green .shop-guide-store__accent {
  background: var(--color-green);
}

.shop-guide-store__main {
  align-items: center;
  display: grid;
  gap: 0;
  grid-template-columns: 550px minmax(0, 520px);
  justify-content: space-between;
  width: 100%;
}

.shop-guide-store__photo img {
  height: 800px;
  object-fit: cover;
  width: 550px;
}

.shop-guide-store__content {
  text-align: center;
}

.shop-guide-store__logo {
  margin: 0 auto 42px;
  max-height: 122px;
  width: 190px;
}

.shop-guide-store--blue .shop-guide-store__logo {
  width: 178px;
}

.shop-guide-store--green .shop-guide-store__logo {
  width: 210px;
}

.shop-guide-store__content h2 {
  font-size: 20px;
  font-weight: 400;
  margin: 0 0 34px;
}

.shop-guide-store__text,
.shop-guide-store__address {
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 2.15;
  text-align: left;
}

.shop-guide-store__text p {
  margin: 0 0 20px;
}

.shop-guide-store__address {
  margin-top: 48px;
}

.shop-guide-store__address p {
  margin: 0;
}

.instagram-button {
  align-items: center;
  background: #000;
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-family: var(--font-serif);
  font-size: 12px;
  gap: 8px;
  justify-content: center;
  line-height: 1;
  margin-top: 26px;
  height: 50px;
  min-height: 50px;
  min-width: 170px;
  padding: 0 22px;
}

.instagram-button img {
  filter: invert(1);
  height: 16px;
  width: 16px;
}

.shop-guide-store__button {
  height: 50px;
  margin-top: 32px;
  min-width: 220px;
}

.shop-guide-gallery {
  align-items: flex-end;
  display: flex;
  gap: 8px;
  justify-content: space-between;
  margin: 54px 0 0;
  max-width: 1320px;
  position: relative;
}

.shop-guide-gallery img {
  height: 260px;
  width: auto;
}

.shop-guide-gallery span {
  bottom: -52px;
  font-family: var(--font-serif);
  font-size: 110px;
  font-weight: 400;
  left: 50%;
  letter-spacing: 0.02em;
  line-height: 0.8;
  position: absolute;
  transform: translateX(-50%);
  white-space: nowrap;
  z-index: 2;
}

.shop-guide-gallery span.js-reveal {
  transform: translateX(-50%) translateY(22px);
}

.shop-guide-gallery span.js-reveal.is-revealed {
  transform: translateX(-50%) translateY(0);
}

.shop-guide-store--pink .shop-guide-gallery span {
  color: rgba(234, 171, 184, 0.7);
}

.shop-guide-store--blue .shop-guide-gallery span {
  color: rgba(64, 95, 121, 0.72);
}

.shop-guide-store--green .shop-guide-gallery span {
  color: rgba(201, 230, 185, 0.78);
}

.shop-guide-store--pink .shop-guide-store__button {
  margin-top: 34px;
}

.company-overview-page {
  background: #fff;
  padding: 70px 0 0;
}

.company-overview-title {
  margin: 0 auto 128px;
  max-width: 1320px;
  padding: 0;
}

.company-overview-title p {
  color: var(--color-muted);
  font-family: var(--font-serif);
  font-size: 24px;
  letter-spacing: 0.08em;
  line-height: 1.2;
  margin: 0 0 4px;
}

.company-overview-title h1 {
  animation: loadFadeUp 0.8s ease 0.12s both;
  display: inline-block;
  font-size: 42px;
  font-weight: 400;
  line-height: 1.35;
  margin: 0;
}

.company-overview-title h1::after {
  background: var(--color-line);
  content: "";
  display: block;
  height: 10px;
  margin-top: 10px;
  width: 100%;
}

.company-overview-hero {
  margin: 0 auto 150px;
  max-width: 1320px;
  position: relative;
}

.company-overview-hero img {
  height: 540px;
  object-fit: cover;
  width: 100%;
}

.company-overview-hero__colors {
  bottom: -21px;
  display: flex;
  gap: 8px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
}

.company-overview-hero__color {
  border-radius: 50%;
  height: 30px;
  width: 30px;
}

.company-overview-hero__color--pink {
  background: var(--color-pink);
}

.company-overview-hero__color--blue {
  background: var(--color-blue);
}

.company-overview-hero__color--green {
  background: var(--color-green);
}

.company-overview-body {
  align-items: start;
  display: grid;
  gap: 120px;
  grid-template-columns: 520px 520px;
  justify-content: center;
  margin: 0 auto 150px;
  max-width: 1320px;
}

.company-overview-table-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.company-overview-table {
  border-collapse: separate;
  border-spacing: 0 15px;
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 1.8;
  width: 100%;
}

.company-overview-table th,
.company-overview-table td {
  font-weight: 400;
  padding: 0;
  text-align: left;
  vertical-align: top;
}

.company-overview-table th {
  background: var(--color-soft);
  font-size: 14px;
  padding: 7px 16px;
  width: 150px;
}

.company-overview-table td {
  padding: 7px 0 7px 32px;
}

.company-overview-table p {
  margin: 0;
}

.company-overview-table__button {
  height: 50px;
  margin: 10px auto 0;
  min-width: 220px;
}

.company-overview-map iframe {
  border: 0;
  filter: grayscale(100%);
  height: 320px;
  width: 100%;
}

.company-overview-online {
  align-items: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  height: 610px;
  justify-content: center;
  margin-top: 0;
  position: relative;
  text-align: center;
}

.company-overview-online::before {
  background: rgba(0, 0, 0, 0.06);
  content: "";
  inset: 0;
  position: absolute;
}

.company-overview-online p {
  color: #fff;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.82)) drop-shadow(0 0 3px rgba(0, 0, 0, 0.7));
  font-size: 32px;
  letter-spacing: 0.22em;
  line-height: 1.8;
  margin: 58px 0 58px;
  position: relative;
  writing-mode: vertical-rl;
  z-index: 1;
}

.company-overview-online rt {
  font-size: 10px;
}

.company-overview-online__button {
  background: #fff;
  color: var(--color-ink);
  height: 50px;
  min-width: 220px;
  position: relative;
  z-index: 1;
}

.contact-page {
  background: #fff;
  padding: 70px 0 170px;
}

.contact-title {
  margin: 0 auto 116px;
  max-width: 1320px;
  padding: 0;
}

.contact-title p {
  color: var(--color-muted);
  font-family: var(--font-serif);
  font-size: 24px;
  letter-spacing: 0.08em;
  line-height: 1.2;
  margin: 0 0 4px;
}

.contact-title h1 {
  animation: loadFadeUp 0.8s ease 0.12s both;
  display: inline-block;
  font-size: 42px;
  font-weight: 400;
  line-height: 1.35;
  margin: 0;
}

.contact-title h1::after {
  background: var(--color-line);
  content: "";
  display: block;
  height: 10px;
  margin-top: 10px;
  width: 100%;
}

.contact-form-section {
  margin: 0 auto;
  max-width: 820px;
  padding: 0 24px;
}

.contact-form-section .wpcf7-form {
  display: grid;
  gap: 28px;
}

.contact-form__field {
  display: grid;
  gap: 10px;
}

.contact-form__label {
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 1.7;
}

.contact-form__label::after {
  color: var(--color-pink);
  content: " *";
}

.contact-form__label--optional::after {
  content: "";
}

.contact-form-section input[type=text],
.contact-form-section input[type=email],
.contact-form-section input[type=tel],
.contact-form-section textarea {
  background: var(--color-soft);
  border: 1px solid var(--color-line);
  border-radius: 0;
  color: var(--color-ink);
  font: inherit;
  letter-spacing: 0.06em;
  padding: 11px 16px;
  width: 100%;
}

.contact-form__radio .wpcf7-form-control {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.contact-form__radio .wpcf7-list-item {
  margin: 0;
}

.contact-form__radio label {
  align-items: center;
  display: inline-flex;
  gap: 10px;
  line-height: 1.8;
}

.contact-form__radio input[type=radio] {
  accent-color: var(--color-ink);
  height: 18px;
  width: 18px;
}

.contact-form-section textarea {
  min-height: 220px;
  resize: vertical;
}

.contact-form__privacy {
  font-size: 14px;
  letter-spacing: 0.08em;
  line-height: 1.8;
  text-align: center;
}

.contact-form__privacy .wpcf7-list-item {
  margin: 0;
}

.contact-form__privacy label {
  align-items: center;
  display: inline-flex;
  gap: 10px;
}

.contact-form__privacy input[type=checkbox] {
  accent-color: var(--color-ink);
  height: 18px;
  width: 18px;
}

.contact-form__submit {
  text-align: center;
}

.contact-form-section input[type=submit],
.contact-form-section button[type=submit] {
  align-items: center;
  background: #000;
  border: 0;
  border-radius: 999px;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  height: 50px;
  justify-content: center;
  letter-spacing: 0.08em;
  min-width: 220px;
  padding: 0 34px;
  transition: opacity 0.2s ease;
}

.contact-form-section input[type=submit]:disabled,
.contact-form-section button[type=submit]:disabled {
  cursor: not-allowed;
  opacity: 0.35;
}

.contact-form-section .wpcf7-not-valid-tip {
  color: #b64256;
  font-size: 12px;
  margin-top: 6px;
}

.contact-form-section .wpcf7-response-output {
  border-color: var(--color-line);
  font-size: 14px;
  margin: 0;
  padding: 16px 18px;
  text-align: center;
}

.category-page {
  background: #fff;
  padding: 70px 0 170px;
}

.category-title {
  margin: 0 auto 116px;
  max-width: 1320px;
  padding: 0;
}

.category-title p {
  color: var(--color-muted);
  font-family: var(--font-serif);
  font-size: 24px;
  letter-spacing: 0.08em;
  line-height: 1.2;
  margin: 0 0 4px;
}

.category-title h1 {
  animation: loadFadeUp 0.8s ease 0.12s both;
  display: inline-block;
  font-size: 42px;
  font-weight: 400;
  line-height: 1.35;
  margin: 0;
}

.category-title h1::after {
  background: var(--color-line);
  content: "";
  display: block;
  height: 10px;
  margin-top: 10px;
  width: 100%;
}

.category-news-section {
  margin: 0 auto;
  max-width: 1040px;
  padding: 0 24px;
}

.category-news-list {
  text-align: center;
}

.category-news-list__item {
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  display: grid;
  font-size: 14px;
  gap: 22px;
  grid-template-columns: 86px 116px minmax(0, 1fr) 20px;
  min-height: 66px;
  text-align: left;
}

.category-news-list__item:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.category-news-list__label {
  background: var(--color-soft);
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 10px;
  justify-self: start;
  line-height: 1;
  padding: 7px 13px;
}

.category-news-list time {
  font-family: var(--font-sans);
  font-size: 12px;
}

.category-news-list i {
  font-family: var(--font-serif);
  font-size: 18px;
  font-style: normal;
  justify-self: end;
}

.pagination-nav {
  margin-top: 64px;
  text-align: center;
}

.pagination-nav .nav-links {
  align-items: center;
  display: flex;
  gap: 10px;
  justify-content: center;
}

.pagination-nav .page-numbers {
  align-items: center;
  border: 1px solid var(--color-line);
  border-radius: 50%;
  display: inline-flex;
  font-family: var(--font-serif);
  height: 42px;
  justify-content: center;
  line-height: 1;
  width: 42px;
}

.pagination-nav .page-numbers.current {
  background: #000;
  border-color: #000;
  color: #fff;
}

.category-empty {
  background: var(--color-soft);
  font-size: 14px;
  letter-spacing: 0.08em;
  padding: 48px 32px;
  text-align: center;
}

.single-news-page {
  background: #fff;
  padding: 70px 0 170px;
}

.single-news-title {
  margin: 0 auto 88px;
  max-width: 1040px;
  padding: 0 24px;
}

.single-news-title > p {
  color: var(--color-muted);
  font-family: var(--font-serif);
  font-size: 24px;
  letter-spacing: 0.08em;
  line-height: 1.2;
  margin: 0 0 22px;
}

.single-news-title__meta {
  align-items: center;
  display: flex;
  font-family: var(--font-sans);
  font-size: 12px;
  gap: 14px;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

.single-news-title__meta span {
  background: var(--color-soft);
  border-radius: 999px;
  font-size: 10px;
  line-height: 1;
  padding: 7px 13px;
}

.single-news-title h1 {
  animation: loadFadeUp 0.8s ease 0.12s both;
  display: inline-block;
  font-size: 34px;
  font-weight: 400;
  line-height: 1.55;
  margin: 0;
}

.single-news-title h1::after {
  background: var(--color-line);
  content: "";
  display: block;
  height: 10px;
  margin-top: 14px;
  width: 100%;
}

.single-news-hero {
  margin: 0 auto 72px;
  max-width: 1040px;
  padding: 0 24px;
}

.single-news-hero img {
  height: auto;
  width: 100%;
}

.single-news-content {
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 2.2;
  margin: 0 auto;
  max-width: 820px;
  padding: 0 24px;
}

.single-news-content > *:first-child {
  margin-top: 0;
}

.single-news-content p {
  margin: 0 0 28px;
}

.single-news-content h2,
.single-news-content h3 {
  font-weight: 400;
  line-height: 1.6;
  margin: 64px 0 24px;
}

.single-news-content h2 {
  font-size: 28px;
}

.single-news-content h3 {
  font-size: 22px;
}

.single-news-content a {
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

.single-news-content img {
  height: auto;
  max-width: 100%;
}

.single-news-back {
  margin-top: 74px;
  text-align: center;
}

.privacy-policy-page {
  background: #fff;
  padding: 70px 0 170px;
}

.privacy-policy-title {
  margin: 0 auto 116px;
  max-width: 1320px;
  padding: 0;
}

.privacy-policy-title p {
  color: var(--color-muted);
  font-family: var(--font-serif);
  font-size: 24px;
  letter-spacing: 0.08em;
  line-height: 1.2;
  margin: 0 0 4px;
}

.privacy-policy-title h1 {
  animation: loadFadeUp 0.8s ease 0.12s both;
  display: inline-block;
  font-size: 42px;
  font-weight: 400;
  line-height: 1.35;
  margin: 0;
}

.privacy-policy-title h1::after {
  background: var(--color-line);
  content: "";
  display: block;
  height: 10px;
  margin-top: 10px;
  width: 100%;
}

.privacy-policy-content {
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 2.2;
  margin: 0 auto;
  max-width: 920px;
  padding: 0 24px;
}

.privacy-policy-content section + section {
  margin-top: 52px;
}

.privacy-policy-content h2 {
  border-bottom: 1px solid var(--color-line);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.6;
  margin: 0 0 20px;
  padding-bottom: 12px;
}

.privacy-policy-content p {
  margin: 0;
}

.not-found-page {
  background: #fff;
  padding: 70px 0 170px;
}

.not-found-title {
  margin: 0 auto 96px;
  max-width: 1320px;
  padding: 0;
}

.not-found-title p {
  color: var(--color-muted);
  font-family: var(--font-serif);
  font-size: 24px;
  letter-spacing: 0.08em;
  line-height: 1.2;
  margin: 0 0 4px;
}

.not-found-title h1 {
  animation: loadFadeUp 0.8s ease 0.12s both;
  display: inline-block;
  font-size: 42px;
  font-weight: 400;
  line-height: 1.35;
  margin: 0;
}

.not-found-title h1::after {
  background: var(--color-line);
  content: "";
  display: block;
  height: 10px;
  margin-top: 10px;
  width: 100%;
}

.not-found-content {
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 2.2;
  margin: 0 auto;
  max-width: 720px;
  padding: 0 24px;
  text-align: center;
}

.not-found-content p {
  margin: 0 auto 18px;
  text-align: left;
}

.page-header {
  background: var(--color-soft);
  padding: 80px 0 64px;
}

.page-header h1,
.section__heading h2 {
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.35;
  margin: 0;
}

.section {
  padding: 80px 0;
}

.content {
  max-width: 820px;
}

.posts-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.post-card,
.empty-state {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  overflow: hidden;
}

.post-card__media {
  align-items: center;
  aspect-ratio: 4/3;
  background: var(--color-soft);
  display: flex;
  justify-content: center;
}

.post-card__media img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.post-card__body,
.empty-state {
  padding: 24px;
}

.site-footer {
  background: var(--color-ink);
  color: #fff;
}

@media (max-width: 900px) {
  body {
    font-size: 12px;
  }
  .site-main {
    padding-top: 62px;
  }
  .site-header__inner {
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
  }
  .site-branding img {
    height: auto;
    width: 108px;
  }
  .site-branding__logo--inline {
    height: 42px;
    width: auto;
  }
  .site-branding img.site-branding__logo--inline {
    height: 42px;
    width: auto;
  }
  .site-header__links {
    display: none;
  }
  .site-header__colors {
    margin-left: auto;
  }
  .site-header__color {
    height: 12px;
    width: 12px;
  }
  .site-nav {
    left: auto;
    padding: 78px 28px 44px;
    right: 0;
    top: 0;
    width: 100%;
  }
  .site-nav__brand {
    margin-bottom: 18px;
  }
  .site-nav__brand img {
    width: 128px;
  }
  .site-nav__links > li > a {
    font-size: 12px;
    gap: 12px;
    grid-template-columns: 140px 1fr;
    padding: 13px 0;
  }
  .site-nav__links span {
    font-size: 15px;
  }
  .site-nav__links ul {
    font-size: 12px;
    line-height: 1.9;
    margin: -2px 0 12px 152px;
  }
  .site-nav__footer p {
    font-size: 14px;
  }
  .side-shop {
    padding: 14px 0 12px;
    top: 252px;
    width: 26px;
  }
  .side-shop__cart {
    height: 12px;
    mask-size: 14px auto;
    -webkit-mask-size: 14px auto;
    width: 14px;
  }
  .top-hero {
    align-items: center;
    display: flex;
    flex-direction: column;
    margin-top: 52px;
    padding: 0 43px;
    text-align: center;
  }
  .top-hero__content {
    display: contents;
    padding-top: 0;
  }
  .top-hero__brand {
    display: contents;
  }
  .top-hero__brand img {
    order: 1;
    width: 112px;
  }
  .top-hero__visual {
    margin: 42px 0 0;
    order: 2;
    width: min(100%, 337px);
  }
  .top-hero__visual img {
    height: 270px;
    object-position: center;
    width: 100%;
  }
  .top-hero__brand p {
    font-size: 15px;
    margin-top: 44px;
    order: 3;
  }
  .top-hero__nav {
    gap: 26px;
    margin-top: 34px;
    order: 4;
  }
  .top-hero__nav a {
    font-size: 13px;
  }
  .top-hero__links {
    gap: 12px;
    margin-top: 34px;
    order: 5;
  }
  .top-hero__circle {
    height: 66px;
    width: 66px;
  }
  .top-hero__circle-logo--sakura {
    height: 32px;
    width: 42px;
  }
  .top-hero__circle-logo--hakko {
    height: 28px;
    width: 42px;
  }
  .top-hero__circle-logo--wakinodatei {
    height: 24px;
    width: 44px;
  }
  .front-section {
    padding-top: 76px;
  }
  .front-container {
    padding-left: 43px;
    padding-right: 43px;
  }
  .about-section__grid,
  .news-section__grid {
    display: block;
  }
  .section-title p {
    font-size: 25px;
  }
  .section-title h1,
  .section-title h2 {
    font-size: 12px;
  }
  .about-section__text {
    font-size: 12px;
    line-height: 2.1;
    margin-top: 28px;
  }
  .brand-card-grid {
    display: block;
    margin-top: 58px;
  }
  .brand-card + .brand-card {
    margin-top: 24px;
  }
  .brand-card {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    width: 300px;
  }
  .brand-card__photo {
    height: auto;
    width: 100%;
  }
  .brand-card__body {
    height: 165px;
    padding: 22px;
    width: 300px;
    max-width: 100%;
  }
  .brand-card__logo--sakura {
    width: 90px;
  }
  .brand-card__logo--hakko {
    width: 82px;
  }
  .brand-card__logo--wakinodatei {
    width: 96px;
  }
  .brand-card__body > span:not(.brand-card__logo) {
    font-size: 10px;
    margin-top: 14px;
  }
  .shop-section {
    padding-top: 80px;
  }
  .shop-section__illust {
    margin: 48px auto 28px;
    width: 238px;
  }
  .shop-section p {
    max-width: 290px;
  }
  .products-band-wrap {
    margin-top: 52px;
  }
  .products-band {
    height: 220px;
  }
  .products-slider__item {
    height: 120px;
    padding: 0 10px;
  }
  .products-band-wrap > span {
    bottom: -32px;
    font-size: 32px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
  .products-band-wrap > span.js-reveal {
    transform: translateX(-50%) translateY(18px);
  }
  .products-band-wrap > span.js-reveal.is-revealed {
    transform: translateX(-50%) translateY(0);
  }
  .pb-section {
    padding-bottom: 76px;
  }
  .pb-card-grid {
    display: block;
    margin-top: 42px;
  }
  .pb-card + .pb-card {
    margin-top: 34px;
  }
  .pb-card__visual {
    height: 160px;
  }
  .pb-card__body {
    padding: 30px 26px 34px;
  }
  .pb-card__logo__area {
    height: auto;
    margin: 0 auto 30px;
    min-height: 70px;
  }
  .pb-card__logo--tabitomo {
    width: 132px;
  }
  .pb-card__logo--shunkashuto {
    width: 60px;
  }
  .pb-card__lead {
    font-size: 12px;
    margin-bottom: 18px;
  }
  .pb-card__text {
    font-size: 11px;
    line-height: 2.05;
  }
  .pb-card__text p {
    margin-bottom: 14px;
  }
  .shop-guide-page {
    padding: 42px 0 92px;
  }
  .shop-guide-title {
    margin: 0 0 72px;
    padding: 0 43px;
  }
  .shop-guide-title p {
    font-size: 12px;
  }
  .shop-guide-title h1 {
    font-size: 22px;
  }
  .shop-guide-store {
    margin-bottom: 88px;
    padding: 0 43px;
    scroll-margin-top: 82px;
  }
  .shop-guide-store__accent {
    height: 22px;
    margin-bottom: 30px;
    width: 22px;
  }
  .shop-guide-store__main {
    display: flex;
    flex-direction: column;
    gap: 34px;
  }
  .shop-guide-store__photo img {
    height: 246px;
    margin: 0 auto;
    width: 184px;
  }
  .shop-guide-store__logo {
    margin-bottom: 26px;
    width: 120px;
  }
  .shop-guide-store--blue .shop-guide-store__logo {
    width: 112px;
  }
  .shop-guide-store--green .shop-guide-store__logo {
    width: 132px;
  }
  .shop-guide-store__content h2 {
    font-size: 12px;
    margin-bottom: 24px;
  }
  .shop-guide-store__text,
  .shop-guide-store__address {
    font-size: 11px;
    line-height: 2.05;
  }
  .shop-guide-store__address {
    margin-top: 28px;
  }
  .instagram-button {
    font-size: 10px;
    min-height: 32px;
    min-width: 154px;
  }
  .shop-guide-store__button {
    height: 32px;
    margin-top: 24px;
    min-width: 154px;
  }
  .shop-guide-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    margin-left: -43px;
    margin-right: -43px;
    margin-top: 34px;
    max-width: none;
  }
  .shop-guide-gallery img {
    height: clamp(112px, 31vw, 140px);
    object-fit: cover;
    object-position: center center;
    width: 100%;
  }
  .shop-guide-gallery span {
    bottom: -10px;
    font-size: 32px;
  }
  .company-overview-page {
    padding: 42px 0 0;
  }
  .company-overview-title {
    margin: 0 0 42px;
    padding: 0 43px;
  }
  .company-overview-title p {
    font-size: 12px;
  }
  .company-overview-title h1 {
    font-size: 22px;
  }
  .company-overview-title h1::after {
    height: 7px;
    margin-top: 6px;
  }
  .company-overview-hero {
    margin: 0 43px 58px;
    max-width: none;
  }
  .company-overview-hero img {
    height: 136px;
  }
  .company-overview-hero__colors {
    bottom: -14px;
    gap: 5px;
  }
  .company-overview-hero__color {
    height: 19px;
    width: 19px;
  }
  .company-overview-body {
    display: flex;
    flex-direction: column;
    gap: 34px;
    margin: 0 43px 64px;
    max-width: none;
  }
  .company-overview-table {
    border-spacing: 0 8px;
    font-size: 10px;
    line-height: 1.7;
  }
  .company-overview-table th {
    font-size: 10px;
    padding: 6px 8px;
    width: 76px;
  }
  .company-overview-table td {
    padding: 6px 0 6px 14px;
  }
  .company-overview-table__button {
    height: 32px;
    margin-top: 6px;
    min-width: 154px;
  }
  .company-overview-map {
    margin: 0 auto;
    width: 100%;
  }
  .company-overview-map iframe {
    height: 210px;
  }
  .company-overview-online {
    height: 360px;
  }
  .company-overview-online p {
    font-size: 20px;
    margin: 36px 0;
  }
  .company-overview-online__button {
    height: 32px;
    min-width: 154px;
  }
  .contact-page {
    padding: 42px 0 92px;
  }
  .contact-title {
    margin: 0 0 58px;
    padding: 0 43px;
  }
  .contact-title p {
    font-size: 12px;
  }
  .contact-title h1 {
    font-size: 22px;
  }
  .contact-title h1::after {
    height: 7px;
    margin-top: 6px;
  }
  .contact-form-section {
    padding: 0 43px;
  }
  .contact-form-section .wpcf7-form {
    gap: 22px;
  }
  .contact-form__label {
    font-size: 12px;
  }
  .contact-form-section input[type=text],
  .contact-form-section input[type=email],
  .contact-form-section input[type=tel],
  .contact-form-section textarea {
    font-size: 12px;
    padding: 10px 12px;
  }
  .contact-form-section textarea {
    min-height: 180px;
  }
  .contact-form__privacy {
    font-size: 11px;
    text-align: left;
  }
  .contact-form-section input[type=submit],
  .contact-form-section button[type=submit] {
    height: 32px;
    min-width: 154px;
  }
  .category-page {
    padding: 42px 0 92px;
  }
  .category-title {
    margin: 0 0 58px;
    padding: 0 43px;
  }
  .category-title p {
    font-size: 12px;
  }
  .category-title h1 {
    font-size: 22px;
  }
  .category-title h1::after {
    height: 7px;
    margin-top: 6px;
  }
  .category-news-section {
    padding: 0 43px;
  }
  .category-news-list__item {
    gap: 8px;
    grid-template-columns: 54px minmax(0, 1fr) 16px;
    min-height: 58px;
    padding: 10px 0;
  }
  .category-news-list time {
    font-size: 9px;
    grid-column: 1;
    grid-row: 2;
  }
  .category-news-list__item > span:not(.category-news-list__label) {
    font-size: 12px;
    grid-column: 2;
    grid-row: 1/span 2;
  }
  .category-news-list i {
    grid-column: 3;
    grid-row: 1/span 2;
  }
  .category-news-list__label {
    font-size: 8px;
    grid-column: 1;
    grid-row: 1;
    padding: 5px 9px;
  }
  .pagination-nav {
    margin-top: 38px;
  }
  .pagination-nav .page-numbers {
    height: 34px;
    width: 34px;
  }
  .single-news-page {
    padding: 42px 0 92px;
  }
  .single-news-title {
    margin: 0 0 58px;
    padding: 0 43px;
  }
  .single-news-title > p {
    font-size: 12px;
    margin-bottom: 16px;
  }
  .single-news-title__meta {
    font-size: 10px;
    margin-bottom: 14px;
  }
  .single-news-title__meta span {
    font-size: 8px;
    padding: 5px 9px;
  }
  .single-news-title h1 {
    font-size: 20px;
  }
  .single-news-title h1::after {
    height: 7px;
    margin-top: 9px;
  }
  .single-news-hero {
    margin-bottom: 42px;
    padding: 0 43px;
  }
  .single-news-content {
    font-size: 12px;
    line-height: 2.05;
    padding: 0 43px;
  }
  .single-news-content p {
    margin-bottom: 20px;
  }
  .single-news-content h2 {
    font-size: 18px;
    margin: 44px 0 18px;
  }
  .single-news-content h3 {
    font-size: 15px;
    margin: 36px 0 14px;
  }
  .single-news-back {
    margin-top: 48px;
  }
  .privacy-policy-page {
    padding: 42px 0 92px;
  }
  .privacy-policy-title {
    margin: 0 0 58px;
    padding: 0 43px;
  }
  .privacy-policy-title p {
    font-size: 12px;
  }
  .privacy-policy-title h1 {
    font-size: 22px;
  }
  .privacy-policy-title h1::after {
    height: 7px;
    margin-top: 6px;
  }
  .privacy-policy-content {
    font-size: 12px;
    line-height: 2.05;
    padding: 0 43px;
  }
  .privacy-policy-content section + section {
    margin-top: 36px;
  }
  .privacy-policy-content h2 {
    font-size: 15px;
    margin-bottom: 14px;
    padding-bottom: 9px;
  }
  .not-found-page {
    padding: 42px 0 92px;
  }
  .not-found-title {
    margin: 0 0 58px;
    padding: 0 43px;
  }
  .not-found-title p {
    font-size: 12px;
  }
  .not-found-title h1 {
    font-size: 22px;
  }
  .not-found-title h1::after {
    height: 7px;
    margin-top: 6px;
  }
  .not-found-content {
    font-size: 12px;
    line-height: 2.05;
    padding: 0 43px;
  }
  .news-section {
    margin-top: 48px;
    padding: 74px 0 54px;
  }
  .news-list {
    margin-top: 26px;
  }
  .news-list__item {
    gap: 8px;
    grid-template-columns: 54px minmax(0, 1fr) 16px;
    padding: 10px 0;
  }
  .news-list time {
    font-size: 9px;
    grid-column: 1;
    grid-row: 2;
  }
  .news-list__item > span:not(.news-list__label) {
    grid-column: 2;
    grid-row: 1/span 2;
  }
  .news-list i {
    grid-column: 3;
    grid-row: 1/span 2;
  }
  .news-list__label {
    font-size: 8px;
    grid-column: 1;
    grid-row: 1;
    padding: 5px 9px;
  }
  .front-footer-section {
    background-image: url("assets/images/footerbg-sp.webp");
    background-position: center bottom;
    background-size: 100% auto;
    padding: 100px 28px 220px;
  }
  .front-footer-card {
    display: block;
    padding: 40px 34px 32px;
  }
  .front-footer-card__brand {
    text-align: center;
  }
  .front-footer-card__brand img {
    margin: 0 auto;
    width: 150px;
  }
  .front-footer-card__links {
    margin-top: 38px;
    max-width: 100%;
    width: 100%;
  }
  .front-footer-card__links a {
    font-size: 12px;
    gap: 12px;
    grid-template-columns: 150px 1fr;
    white-space: nowrap;
  }
  .front-footer-card__links span {
    font-size: 16px;
  }
  .front-footer-card__links ul {
    margin: -2px 0 12px;
  }
  .front-footer-card__stores {
    margin-top: 30px;
  }
  .front-footer-card__map {
    height: 260px;
    margin-top: 20px;
  }
  .copyright {
    padding: 0 20px 20px;
  }
  .posts-grid {
    grid-template-columns: 1fr;
  }
}

/*# sourceMappingURL=style.css.map */
