*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 20rem;
}

body,
h1,
h2,
p,
dl,
dd,
ul {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  padding: 0;
  color: inherit;
  background: none;
  border: 0;
}

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

address {
  font-style: normal;
}

html {
  font-size: 100%;
}

body {
  color: #333;
  font-family: Arial, "Meiryo", sans-serif;
  font-size: 0.875rem;
  line-height: 1.6;
  background-color: #fff;
}

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

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid #1a5fb4;
  outline-offset: 0.25rem;
}

.l-inner {
  width: 100%;
  max-width: 85rem;
  padding-inline: 2.5rem;
}

.l-site {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.l-main {
  flex: 1;
}

.l-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 5rem;
  background-color: #fff;
}

.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.l-header__logo {
  position: relative;
  z-index: 1;
  display: block;
  width: 11.25rem;
  height: auto;
}

.l-header__logo img {
  width: 100%;
}

.l-footer {
  padding-block: 3rem 1rem;
}

.l-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.25rem;
}

.l-footer__social {
  display: flex;
  gap: 1.75rem;
  font-size: 0.75rem;
  line-height: 1.4;
}

.l-footer__copyright {
  font-size: 0.625rem;
  line-height: 1.4;
}

@media (min-width: 900px) {
  .l-footer {
    padding-block: 4rem 1.25rem;
  }
  .l-footer__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.c-menu-button {
  position: relative;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.375rem;
  width: 1.875rem;
  height: 1.875rem;
  cursor: pointer;
}

.c-menu-button__line {
  display: block;
  width: 1.875rem;
  height: 2px;
  background-color: #333;
  border-radius: 0.25rem;
  transform-origin: center;
  transition: background-color 0.5s ease, transform 0.5s ease;
}

.c-menu-button.is-open .c-menu-button__line:first-child {
  background-color: #fff;
  transform: translateY(0.25rem) rotate(-45deg);
}

.c-menu-button.is-open .c-menu-button__line:last-child {
  background-color: #fff;
  transform: translateY(-0.25rem) rotate(45deg);
}

.c-global-menu {
  position: fixed;
  inset: 0;
  z-index: 1000;
  visibility: hidden;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  transition: visibility 0s linear 0.5s, opacity 0.5s ease;
}

.c-global-menu.is-open {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}

.c-global-menu__list {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  width: 18.75rem;
  padding: 2.25rem 3.125rem;
  color: #fff;
  opacity: 0;
  transform: translateX(-100%);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.c-global-menu.is-open .c-global-menu__list {
  opacity: 1;
  transform: translateX(0);
}

.c-global-menu__link {
  display: inline-block;
  padding: 0.125rem 0;
  color: #fff;
  font-size: 0.875rem;
  line-height: 1.4;
  text-transform: uppercase;
  transition: opacity 0.5s ease;
}
@media (hover: hover) and (pointer: fine) {
  .c-global-menu__link:hover {
    opacity: 0.6;
  }
}

.c-global-menu__link[aria-current=page] {
  font-weight: 700;
}

@media (prefers-reduced-motion: reduce) {
  .c-menu-button__line,
  .c-global-menu,
  .c-global-menu__list,
  .c-global-menu__link {
    transition-duration: 0.01ms;
  }
}
.c-page-title {
  font-family: Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
}

.c-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 1.25rem;
  row-gap: 2.5rem;
}

.c-product-card__link {
  display: block;
  transition: opacity 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .c-product-card__link:hover {
    opacity: 0.75;
  }
}

.c-product-card__image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.c-product-card__title {
  margin-top: 0.5rem;
  font-family: "Meiryo", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.5;
}

.c-product-card__price {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.5;
}

@media (min-width: 900px) {
  .c-product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2.1875rem;
  }
}
.p-home {
  padding-top: 5rem;
}

.p-home__more {
  display: block;
  width: fit-content;
  margin: 2.5rem auto 0;
  padding: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.5;
  transition: opacity 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .p-home__more:hover {
    opacity: 0.6;
  }
}

.p-products {
  padding-top: 7.5rem;
}

.p-products .c-product-grid {
  margin-top: 1.875rem;
}

.p-products__pagination {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 2.5rem;
}

.p-products__pagination a {
  padding: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

.p-product-detail {
  max-width: 55rem;
  padding-top: 7.5rem;
}

.p-product-detail__body {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
  margin-top: 1.875rem;
}

.p-product-detail__image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.p-product-detail__content {
  font-family: "Meiryo", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 0.875rem;
  line-height: 1.7;
}

.p-product-detail__description {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}

.p-product-detail__price {
  margin-top: 1.125rem;
  font-family: Arial, "Meiryo", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
}

.p-product-detail__spec {
  margin-top: 1.5rem;
  font-family: Arial, "Meiryo", sans-serif;
  font-size: 0.75rem;
  line-height: 1.5;
}

.p-product-detail__spec div {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
}

.p-product-detail__back {
  display: block;
  width: fit-content;
  margin: 3.5rem 0 0 auto;
  padding: 0.25rem;
  font-size: 0.75rem;
  line-height: 1.5;
  transition: opacity 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .p-product-detail__back:hover {
    opacity: 0.6;
  }
}

@media (min-width: 900px) {
  .p-product-detail__body {
    display: grid;
    grid-template-columns: 25rem 1fr;
    gap: 4rem;
    margin-top: 1.75rem;
  }
  .p-product-detail__content {
    padding-top: 0.125rem;
  }
  .p-product-detail__back {
    margin-top: 3.5rem;
  }
}
.p-about {
  padding-top: 7.5rem;
}

.p-about__content {
  max-width: 37.5rem;
}

.p-about__text {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-top: 1.875rem;
  font-family: "Meiryo", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 0.875rem;
  line-height: 1.9;
}

.p-company {
  padding-top: 7.5rem;
}

.p-company__content {
  max-width: 37.5rem;
}

.p-company__profile {
  margin-top: 1.875rem;
  font-family: "Meiryo", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  font-size: 0.875rem;
  line-height: 1.7;
}

.p-company__profile > div {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  padding-block: 0.9375rem;
  border-bottom: 1px solid #dcdddf;
}

.p-company__profile dt {
  flex: none;
}

.p-company__map {
  width: 100%;
  margin-top: 1.25rem;
  aspect-ratio: 2/1;
  object-fit: cover;
}

@media (min-width: 900px) {
  .p-company__profile > div {
    flex-direction: row;
    gap: 0;
    padding-block: 1rem;
  }
  .p-company__profile dt {
    flex: 0 0 11.25rem;
  }
  .p-company__map {
    margin-top: 1.5rem;
  }
}/*# sourceMappingURL=style.css.map */