:root {
  --cream: #fffbed;
  --milk: #fffff5;
  --ink: #202020;
  --blue: #1b66b2;
  --line: #dfdbc4;
  --muted: #a6a6a6;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", serif;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0;
}

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

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

button {
  font: inherit;
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 28px 38px;
  pointer-events: none;
  transition: transform .28s ease;
  will-change: transform;
}

.site-header.is-hidden {
  transform: translateY(-100%);
}

.header-logo,
.global-nav,
.menu-button {
  pointer-events: auto;
}

.header-logo,
.global-nav a,
.section-label,
.contact a,
.site-footer nav,
.large-script {
  font-family: "EB Garamond", Georgia, serif;
}

.header-logo {
  line-height: 1;
}

.header-logo img {
  width: 202px;
  height: auto;
}

.global-nav {
  display: flex;
  gap: 40px;
  align-items: center;
  font-size: 22px;
}

.global-nav a,
.contact a,
.site-footer nav a {
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 0 1px;
  transition: background-size .22s ease;
}

.global-nav a:hover,
.contact a:hover,
.site-footer nav a:hover {
  background-size: 100% 1px;
}

.menu-button {
  display: none;
}

.menu-logo {
  display: none;
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  background: #f7f2e5;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(360px, 27vw);
  opacity: 0;
  transform: translate(-50%, -50%);
  animation: hero-logo-fade-in 1.4s ease .35s forwards;
}

@keyframes hero-logo-fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.scroll-cue {
  position: absolute;
  right: 42px;
  bottom: 28px;
  width: 12px;
}

.scroll-cue img {
  width: 100%;
  height: auto;
}

.section {
  position: relative;
  padding: 112px 8vw 200px;
}

.section-label {
  font-size: 30px;
  line-height: 1;
}

.concept {
  min-height: 900px;
  background-color: var(--cream);
  background-image: url("../img/section_back.jpg");
  background-repeat: repeat;
  overflow: hidden;
}

.concept-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1040px) 170px;
  gap: 8vw;
  max-width: 1320px;
  margin: 145px auto 0;
}

.concept-text {
  width: fit-content;
  max-width: 1040px;
  padding-top: 70px;
  font-size: 20px;
  line-height: 52px;
  text-align: left;
  justify-self: center;
  transform: translate(174px, 32px);
}

.concept-text p {
  margin: 0 0 1em;
  white-space: nowrap;
}

.concept-text span {
  display: block;
  opacity: 0;
  transform: translateY(12px);
}

.concept-text.is-visible span {
  animation: concept-line-fade-in .8s ease forwards;
  animation-delay: var(--fade-delay, 0s);
}

.concept-text p:nth-child(1) span:nth-child(1) {
  --fade-delay: .1s;
}

.concept-text p:nth-child(1) span:nth-child(2) {
  --fade-delay: .35s;
}

.concept-text p:nth-child(2) span:nth-child(1) {
  --fade-delay: .6s;
}

.concept-text p:nth-child(2) span:nth-child(2) {
  --fade-delay: .85s;
}

.concept-text p:nth-child(2) span:nth-child(3) {
  --fade-delay: 1.1s;
}

.concept-text p:nth-child(3) span:nth-child(1) {
  --fade-delay: 1.35s;
}

.concept-text p:nth-child(3) span:nth-child(2) {
  --fade-delay: 1.6s;
}

@keyframes concept-line-fade-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.concept-catch {
  justify-self: end;
  width: 34px;
  height: auto;
  transform: translate(-105px, -190px);
}

.concept-catch-sp {
  display: none;
}

.large-script {
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  width: max-content;
  opacity: .65;
  animation: large-script-marquee 36s linear infinite;
  will-change: transform;
}

.large-script img {
  flex: 0 0 auto;
  width: auto;
  max-width: none;
  height: 160px;
}

@keyframes large-script-marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.news {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  column-gap: 60px;
  align-items: start;
  background-color: var(--cream);
  background-image: url("../img/section_back.jpg");
  background-repeat: repeat;
  padding-left: 50px;
  padding-top: 92px;
  padding-right: 0;
  padding-bottom: 120px;
}

.news > .section-label {
  transform: translate(60px, 24px);
}

.news-wrap {
  position: relative;
  max-width: none;
  margin: 0;
  padding-left: 130px;
}

.news-wrap::before {
  content: none;
  position: absolute;
  top: 0;
  bottom: -12px;
  left: 30px;
  width: 1px;
  background: #eee7cf;
}

