:root {
  --bg: #e0dbd1;
  --brown: #371c0e;
  --button: #595959;
  --white: #fff;
  --paper: #f8f6f2;
  --font-en: "Amiri Quran", serif;
  --font-jp: "Shippori Mincho", serif;
  --font-date: "Radio Canada", sans-serif;
  --sec-sp01 : 240px ;
  --sp-1 : 8px ;
  --sp-2 : 16px ;
  --sp-4 : 32px ;
  --sp-5 : 40px ;
  --sp-10 : 80px ;
  --sectitle-img1 : 28px;
  --sectitle-img2 : 42px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-y: scroll;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--brown);
  font-family: var(--font-jp);
  font-size: 16px;
  line-height: 1.85;
  letter-spacing: 0.18em;
}

body.is-menu-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  display: flex;
  align-items: flex-start;
  width: 100%;
  height: 108px;
  padding: 31px 52px 0;
  transition: background-color 0.35s ease, opacity 0.35s ease, transform 0.35s ease, height 0.35s ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  background: rgba(255, 255, 255, 0.3);
}

.site-header.is-footer-visible {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-20px);
}

.global-nav {
  display: flex;
  gap: 27px;
  align-items: center;
  padding-top: 4px;
}

.nav-link {
  position: relative;
  display: inline-block;
  font-family: var(--font-en);
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.2em;
  white-space: nowrap;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.32s ease;
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
  transform: scaleX(1);
}

.header-logo {
  position: absolute;
  top: 11px;
  left: 50%;
  width: 66px;
  opacity: 0;
  transform: translateX(-50%);
  transition: opacity 0.35s ease;
}

.site-header.is-scrolled .header-logo {
  opacity: 1;
}

.header-actions {
  display: flex;
  gap: 35px;
  align-items: center;
  margin-left: auto;
}

