@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html, body, h1, h2, h3, h4, h5, h6, ul, ol, dl, li, dt, dd, p, div, span, img, a, table, tr, th, td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
}

header, footer, nav, section, article, aside, figure, figcaption {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
  list-style-type: none;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  border: none;
}

a {
  text-decoration: none;
}

body {
  font-size: 14px;
  font-size: 0.875rem;
  font-family: "メイリオ", "Meiryo", sans-serif;
  color: #333;
  background-color: #fff;
}

.noscroll {
  overflow: hidden;
}

a {
  color: #333;
}

.l-header {
  width: 100%;
  background-color: #fff;
}
.l-header__inner {
  width: 100%;
  height: 80px;
  padding-right: 40px;
  padding-left: 40px;
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 900px) {
  .l-header__inner {
    max-width: 1360px;
    height: 88px;
    padding-right: 40px;
    padding-left: 40px;
  }
}

.l-header--fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5;
}

.main {
  width: 100%;
  margin-top: 80px;
}
@media screen and (min-width: 900px) {
  .main {
    margin-top: 88px;
  }
}

.l-section {
  width: 100%;
  padding-top: 26px;
  padding-bottom: 130px;
}

.l-section--2col {
  width: 100%;
}
@media screen and (min-width: 900px) {
  .l-section--2col {
    width: 800px;
    display: flex;
  }
}

.l-section--width-s {
  width: 100%;
}
@media screen and (max-width: 899px) {
  .l-section--width-s {
    margin-top: 18px;
  }
}
@media screen and (min-width: 900px) {
  .l-section--width-s {
    width: 600px;
  }
}

.l-container {
  width: 100%;
  padding-right: 40px;
  padding-left: 40px;
}
@media screen and (min-width: 900px) {
  .l-container {
    max-width: 1360px;
    padding-right: 40px;
    padding-left: 40px;
    margin: 0 auto;
  }
}