.news-list {
  display: flex;
  gap: 60px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.news-list::-webkit-scrollbar {
  display: none;
}

.news-item {
  flex: 0 0 320px;
}

.news-trigger {
  display: block;
  width: 100%;
  padding: 0;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.news-thumb {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  background: #999;
  overflow: hidden;
  transition: opacity .2s ease;
}

.news-thumb img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
}

.news-trigger:hover .news-thumb {
  opacity: .75;
}

.news-trigger time {
  display: block;
  margin-top: 18px;
  font-family: "EB Garamond", Georgia, serif;
  font-style: italic;
  font-size: 14px;
  line-height: 1.4;
}

.news-title {
  display: block;
  font-family: "Noto Serif JP", "Yu Mincho", "YuMincho", serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.7;
}

.news-modal-body-template {
  display: none;
}

.news-arrows {
  display: flex;
  gap: 18px;
  position: absolute;
  top: 267px;
  left: -118px;
  margin-top: 0;
}

.news-arrows button {
  position: relative;
  width: 38px;
  height: 44px;
  padding: 0;
  background: #e5e0d3;
  border: 0;
  cursor: pointer;
}

.news-arrows button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 19px;
  background: url("../img/news-arrows.svg") center / contain no-repeat;
  transform: translate(-50%, -50%);
}

.news-arrows button + button::before {
  transform: translate(-50%, -50%) scaleX(-1);
}

.products {
  position: relative;
  background: var(--milk);
}

.products-label {
  position: absolute;
  top: 48px;
  left: 2vw;
  z-index: 2;
}

.product-item {
  position: sticky;
  top: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
  min-height: 100vh;
  margin-bottom: 14vh;
  background: var(--milk);
  z-index: var(--product-stack-index, 1);
}

.product-item:last-child {
  margin-bottom: 0;
}

.product-photo {
  position: relative;
  min-height: 100vh;
  background: #f3e5c5;
  overflow: hidden;
}

.product-photo::before {
  content: none;
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 0;
  width: 28px;
  height: 1px;
  background: rgba(255, 255, 255, .8);
}

.product-carousel,
.product-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.product-slides img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.1s ease;
}

.product-slides img.is-active {
  opacity: 1;
}

.carousel-button {
  position: absolute;
  z-index: 2;
  top: 50%;
  width: 32px;
  height: 42px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  transform: translateY(-50%);
}

.carousel-button::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 12px;
  width: 20px;
  height: 20px;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
}

.carousel-prev {
  left: 16px;
}

.carousel-next {
  right: 16px;
}

.carousel-prev::before {
  transform: rotate(-45deg);
}

.carousel-next::before {
  left: 0;
  transform: rotate(135deg);
}

.product-detail {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  max-width: none;
  min-height: 100vh;
  padding: 74px 96px 120px 54px;
}

.product-number {
  position: absolute;
  top: 28px;
  right: 28px;
  margin: 0;
  writing-mode: horizontal-tb;
  font-family: "EB Garamond", Georgia, serif;
  font-style: italic;
  font-size: 14px;
  line-height: 1;
}

.product-number::before {
  content: none;
}

.product-name {
  position: absolute;
  top: 84px;
  right: 108px;
  margin: 0;
  writing-mode: vertical-rl;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: .08em;
}

.product-name::after {
  content: "常温";
  position: absolute;
  top: 0;
  right: -48px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 84px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0;
}

.product-item.is-refrigerated .product-name::after {
  content: "冷蔵";
}

#products-mab .product-name::after,
#products-mcs .product-name::after {
  content: none;
}

.product-detail h3 {
  margin: 0 0 28px;
  font-size: 0;
  line-height: 1;
}

.product-detail h3 img {
  width: 293px;
  max-width: 100%;
  height: auto;
  opacity: 0;
  transform: translateX(-18px);
}

#products-mab .product-detail h3 img {
  width: 293px;
}

#products-lc .product-detail h3 img {
  width: 296px;
}

#products-cbck .product-detail h3 img {
  width: 332px;
}

#products-sp .product-detail h3 img {
  width: 258px;
}

#products-mcs .product-detail h3 img {
  width: 242px;
}

.product-item.is-visible .product-detail h3 img {
  animation: product-catch-appear .55s ease .25s forwards;
}