.instagram-icon {
  display: block;
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.online-shop {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 198px;
  height: 47px;
  padding: 0 16px;
  background: var(--button);
  color: var(--paper);
  font-family: var(--font-en);
  font-size: 15px;
  letter-spacing: 0.15em;
  line-height: 1;
}

.cart-icon {
  display: inline-block;
  width: 31px;
  height: 26px;
  object-fit: contain;
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  height: min(69.45vw, 1000px);
  min-height: 720px;
  overflow: hidden;
}

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

.hero-logo {
  position: absolute;
  top: 257px;
  left: 50%;
  width: 326px;
  transform: translateX(-50%);
}

.hero-copy {
  position: absolute;
  top: 724px;
  left: 50%;
  width: 380px;
  min-height: 62px;
  margin: 0;
  color: #000;
  font-family: var(--font-en);
  font-size: 14px;
  letter-spacing: 0.15em;
  line-height: 20px;
  text-align: center;
  white-space: pre-line;
  transform: translateX(-50%);
}

.section {
  position: relative;
}

.section-title {
  color: var(--brown);
  text-align: center;
}

.section-title-en {
  display: block;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}

.section-title-en-news , .section-title-en-concept , .section-title-en-about , .section-title-en-products , .section-title-en-shop {
  height: var(--sectitle-img1);
}
.section-title-en-story {
  height: var(--sectitle-img2);
}
.section-title-line {
  display: block;
  width: 170px;
  height: 1px;
  margin: 10px auto 7px;
  background: var(--brown);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.75s ease;
}

.section-reveal.is-visible .section-title-line,
.section-title.is-visible .section-title-line {
  transform: scaleX(1);
}

.section-title h2 {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.7;
}

.section-title-center {
  width: 245px;
  margin-right: auto;
  margin-left: auto;
}

.section-title-center .section-title-line {
  width: 245px;
}

.section-title-inline {
  display: inline-grid;
  grid-template-columns: max-content max-content;
  column-gap: 13px;
  row-gap: 7px;
  align-items: flex-start;
  width: max-content;
  text-align: left;
}

.section-title-inline .section-title-en {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
}

.section-title-inline .section-title-line {
  display: block;
  grid-column: 1 / -1;
  grid-row: 2;
  width: 245px;
  margin: 0;
}

.section-title-inline h2 {
  grid-column: 2;
  grid-row: 1;
  margin-left: 0;
  white-space: nowrap;
}

.news {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 34px;
  align-items: center;
  max-width: 1080px;
  min-height: 419px;
  margin: 0 auto;
  padding: var(--sec-sp01) 0 ;
}

.news-list {
  display: grid;
  grid-template-columns: repeat(4, 191px);
  gap: 22px;
}

.news-card a {
  display: block;
}

.news-thumb {
  display: block;
  width: 191px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #d9d9d9;
}

.news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.news-card a:hover .news-thumb img,
.news-card a:focus-visible .news-thumb img {
  transform: scale(1.08);
}

.news-card time {
  display: block;
  margin-top: 11px;
  font-family: var(--font-date);
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.2em;
  opacity: 0.7;
}

.news-card h3 {
  width: 191px;
  margin: 3px 0 0;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.2em;
  line-height: 20px;
  opacity: 0.7;
}

.concept {
  display: grid;
  grid-template-columns: 789px 381px;
  gap: 52px;
  align-items: start;
  max-width: 1222px;
  margin: 0 auto ;
}

.concept-visual {
  width: 789px;
}

.concept-media {
  position: relative;
  width: 789px;
  height: 526px;
  overflow: hidden;
}

.concept-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.concept-media img.is-active {
  opacity: 1;
}

.concept-body {
  padding-top: 18px;
}

.concept-body p {
  margin: 25px 0 0;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.2em;
}

.slide-dots {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  width: 70px;
  height: 10px;
  margin: 13px 0 0 auto;
}

.slide-dots span {
  width: 10px;
  height: 10px;
  border: 1px solid rgba(55, 28, 14, 0.55);
  border-radius: 50%;
}

.slide-dots span.is-active {
  border-color: var(--brown);
  background: rgba(55, 28, 14, 0.58);
}

.story {
  max-width: 1180px;
  margin: var(--sec-sp01) auto ;
  text-align: center;
}

.story-text {
  width: 639px;
  max-width: 100%;
  margin: 59px auto 46px;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.2em;
  text-align: left;
}

.story-gallery {
  display: grid;
  grid-template-columns: 387px 389px 388px;
  gap: 22px 8px;
  justify-content: center;
  align-items: start;
}

.story-main-img {
  grid-column: 1 / 4;
  width: 686px;
  height: 458px;
  margin: 0 auto;
  object-fit: cover;
}

.story-sub-img {
  width: 100%;
  height: 266px;
  object-fit: cover;
}

.story-sub-1 {
  grid-column: 1;
  object-position: center center;
}

.story-sub-2 {
  grid-column: 2;
  object-position: center center;
}

.story-sub-3 {
  grid-column: 3;
  object-position: 42% center;
}

.story-gallery img {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.story.is-visible .story-gallery img {
  opacity: 1;
  transform: translateY(0);
}

.story.is-visible .story-main-img {
  transition-delay: 0.1s;
}

.story.is-visible .story-sub-1 {
  transition-delay: 0.32s;
}

.story.is-visible .story-sub-2 {
  transition-delay: 0.54s;
}

.story.is-visible .story-sub-3 {
  transition-delay: 0.76s;
}

.about {
  max-width: 767px;
  margin: 0 auto ;
}

.about-list {
  display: grid;
  gap: 32px;
  margin-top: 37px;
}

.about-person {
  display: grid;
  grid-template-columns: 241px 466px;
  gap: 60px;
  align-items: center;
}

.about-person img {
  width: 241px;
  height: 288px;
  object-fit: cover;
}

.about-person p {
  margin: 0;
  width: 466px;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.2em;
}

.about-person:nth-child(2) img {
  height: 227px;
}

.products {
  max-width: 980px;
  margin: var(--sec-sp01) auto ;
}

.product-feature {
  display: grid;
  grid-template-columns: 461px 250px;
  gap: 60px;
  justify-content: center;
  align-items: start;
  margin-top: 56px;
}

.product-feature img {
  width: 461px;
  height: 461px;
  object-fit: cover;
}

.product-text {
  padding-top: 78px;
}

.product-text h3,
.product-card h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 20px;
  text-align: center;
}

.product-price {
  margin: 6px 0 22px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 20px;
  text-align: center;
}

.product-text p,
.product-card p {
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: 0.2em;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 266px);
  gap: 60px;
  justify-content: center;
  margin-top: 48px;
}

.product-card img {
  width: 266px;
  height: 259px;
  object-fit: cover;
  margin-bottom: 12px;
}

.shop {
  display: grid;
  grid-template-columns: 360px 776px;
  gap: 53px;
  align-items: start;
  max-width: 1186px;
  margin: 0 auto 0;
  padding-bottom: var(--sp-10);
}

.shop-info {
  position: relative;
}

.shop-info dl {
  margin: 34px 0 0;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0.2em;
}

