@charset "UTF-8";
/* 1440カンプ →  1200*/
:root {
  --scale: 0.0833333333vw;
  --max: 1;
}
@media screen and (max-width: 767px) {
  :root {
    --scale: 0.1633986928vw;
    --scale02: 0.2659574468vw; /* 376用 */
    --max: 10;
  }
}

/* スマホ用の表示の時はis-pcは非表示 */
@media (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
/* PC用の表示の時はis-spは非表示 */
@media (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
header,
footer {
  font-family: "Noto Sans JP", sans-serif;
  color: #595757;
}
header img,
footer img {
  width: 100%;
  max-width: 100%;
  border: none;
  vertical-align: bottom;
  height: auto;
}

/*------------------------------
header
------------------------------*/
@media (min-width: 768px) {
  header {
    background: #fbf9f4;
    padding: 20px 0;
  }
}
@media (max-width: 767px) {
  header {
    position: absolute;
    top: 0%;
    left: 0%;
    width: 100%;
    z-index: 500;
  }
}

.header__inner {
  width: 94%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .header__inner {
    width: 83%;
    padding-top: 4%;
    padding-top: 15px;
  }
}

.header__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  width: 180px;
}
.header__logo a {
  display: block;
  line-height: 1;
}
@media (max-width: 767px) {
  .header__logo {
    width: 26%;
    width: 80px;
  }
}

.header__nav {
  padding-right: 20px;
}

.header__menu {
  display: flex;
  gap: 0 clamp(0px, calc(20 * var(--scale)), calc(20px * var(--max)));
  display: flex;
  gap: 0 40px;
  font-size: 18px;
}
.header__menu li a {
  display: inline-block;
}
@media (max-width: 767px) {
  .header__menu {
    display: none;
  }
}

.drawer-icon {
  position: absolute;
  top: 0;
  right: 0;
  width: 13%;
  width: 49px;
  aspect-ratio: 1/1;
  z-index: 300;
  display: none;
  transition: transform 0.5s ease 0s;
  background: #787a7d;
  border-radius: clamp(0px, calc(10 * var(--scale02)), calc(10px * var(--max))) 0 0 clamp(0px, calc(10 * var(--scale02)), calc(10px * var(--max)));
  cursor: pointer;
  transform: translateY(28%);
}
@media (max-width: 767px) {
  .drawer-icon {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.drawer-icon.is-active .drawer-icon__bar1 {
  transform: translateY(-50%) rotate(-45deg);
  top: 50%;
}
.drawer-icon.is-active .drawer-icon__bar2 {
  display: none;
}
.drawer-icon.is-active .drawer-icon__bar3 {
  transform: translateY(-50%) rotate(45deg);
  top: 50%;
}

.drawer-icon__bars {
  width: 60%;
  aspect-ratio: 30/23;
  display: block;
  position: relative;
  z-index: 400;
}

.drawer-icon__bar1,
.drawer-icon__bar2,
.drawer-icon__bar3 {
  position: absolute;
  width: 100%;
  height: clamp(0px, calc(2 * var(--scale02)), calc(2px * var(--max)));
  background: #fff;
  top: 0;
  left: 0;
}

.drawer-icon__bar1 {
  top: 0;
  transition: transform 0.3s;
}

.drawer-icon__bar2 {
  top: 50%;
  transform: translateY(-50%);
}

.drawer-icon__bar3 {
  top: 100%;
  transition: transform 0.3s;
  transform: translateY(-100%);
}

.drawer-content {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 299;
  transform: translateX(105%);
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain; /* scroll伝番防止 */
}
.drawer-content.is-active {
  transform: translateX(0);
}

.drawer-menu {
  background: #fff;
  width: clamp(0px, calc(250 * var(--scale02)), calc(250px * var(--max)));
  border-top: clamp(0px, calc(5 * var(--scale)), calc(5px * var(--max))) solid rgba(120, 122, 125, 0.8);
  letter-spacing: 0.2em;
  font-size: clamp(0px, calc(20 * var(--scale02)), calc(20px * var(--max)));
}
.drawer-menu li {
  position: relative;
  padding: clamp(0px, calc(9.4 * var(--scale02)), calc(9.4px * var(--max))) 0;
  padding-left: 25%;
}
.drawer-menu li::before {
  content: "";
  position: absolute;
  background: url(../img/home.svg) no-repeat center center/contain;
  aspect-ratio: 1/1;
  transform: translate(0%, -50%);
  width: clamp(0px, calc(20 * var(--scale02)), calc(20px * var(--max)));
  left: 1.1em;
  top: 50%;
}
.drawer-menu li:nth-child(1)::before {
  background: url(../img/home.svg) no-repeat center center/contain;
}
.drawer-menu li:nth-child(2)::before {
  background: url(../img/about.svg) no-repeat center center/contain;
}
.drawer-menu li:nth-child(3)::before {
  background: url(../img/items.svg) no-repeat center center/contain;
}
.drawer-menu li:nth-child(4)::before {
  background: url(../img/buy.svg) no-repeat center center/contain;
}
.drawer-menu li:nth-child(5)::before {
  background: url(../img/news.svg) no-repeat center center/contain;
}
.drawer-menu li:nth-child(6)::before {
  background: url(../img/blog.svg) no-repeat center center/contain;
}
.drawer-menu li:nth-child(7)::before {
  background: url(../img/contact.svg) no-repeat center center/contain;
}
.drawer-menu li:last-child {
  background: rgba(120, 122, 125, 0.8);
  color: #fff;
}
/*------------------------------
footer
------------------------------*/
footer {
  background: #6dc6ce;
  padding: 27px 0 40px;
  position: relative;
}
footer::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url(../img/img_q.png) no-repeat center center/contain;
  width: 240px;
  aspect-ratio: 498/481;
  pointer-events: none;
}
@media (max-width: 767px) {
  footer {
    padding: 5% 0;
  }
  footer::before {
    width: 27%;
  }
}

.footer__logo {
  width: 180px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .footer__logo {
    width: clamp(0px, calc(80 * var(--scale02)), calc(80px * var(--max)));
    margin-top: 1%;
  }
}

.footer__sns {
  margin-top: clamp(0px, calc(10 * var(--scale)), calc(10px * var(--max)));
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 0 clamp(0px, calc(15 * var(--scale)), calc(15px * var(--max)));
}
.footer__sns li {
  width: clamp(0px, calc(50 * var(--scale)), calc(50px * var(--max)));
}
@media (max-width: 767px) {
  .footer__sns {
    margin-top: 2%;
  }
}

.footer__menu {
  margin-top: clamp(0px, calc(35 * var(--scale)), calc(35px * var(--max)));
  display: flex;
  justify-content: center;
  gap: 0 clamp(0px, calc(40 * var(--scale)), calc(40px * var(--max)));
}
.footer__menu li a {
  font-size: clamp(0px, calc(15 * var(--scale)), calc(15px * var(--max)));
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.1em;
  display: block;
}
@media (max-width: 767px) {
  .footer__menu {
    margin-top: 10%;
  }
  .footer__menu li a {
    font-size: clamp(0px, calc(10 * var(--scale02)), calc(10px * var(--max)));
  }
}

.c-pagination {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 16px;
}
.c-pagination span, .c-pagination a {
  font-size: 24px;
}
.c-pagination .page-numbers.current {
  color: #a0c1a1;
  font-weight: 700;
}
@media (max-width: 767px) {
  .c-pagination span, .c-pagination a {
    font-size: 16px;
  }
}
/*# sourceMappingURL=header_footer.css.map */