@keyframes product-catch-appear {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.product-detail p:not(.product-number) {
  max-width: 360px;
  margin: 0 0 36px;
  font-size: 16px;
  line-height: 30px;
}

.price-list {
  display: grid;
  gap: 0;
  max-width: 330px;
  margin: 0;
  border-top: 1px solid var(--line);
  font-size: 14px;
  line-height: 1.4;
}

.price-list div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.price-list dt,
.price-list dd {
  margin: 0;
}

.tax-label {
  font-size: 10px;
}

.shop {
  padding-top: 105px;
  padding-bottom: 108px;
  border-bottom: 1px solid #eee7cf;
}

.shop-inner {
  max-width: 960px;
  margin: 48px auto 0;
}

.shop-main-image {
  width: 100%;
  max-width: 820px;
  height: auto;
  margin: 0 auto 52px;
  background: #d7d7d7;
}

.shop-main-image img {
  width: 100%;
  aspect-ratio: 840 / 460;
  object-fit: cover;
  object-position: center center;
}

.shop-info {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 54px;
  align-items: start;
  max-width: 820px;
  margin: 0 auto;
}

.shop-info h2 {
  margin: 0 0 24px;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.7;
}

.shop-info h2 span {
  font-size: 0.86em;
}

.shop-info p {
  margin: 0 0;
  font-size: 16px;
  line-height: 2;
}

.shop-info .shop-meta {
  line-height: 26pt;
}

.shop-info .shop-description {
  line-height: 26pt;
  margin-top: 24px;
}

.shop-photo {
  width: 300px;
  aspect-ratio: 400 / 320;
  object-fit: contain;
  object-position: center center;
}

.contact {
  padding-top: 70px;
  padding-bottom: 74px;
  text-align: center;
  border-bottom: 1px solid #eee7cf;
}

.contact p {
  margin: 0 0 12px;
  font-size: 16px;
}

.contact a {
  font-size: 44px;
  line-height: 1;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  align-items: end;
  column-gap: 40px;
  row-gap: 18px;
  padding: 42px 38px 36px;
}

.footer-logo {
  grid-column: 1;
  grid-row: 1 / 3;
}

.footer-logo img {
  width: 148px;
  height: auto;
  object-fit: contain;
  object-position: left center;
}

.site-footer nav {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  gap: 34px;
  font-size: 22px;
}

.footer-copy {
  grid-column: 2;
  grid-row: 2;
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
  text-align: right;
}

.modal {
  position: fixed;
  z-index: 50;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.modal.is-open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(255, 252, 233, .78);
}

.modal-panel {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: min(760px, calc(100vw - 160px));
  height: 80vh;
  min-height: 0;
  overflow: visible;
  padding: 0;
  background: #fff;
  box-shadow: 0 18px 42px rgba(95, 85, 55, .12);
}

.modal-close {
  position: absolute;
  top: -30px;
  right: -100px;
  width: 60px;
  height: 60px;
  padding: 0;
  background: #c9c9c1;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.modal-close::before,
.modal-close::after {
  content: "";
  position: absolute;
  top: 29px;
  left: 19px;
  width: 22px;
  height: 1px;
  background: #fff;
}

.modal-close::before {
  transform: rotate(45deg);
}

.modal-close::after {
  transform: rotate(-45deg);
}

.modal-image {
  position: relative;
  flex: 0 1 400px;
  min-height: 260px;
  background: #959594;
  overflow: hidden;
}

.modal-image img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  max-width: none;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.modal-image.is-empty img {
  display: none;
}

.modal-content {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  padding: 24px 60px 46px;
  scrollbar-color: #c9c9c1 transparent;
  scrollbar-width: thin;
}

.modal-content::-webkit-scrollbar {
  width: 4px;
}

.modal-content::-webkit-scrollbar-track {
  background: transparent;
}

.modal-content::-webkit-scrollbar-thumb {
  background: #c9c9c1;
}

.modal-panel time {
  display: block;
  margin-bottom: 18px;
  font-family: "EB Garamond", Georgia, serif;
  font-style: italic;
  font-size: 14px;
}

#modal-title {
  margin: 0 0 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid #efe3bd;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.7;
}

.modal-body {
  font-size: 14px;
  line-height: 2.1;
  overflow-wrap: anywhere;
}

.modal-body > *:first-child {
  margin-top: 0;
}

.modal-body > *:last-child {
  margin-bottom: 0;
}

.modal-body h1,
.modal-body h2,
.modal-body h3 {
  margin: 2em 0 .8em;
  font-weight: 500;
  line-height: 1.55;
}

.modal-body h1 {
  font-size: 22px;
}

.modal-body h2 {
  font-size: 19px;
}

.modal-body h3 {
  font-size: 17px;
}

.modal-body p,
.modal-body ul,
.modal-body ol,
.modal-body dl,
.modal-body blockquote,
.modal-body figure,
.modal-body table {
  margin: 0 0 1.5em;
}

.modal-body ul,
.modal-body ol {
  padding-left: 1.6em;
}

.modal-body li + li {
  margin-top: .35em;
}

.modal-body a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: .2em;
}