.shop-info dt {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.shop-info dd {
  margin: 0 0 18px;
}

.map-link {
  position: absolute;
  top: 129px;
  right: 3px;
  display: grid;
  place-items: center;
  width: 49px;
  height: 23px;
  background: var(--brown);
  color: var(--paper);
  font-family: var(--font-en);
  font-size: 13px;
  letter-spacing: 0.2em;
  line-height: 1;
}

.shop-image {
  width: 776px;
  height: 477px;
  object-fit: cover;
}

.site-footer {
  background: var(--white);
}

.footer-main {
  position: relative;
  display: grid;
  grid-template-columns: 220px 1fr 190px;
  align-items: center;
  max-width: 1200px;
  height: 240px;
  margin: 0 auto;
}

.footer-logo {
  width: 79px;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 28px 78px;
  justify-content: center;
}

.footer-actions {
  display: flex;
  gap: 18px;
  align-items: center;
}

.footer-actions .instagram-icon {
  width: 76px;
  height: 76px;
}

.footer-cart {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  color: var(--brown);
}

.footer-cart .cart-icon {
  width: 76px;
  height: 76px;
  object-fit: contain;
}

.copyright {
  display: grid;
  place-items: center;
  height: 51px;
  margin: 0;
  background: var(--brown);
  color: var(--white);
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.2em;
  line-height: 1;
  text-align: center;
}

.section-reveal,
.person-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-reveal.is-visible,
.person-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.person-reveal:nth-child(2) {
  transition-delay: 0.18s;
}

@media (max-width: 1023px) {
  .site-header {
    align-items: flex-start;
    height: 109px;
    padding: 22px 34px 0;
  }

  .site-header.is-menu-open {
    height: 288px;
  }

  .site-header.is-scrolled:not(.is-menu-open) {
    height: 147px;
    padding-top: 22px;
  }

  .site-header.is-scrolled:not(.is-menu-open) .global-nav {
    opacity: 0;
    pointer-events: none;
  }

  .site-header.is-scrolled:not(.is-menu-open) .header-logo {
    top: 11px;
    width: 66px;
    opacity: 1;
  }

  .menu-button {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 14px;
    width: 34px;
    margin-top: 6px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .menu-button span {
    display: block;
    width: 34px;
    height: 4px;
    background: var(--brown);
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .site-header.is-menu-open .menu-button span:nth-child(1) {
    transform: translateY(18px) rotate(45deg);
  }

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

  .site-header.is-menu-open .menu-button span:nth-child(3) {
    transform: translateY(-18px) rotate(-45deg);
  }

  .global-nav {
    position: absolute;
    top: 78px;
    left: 25px;
    display: grid;
    gap: 14px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
  }

  .site-header.is-menu-open .global-nav {
    opacity: 1;
    pointer-events: auto;
  }

  .header-logo {
    display: block;
    opacity: 0;
  }

  .header-actions {
    gap: 16px;
    margin-left: auto;
  }

  .instagram-icon {
    width: 45px;
    height: 45px;
  }

  .online-shop {
    min-width: 205px;
    height: 43px;
    font-size: 18px;
  }

  .hero {
    height: 888px;
    min-height: 0;
  }

  .hero-logo {
    top: 246px;
    width: 284px;
  }

  .hero-copy {
    top: 636px;
  }

  .news {
    display: block;
    width: 800px;
    max-width: 100%;
    min-height: 411px;
    padding:  var(--sp-10) 42px ;
  }

  .news .section-title {
    padding-top: 0;
  }

  .news-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
  }

  .news-thumb,
  .news-card h3 {
    width: 100%;
  }

  .news-thumb {
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .news-card time {
    font-size: 13px;
  }

  .news-card h3 {
    font-size: 14px;
    line-height: 17px;
  }

  .concept {
    display: block;
    max-width: 620px;
    margin-top: 80px;
  }

  .concept-visual {
    width: 100%;
  }

  .concept-media {
    width: 100%;
    height: auto;
    aspect-ratio: 620 / 413;
  }

  .concept-body {
    padding-top: 35px;
  }

  .concept-body p {
    margin-top: 38px;
  }

  .story,
  .about,
  .products {
    max-width: 620px;
  }

  .about-person {
    grid-template-columns: 241px 1fr;
    gap: 40px;
  }

  .about-person p {
    width: auto;
  }

  .story-text {
    width: 100%;
    margin: var(--sp-5) auto ;
  }

  .story-gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .story-main-img {
    width: 100%;
    height: auto;
    aspect-ratio: 686 / 458;
  }

  .story-sub-img {
    height: auto;
    aspect-ratio: 388 / 266;
  }

  .product-feature {
    grid-template-columns: 325px 222px;
    gap: var(--sp-4);
  }

  .product-feature img {
    width: 325px;
    height: 325px;
  }

  .product-text {
    padding-top: 20px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 266px);
    gap: 54px;
  }

  .shop {
    grid-template-columns: 304px 400px;
    gap: 58px;
    max-width: 724px;
    margin-top: 80px;
    padding-bottom: 96px;
  }

  .shop-info .section-title-inline {
    margin-left: calc((724px - 245px) / 2);
  }

  .shop-image {
    width: 400px;
    height: 246px;
    margin-top: 96px;
  }

  .footer-main {
    grid-template-columns: 1fr 58px 51px;
    gap: 26px;
    justify-content: center;
    height: 211px;
    max-width: 360px;
  }

  .footer-logo {
    justify-self: center;
    width: 70px;
  }

  .footer-nav {
    display: none;
  }

  .footer-actions {
    grid-column: 2 / 4;
    grid-row: 1;
    gap: 18px;
  }

  .footer-actions .instagram-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
  }

  .footer-cart,
  .footer-cart .cart-icon {
    width: 58px;
    height: 58px;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .section-title-inline {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 0;
    width: 245px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .section-title-inline .section-title-en {
    order: 1;
    display: block;
    margin: 0 auto;
  }

  .section-title-inline .section-title-line {
    order: 2;
    display: block;
    width: 245px;
    margin: 10px auto 7px;
  }

  .section-title-inline h2 {
    order: 3;
    display: block;
    margin: 0;
  }

  .concept {
    display: flex;
    flex-direction: column;
    max-width: 742px;
    gap: 24px;
  }

  .concept-body {
    display: contents;
  }

  .concept .section-title-inline {
    order: 1;
  }

  .concept-visual {
    order: 2;
    margin-top: 16px;
  }

  .concept-body p {
    order: 3;
    width: 600px;
    max-width: 100%;
    margin: 22px auto 0;
  }
}

@media (max-width: 767px) {
  body {
    font-size: 14px;
    letter-spacing: 0.18em;
  }

  .site-header {
    height: 50px;
    padding: 12px 16px 0;
  }

  .site-header.is-menu-open {
    height: 215px;
  }

  .site-header.is-scrolled:not(.is-menu-open) {
    height: 64px;
  }

  .site-header.is-scrolled:not(.is-menu-open) .header-logo {
    top: 5px;
    width: 42px;
  }

  .menu-button {
    gap: 6px;
    width: 19px;
    margin-top: 4px;
  }

  .menu-button span {
    width: 19px;
    height: 2px;
  }

  .site-header.is-menu-open .menu-button span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .site-header.is-menu-open .menu-button span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .global-nav {
    top: 43px;
    left: 16px;
    gap: 14px;
  }

  .nav-link {
    font-size: 15px;
  }

  .header-actions {
    gap: 20px;
  }

  .instagram-icon {
    width: 24px;
    height: 24px;
  }

  .online-shop {
    min-width: 110px;
    height: 23px;
    padding: 0 8px;
    font-size: 10px;
    letter-spacing: 0.15em;
  }

  .cart-icon {
    width: 17px;
    height: 14px;
  }

  .hero {
    height: 486px;
  }

  .hero-logo {
    top: 141px;
    width: 153px;
  }

  .hero-copy {
    top: 354px;
    width: 210px;
    min-height: 38px;
    font-size: 8px;
    letter-spacing: 0.15em;
    line-height: 12px;
  }

  .section-title-en {
    max-width: 141px;
  }

  .section-title-line {
    width: 150px;
    margin-top: 8px;
  }

  .section-title h2 {
    font-size: 14px;
  }

  .news {
    width: auto;
    min-height: 607px;
    padding: 0 55px 23px;
  }

  .news-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px 20px;
    margin-top: 58px;
  }

  .news-card time {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1;
  }

  .news-card h3 {
    margin-top: 7px;
    font-size: 14px;
    line-height: 15px;
  }

  .concept,
  .story,
  .about,
  .products {
    max-width: none;
    margin-right: 29px;
    margin-left: 29px;
  }

  .concept {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 80px;
  }

  .concept-body {
    display: contents;
  }

  .concept .section-title-inline {
    order: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 0;
    width: 245px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .concept .section-title-inline .section-title-en {
    order: 1;
    display: block;
    margin: 0 auto;
  }

  .concept .section-title-inline .section-title-line {
    order: 2;
    display: block;
    width: 150px;
    margin: 8px auto 7px;
  }

  .concept .section-title-inline h2 {
    order: 3;
    display: block;
    margin: 0;
  }

  .concept-visual {
    order: 2;
  }

  .concept-media {
    aspect-ratio: 316 / 211;
  }

  .concept-body p {
    order: 3;
    margin: 0;
    font-size: 14px;
    line-height: 1.95;
  }

  .story {
    display: flex;
    flex-direction: column;
    margin-right: 28px;
    margin-left: 28px;
    margin-top: 98px;
  }

  .story .section-title-en-story {
    width: 75px;
    height: auto;
  }

  .story .section-title-line {
    width: 150px;
  }

  .story-text {
    order: 3;
    margin: var(--sp-2) var(--sp-2) 0 var(--sp-2);
    font-size: 14px;
    width: auto ;
  }

  .story-gallery {
    order: 2;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px 13px;
    margin-top: 28px;
  }

  .story-main-img {
    order: 1;
    grid-column: 1 / 3;
    width: 100%;
    height: auto;
    aspect-ratio: 1816 / 1213;
  }

  .story-sub-1 {
    order: 2;
    grid-column: 1 / 3;
    height: auto;
    aspect-ratio: 471 / 324;
  }

  .story-sub-2,
  .story-sub-3 {
    grid-column: auto;
    height: auto;
    aspect-ratio: 152 / 104;
  }

  .story-sub-2 {
    order: 3;
  }

  .story-sub-3 {
    order: 4;
  }

  .about {
    margin-top: 88px;
  }

  .about .section-title-en-about {
    width: 75px;
    height: auto;
  }

  .about .section-title-line {
    width: 150px;
  }

  .about-list {
    gap: 60px;
    margin-top: 36px;
  }

  .about-person {
    display: block;
  }

  .about-person img {
    width: 241px;
    height: 288px;
    margin: 0 auto;
  }

  .about-person p {
    width: 299px;
    margin: 25px auto 0;
    font-size: 12px;
    line-height: 1.75;
  }

  .about-person:nth-child(2) img {
    height: 227px;
  }

  .products {
    margin-top: 90px;
  }

  .products .section-title-line {
    width: 180px;
  }

  .product-feature {
    display: block;
    width: 266px;
    margin: 44px auto 0;
  }

  .product-feature img {
    width: 259px;
    height: 259px;
    margin: 0 auto;
  }

  .product-text {
    padding-top: 12px;
  }

  .product-text h3,
  .product-card h3 {
    font-size: 16px;
    line-height: 20px;
  }

  .product-price {
    margin: 1px 0 14px;
    font-size: 16px;
    line-height: 20px;
  }

  .product-text p,
  .product-card p {
    width: 249px;
    margin-right: auto;
    margin-left: auto;
    font-size: 14px;
    line-height: 1.55;
  }

  .product-grid {
    display: grid;
    grid-template-columns: 266px;
    gap: 50px;
    margin-top: 50px;
  }

  .product-card img {
    width: 266px;
    height: 263px;
    margin-bottom: 12px;
  }

  .product-card:first-child img {
    height: 266px;
  }

  .shop {
    display: block;
    margin: 82px 0 0;
    padding-bottom: 8px;
  }

  .shop-info {
    margin: 0 38px;
  }

  .shop-info .section-title-inline {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 150px;
    margin: 0 auto;
    text-align: center;
  }

  .shop-info .section-title-en-shop {
    width: 65px;
    height: auto;
  }

  .shop-info .section-title-line {
    width: 150px;
    margin: 6px auto 0;
  }

  .shop-info .section-title-inline h2 {
    margin: 4px 0 0;
    font-size: 14px;
    line-height: 1;
  }

  .shop-info dl {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.55;
  }

  .shop-info dd {
    margin-bottom: 18px;
  }

  .map-link {
    top: 110px;
    right: -17px;
  }

  .shop-image {
    width: 100%;
    height: auto;
    aspect-ratio: 776 / 477;
    margin-top: 44px;
    object-position: right center;
  }

  .footer-main {
    position: relative;
    display: block;
    width: 100%;
    height: 145px;
    max-width: none;
  }

  .footer-logo {
    position: absolute;
    top: 20px;
    left: 50%;
    width: 82px;
    transform: translateX(-50%);
  }

  .footer-actions {
    position: absolute;
    top: 51px;
    right: 45px;
    display: flex;
    gap: 25px;
    align-items: flex-start;
  }

  .footer-actions .instagram-icon {
    width: 36px;
    height: 36px;
  }

  .footer-cart {
    width: 38px;
    height: 38px;
  }

  .footer-cart .cart-icon {
    width: 38px;
    height: 38px;
  }

  .copyright {
    height: 51px;
    font-size: 12px;
  }
}