.l-map {
  position: relative;
  margin-top: 21px;
}
.l-map::after {
  content: "";
  display: block;
  padding-top: 101.6949152542%;
  overflow: hidden;
}
.l-map > :first-child {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 900px) {
  .l-map {
    position: relative;
  }
  .l-map::after {
    content: "";
    display: block;
    padding-top: 50%;
    overflow: hidden;
  }
  .l-map > :first-child {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.l-map > iframe {
  filter: grayscale(1);
}

.l-footer {
  width: 100%;
  margin-top: 42px;
}
.l-footer__inner {
  width: 100%;
  height: 76px;
  padding-right: 40px;
  padding-left: 40px;
  margin: 0 auto;
}
@media screen and (min-width: 900px) {
  .l-footer__inner {
    display: flex;
    height: 42px;
    max-width: 1360px;
    padding-right: 40px;
    padding-left: 40px;
  }
}

.c-section-title {
  font-size: 14px;
  font-size: 0.875rem;
  margin-bottom: 30px;
}

.c-section-text {
  line-height: 26px;
  margin-top: 30px;
}

.c-drawer__btn {
  display: block;
  border: none;
  padding: 0;
  width: 30px;
  height: 30px;
  position: absolute;
  top: 25px;
  right: 40px;
  z-index: 20;
  background-color: transparent;
}
@media screen and (min-width: 900px) {
  .c-drawer__btn {
    cursor: pointer;
    top: 29px;
    transition: opacity 0.3s;
  }
  .c-drawer__btn:hover, .c-drawer__btn:focus {
    opacity: 0.7;
  }
}
.c-drawer__btn[aria-expanded=true] .c-drawer__bar {
  position: absolute;
  top: 50%;
  left: 0;
}
.c-drawer__btn[aria-expanded=true] .c-drawer__bar:first-of-type {
  transform: rotate(45deg);
  background-color: #fff;
}
.c-drawer__btn[aria-expanded=true] .c-drawer__bar:nth-of-type(2) {
  transform: rotate(-45deg);
  background-color: #fff;
}

.c-drawer__bar {
  display: block;
  width: 30px;
  height: 2px;
  background-color: #333;
  transition: transform 0.3s;
}
.c-drawer__bar:first-of-type {
  transform: translateY(-4px);
}
.c-drawer__bar:nth-of-type(2) {
  transform: translateY(4px);
}

.c-link {
  transition: opacity 0.3s;
}
.c-link:hover, .c-link:focus {
  opacity: 0.7;
}

.c-header-nav {
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  visibility: hidden;
  z-index: 15;
}

.c-nav-list {
  max-width: 1360px;
  padding: 40px;
}
.c-nav-list__item {
  text-transform: uppercase;
}
.c-nav-list__item:not(:first-of-type) {
  margin-top: 14px;
}
.c-nav-list a {
  color: #fff;
  transition: opacity 0.3s;
}
.c-nav-list a:hover, .c-nav-list a:focus {
  opacity: 0.7;
}

.page-numbers {
  display: inline-block;
  padding: 10px;
  transition: opacity 0.3s;
}
@media screen and (min-width: 900px) {
  .page-numbers a:hover,
.page-numbers a:focus {
    opacity: 0.7;
  }
}

.page-numbers + .page-numbers {
  margin-left: 10px;
}

.current {
  font-weight: 700;
}

.p-header__logo {
  width: 180px;
  padding-top: 32px;
  transition: opacity 0.3s;
}
@media screen and (min-width: 900px) {
  .p-header__logo {
    padding-top: 34px;
  }
  .p-header__logo a:hover,
.p-header__logo a:focus {
    opacity: 0.7;
  }
}

.p-product-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  margin-top: -22px;
}
@media screen and (min-width: 900px) {
  .p-product-list {
    margin-top: -40px;
  }
}
.p-product-list__item {
  flex-basis: calc((100% - 4.8%) / 2);
  margin-top: 22px;
  margin-left: 4.8%;
}
@media screen and (max-width: 899px) {
  .p-product-list__item:nth-of-type(2n + 1) {
    margin-left: 0;
  }
}
@media screen and (min-width: 900px) {
  .p-product-list__item {
    flex-basis: calc((100% - (2.6718% * 3)) / 4);
    margin-top: 40px;
    margin-left: 2.6718%;
  }
  .p-product-list__item:nth-of-type(4n + 1) {
    margin-left: 0;
  }
}

.p-product-list__img {
  position: relative;
  width: 100%;
  padding-top: 100%;
  overflow: hidden;
}
.p-product-list__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (min-width: 900px) {
  .p-product-list__img {
    transition: opacity 0.3s;
  }
  .p-product-list__img:hover, .p-product-list__img:focus {
    opacity: 0.7;
  }
}

.p-product-list__body {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.5;
  margin-top: 10px;
}

.p-product__footer {
  margin-top: 30px;
  text-align: center;
}

.p-product {
  margin-top: 30px;
}
.p-product p {
  line-height: 1.857;
}

.p-product__img {
  width: 100%;
}
@media screen and (min-width: 900px) {
  .p-product__img {
    width: 50%;
  }
}

.p-product__body {
  width: 100%;
}
@media screen and (max-width: 899px) {
  .p-product__body {
    margin-top: 30px;
  }
}
@media screen and (min-width: 900px) {
  .p-product__body {
    flex: 1;
    margin-left: 8%;
  }
}

.p-product__price {
  margin-top: 30px;
}

.p-product__details {
  display: flex;
  flex-wrap: wrap;
  line-height: 1.857;
  margin-top: 30px;
}
.p-product__details dt {
  width: 30%;
}
.p-product__details dd {
  width: 70%;
}

.p-category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 10px;
  margin-bottom: 30px;
  margin-left: -8px;
}

.p-category-list__item {
  padding: 4px 8px;
  transition: opacity 0.3s;
}
@media screen and (min-width: 900px) {
  .p-category-list__item:hover, .p-category-list__item:focus {
    opacity: 0.7;
  }
}

.p-sns-list {
  display: flex;
}

.p-sns-list__item {
  text-transform: uppercase;
  transition: opacity 0.3s;
}
.p-sns-list__item:not(:first-of-type) {
  margin-left: 30px;
}
@media screen and (min-width: 900px) {
  .p-sns-list__item a:hover,
.p-sns-list__item a:focus {
    opacity: 0.7;
  }
}

@media screen and (max-width: 899px) {
  .p-copyright {
    margin-top: 10px;
  }
}
@media screen and (min-width: 900px) {
  .p-copyright {
    margin-left: auto;
  }
}

.p-company-info {
  margin-top: 34px;
}

.p-company-data__subject {
  line-height: 1.5;
  padding-top: 20px;
}
@media screen and (min-width: 900px) {
  .p-company-data__subject {
    width: 190px;
    padding: 20px 10px;
  }
}

.p-company-data__text {
  line-height: 1.5;
  padding-bottom: 19px;
  margin-top: 10px;
}
@media screen and (min-width: 900px) {
  .p-company-data__text {
    padding: 19px 10px 20px 190px;
    margin-top: calc(-1.5em - 40px);
  }
}
.p-company-data__text:not(:last-of-type) {
  border-bottom: 1px solid #DCDBDB;
}
/*# sourceMappingURL=style.css.map */