.modal-body img {
  width: auto;
  max-width: 100%;
  height: auto;
  margin: 1.6em auto;
}

.modal-body iframe,
.modal-body video,
.modal-body embed,
.modal-body object {
  max-width: 100%;
}

.modal-body table {
  display: block;
  width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
}

.modal-body th,
.modal-body td {
  padding: .6em .8em;
  border: 1px solid #efe3bd;
  vertical-align: top;
}

.modal-body blockquote {
  padding-left: 1.2em;
  border-left: 3px solid #efe3bd;
}

body.modal-open {
  overflow: hidden;
}

body.menu-open {
  overflow: hidden;
}

@media (max-width: 767px) {
  body {
    font-size: 12px;
    line-height: 1.9;
  }

  .site-header {
    padding: 12px 15px;
  }

  .site-header.is-menu-open {
    inset: 0;
    z-index: 40;
    display: block;
    padding: 0;
    pointer-events: auto;
    transform: none;
    will-change: auto;
  }

  .site-header.is-menu-open .header-logo {
    display: none;
  }

  .header-logo img {
    width: 180px;
  }

  .menu-button {
    position: relative;
    z-index: 42;
    display: block;
    width: 24px;
    height: 18px;
    padding: 0;
    background: transparent;
    border: 0;
  }

  .menu-button.is-open {
    position: fixed;
    top: 20px;
    right: 24px;
    width: 22px;
    height: 22px;
  }

  .menu-button span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--ink);
    transition: transform .2s ease, top .2s ease, opacity .2s ease;
  }

  .menu-button span:nth-child(1) {
    top: 3px;
  }

  .menu-button span:nth-child(2) {
    top: 8px;
  }

  .menu-button span:nth-child(3) {
    top: 13px;
  }

  .menu-button.is-open span:nth-child(1) {
    top: 10px;
    transform: rotate(45deg);
  }

  .menu-button.is-open span:nth-child(2) {
    opacity: 0;
  }

  .menu-button.is-open span:nth-child(3) {
    top: 10px;
    transform: rotate(-45deg);
  }

  .global-nav {
    position: absolute;
    z-index: 41;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
    min-height: 100svh;
    padding: 64px 24px 42px;
    background: var(--cream);
    font-size: 30px;
    line-height: 1;
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, visibility .2s ease;
  }

  .global-nav a {
    display: block;
  }

  .global-nav a:nth-child(2),
  .global-nav a:nth-child(3),
  .global-nav a:nth-child(4) {
    margin-top: 66px;
  }

  .menu-logo {
    display: block;
    width: 178px;
    margin-top: 124px;
  }

  .global-nav.is-open {
    opacity: 1;
    visibility: visible;
  }

  .hero {
    height: 100svh;
    min-height: 0;
  }

  .hero-image {
    object-position: 48% top;
  }

  .hero-logo {
    top: 50%;
    width: 260px;
  }

  .scroll-cue {
    right: 14px;
    bottom: 24px;
    font-size: 11px;
  }

  .section {
    padding: 62px 22px;
  }

  .section-label {
    font-size: 34px;
  }

  .concept {
    min-height: 910px;
    padding: 56px 34px 94px;
  }

  .concept-inner {
    grid-template-columns: minmax(0, 1fr) 104px;
    column-gap: 20px;
    row-gap: 42px;
    margin-top: 0;
  }

  .concept-text {
    order: 2;
    grid-column: 1 / -1;
    padding-top: 0;
    font-size: 16px;
    line-height: 2.1;
    transform: none;
  }

  .concept-text p {
    margin-bottom: 1.7em;
    white-space: normal;
  }

  .concept-catch-pc {
    display: none;
  }

  .concept-catch {
    grid-column: 2;
    justify-self: start;
    width: 91px;
    transform: none;
  }

  .concept-catch-sp {
    display: block;
  }

  .large-script {
    bottom: 0px;
  }
    .large-script img {
      height: 110px;
    }

  .news {
    display: block;
    padding-top: 56px;
    padding-bottom: 86px;
    overflow: hidden;
  }

  .news > .section-label {
    transform: none;
  }

  .news-wrap {
    margin-top: 52px;
    padding-left: 0;
  }

  .news-wrap::before {
    content: none;
  }

  .news-list {
    display: flex;
    gap: 30px;
    width: calc(100vw - 34px);
    overflow-x: auto;
    padding-right: 34px;
  }

  .news-item {
    flex: 0 0 258px;
  }

  .news-trigger time {
    margin-top: 15px;
    font-size: 14px;
  }

  .news-title {
    font-size: 16px;
    line-height: 1.7;
  }

  .news-arrows {
    position: static;
    margin-top: 36px;
  }

  .products-label {
    position: absolute;
    top: 46px;
    left: 30px;
    z-index: 4;
    padding: 0;
  }

  .product-item {
    position: relative;
    top: auto;
    display: block;
    min-height: 0;
    margin-bottom: 0;
  }

  .product-photo {
    min-height: 0;
  }

  .product-carousel,
  .product-slides {
    aspect-ratio: 390 / 422;
  }

  .product-slides img {
    width: 100%;
    height: 100%;
  }

  .carousel-button {
    width: 34px;
    height: 34px;
  }

  .product-detail {
    display: block;
    max-width: none;
    min-height: 0;
    padding: 18px 30px 54px;
  }

  .product-number {
    top: 18px;
    right: auto;
    left: 30px;
    font-size: 10px;
  }

  .product-name {
    position: static;
    margin: 32px 46px 58px 0;
    writing-mode: horizontal-tb;
    font-size: 26px;
    line-height: 1.45;
    letter-spacing: 0;
  }

  .product-name::after {
    top: 18px;
    right: 28px;
    width: 22px;
    height: 52px;
    writing-mode: vertical-rl;
    font-size: 10px;
  }

  .product-detail h3 {
    margin-bottom: 27px;
  }

  .product-detail h3 img {
    width: 244px;
    max-width: 100%;
  }

  #products-mab .product-detail h3 img {
    width: 236px;
  }

  #products-lc .product-detail h3 img {
    width: 238px;
  }

  #products-cbck .product-detail h3 img {
    width: 266px;
  }

  #products-sp .product-detail h3 img {
    width: 208px;
  }

  #products-mcs .product-detail h3 img {
    width: 194px;
  }

  .product-detail p:not(.product-number) {
    max-width: none;
    margin-bottom: 36px;
    font-size: 14px;
    line-height: 2.05;
  }

  .price-list {
    max-width: none;
    gap: 0;
    padding-top: 0;
    font-size: 14px;
    line-height: 1.5;
  }

  .price-list div {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }

  .shop {
    padding: 54px 23px 44px;
  }

  .shop-inner {
    margin-top: 22px;
  }

  .shop-main-image {
    max-width: none;
    height: auto;
    aspect-ratio: 1.35 / 1;
    margin-bottom: 24px;
  }

  .shop-main-image img {
    height: 100%;
  }

  .shop-info {
    display: block;
  }

  .shop-info h2 {
    margin-bottom: 20px;
    font-size: 22px;
    line-height: 1.55;
  }

  .shop-info p {
    font-size: 14px;
    line-height: 2;
  }

  .shop-info .shop-meta,
  .shop-info .shop-description {
    line-height: 2;
  }

  .shop-photo {
    width: 100%;
    max-width: none;
    aspect-ratio: 400 / 320;
    margin-top: 30px;
  }

  .contact {
    padding-top: 44px;
    padding-bottom: 40px;
  }

  .contact p {
    font-size: 14px;
  }

  .contact a {
    font-size: 38px;
  }

  .site-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 24px 24px 28px;
  }

  .site-footer nav {
    order: 1;
    width: auto;
    justify-content: center;
    gap: 20px;
    font-size: 20px;
  }

  .footer-logo {
    order: 2;
  }

  .footer-logo img {
    width: 92px;
  }

  .footer-copy {
    order: 3;
    font-size: 12px;
    line-height: 1.4;
    text-align: center;
  }

  .modal {
    align-items: stretch;
    padding: 62px 22px 36px;
  }

  .modal-backdrop {
    background: var(--cream);
  }

  .modal-panel {
    width: 100%;
    height: calc(100vh - 98px);
    background: transparent;
    box-shadow: none;
  }

  .modal-close {
    top: -42px;
    right: 0;
    width: 26px;
    height: 26px;
    background: transparent;
    border-radius: 0;
  }

  .modal-close::before,
  .modal-close::after {
    top: 12px;
    left: 1px;
    width: 26px;
    background: var(--ink);
  }

  .modal-image {
    flex: 0 0 34vh;
    min-height: 190px;
  }

  .modal-content {
    background: #fff;
    padding: 24px 28px 38px;
  }

  .modal-panel time {
    margin-bottom: 14px;
    font-size: 13px;
  }

  #modal-title {
    margin-bottom: 20px;
    padding-bottom: 20px;
    font-size: 18px;
    line-height: 1.65;
  }

  .modal-body {
    font-size: 12px;
    line-height: 2;
  }

  .modal-body h1 {
    font-size: 19px;
  }

  .modal-body h2 {
    font-size: 17px;
  }

  .modal-body h3 {
    font-size: 15px;
  }
}
