@charset "UTF-8";
/*
A modern CSS reset 2023 / 9 / 18
https://github.com/Andy-set-studio/modern-css-reset
*/
*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
      text-size-adjust: none;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul[role=list], ol[role=list] {
  list-style: none;
}

body {
  min-height: 100vh;
  line-height: 1.5;
}

h1, h2, h3, h4, button, input, label {
  line-height: 1.1;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  color: currentColor;
}

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

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

textarea:not([rows]) {
  min-height: 10em;
}

:target {
  scroll-margin-block: 5ex;
}

@-webkit-keyframes fadeIn {
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeOut {
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes clipPath {
  100% {
    clip-path: inset(0);
  }
}
@keyframes clipPath {
  100% {
    clip-path: inset(0);
  }
}
@-webkit-keyframes clipPathCircle {
  100% {
    clip-path: circle(100% at 50% 50%);
  }
}
@keyframes clipPathCircle {
  100% {
    clip-path: circle(100% at 50% 50%);
  }
}
p,
ul,
ol,
h1,
h2,
h3,
figure,
dl,
dd,
button,
pre {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

ul,
ol {
  list-style: none;
}

img,
video {
  max-width: 100%;
  vertical-align: bottom;
  line-height: 1;
}

button {
  color: currentColor;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  button:hover {
    opacity: 0.5;
  }
}

a {
  color: currentColor;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.5;
  }
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

body {
  font-family: "Shuei NijimiMGo B JIS2004", sans-serif;
  font-size: 1.5rem;
  overflow-wrap: anywhere; /* 収まらない場合に折り返す */
  word-break: normal; /* 単語の分割はデフォルトに依存 */
  line-break: strict; /* 禁則処理を厳格に適用 */
}

[x-cloak],
[v-cloak] {
  display: none !important;
}

@media (min-width: 641px) {
  .device-sp {
    display: none;
  }
}

.device-pc {
  display: none;
}
@media (max-width: 600px) {
  .device-pc {
    display: block;
  }
}

br:not(.sp-br):not(.sp) {
  display: none;
}
@media (min-width: 641px) {
  br:not(.sp-br):not(.sp) {
    display: block;
  }
}

body::before {
  content: "";
  display: block;
  background: url(../images/bg-sp.webp);
  background-size: cover;
  background-position: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  z-index: -1;
}

@media (min-width: 641px) {
  body::before {
    background: url(../images/bg.webp);
  }
}
body.menu-open {
  overflow: hidden;
}
body.menu-open::after {
  content: "";
  display: block;
  background-color: rgba(119, 119, 119, 0.5);
  backdrop-filter: blur(5px);
  z-index: 1;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
}

.header {
  --header-h: 65px;
  position: fixed;
  z-index: 20;
  width: 100%;
}
.header-bar {
  position: relative;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: var(--header-h);
  padding: 0 28px;
  background-color: rgb(255, 255, 255);
  -webkit-transition: all 0.35s ease-out;
  transition: all 0.35s ease-out;
}
.header-bar img {
  width: 100%;
  height: auto;
}
.header-bar p:last-of-type {
  width: 22px;
}
.header-bar .navbar-brand {
  min-height: auto;
}
.header-bar .navbar-brand img {
  width: 58px;
  -webkit-filter: invert(48%) sepia(0%) saturate(3%) hue-rotate(103deg) brightness(98%) contrast(92%);
          filter: invert(48%) sepia(0%) saturate(3%) hue-rotate(103deg) brightness(98%) contrast(92%);
}
.header-bar .navbar-menu-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 26px;
}
.header-bar .navbar-cart img {
  -webkit-filter: invert(22%) sepia(10%) saturate(16%) hue-rotate(325deg) brightness(98%) contrast(87%);
          filter: invert(22%) sepia(10%) saturate(16%) hue-rotate(325deg) brightness(98%) contrast(87%);
}
@media (max-width: 600px) {
  .header-bar .navbar-center-logo {
    margin-left: 12px;
  }
}
.header-menu {
  position: absolute;
  left: 0;
  right: 0;
  background-color: rgb(255, 255, 255);
  -webkit-transition: all 0.35s ease-out;
  transition: all 0.35s ease-out;
  opacity: 0;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
@media (min-width: 992px) {
  .header-menu {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    border-radius: 0 0 0 8px;
  }
}
.header-menu.open {
  opacity: 1;
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}
@media (min-width: 992px) {
  .header-menu.open {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
}
.header-menu ul {
  padding: 20px 0;
  max-width: 15em;
  margin: 0 auto;
}
.header-menu ul li {
  padding: 10px 0;
}
.header-menu ul a {
  color: currentColor;
  font-size: 1.4rem;
  line-height: 1;
  letter-spacing: 0.42px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 0.75rem;
}
.header-menu ul span {
  display: inline-block;
  width: 28px;
}
.header-menu ul + ul {
  border-top: 0.5px solid;
}
.header-menu ul + ul a {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 992px) {
  .header {
    display: block;
  }
  .header-bar .navbar-brand img {
    width: initial;
  }
  .header-menu {
    left: auto;
    padding: 30px 45px 30px 50px;
  }
}

.hamburger {
  position: relative;
  width: 24px;
  height: 16px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  cursor: pointer;
}
.hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #4D4D4D;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: all 0.35s ease-out;
  transition: all 0.35s ease-out;
}
.hamburger span:first-of-type {
  top: 0;
}
.hamburger span:nth-of-type(2) {
  top: 50%;
}
.hamburger span:last-of-type {
  top: 100%;
}
.hamburger.open span:first-of-type {
  top: 50%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.hamburger.open span:nth-of-type(2) {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  opacity: 0;
}
.hamburger.open span:last-of-type {
  top: 50%;
  bottom: unset;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

footer {
  font-family: "Noto Sans", "Noto Sans JP", sans-serif;
  color: #2E2E2E;
  font-weight: 400;
  letter-spacing: 0;
  background-color: #FFFCF9 !important;
  border: 1px solid #FFFCF9;
  -webkit-font-smoothing: subpixel-antialiased;
  z-index: 1;
  position: relative;
}
footer dl {
  margin: 0;
}
footer dd {
  margin-left: 0;
}
footer a {
  color: #2E2E2E;
  text-decoration: none;
}
footer p {
  margin: 0;
}
footer .footer-inner {
  width: min(100% - 0px, 1280px);
  margin-right: auto;
  margin-left: auto;
  margin-top: 32px;
  margin-bottom: 32px;
}
@media (min-width: 641px) {
  footer .footer-inner {
    width: min(100% - 44px, 1280px);
  }
}
@media (min-width: 992px) {
  footer .footer-inner {
    width: min(100% - 80px, 1280px);
  }
}
footer .footer-inner hr {
  margin-top: 22px;
  margin-bottom: 22px;
  border: 0.5px solid #D9D9D9;
  height: 0;
}
footer .footer-link {
  width: 18em;
  margin-right: auto;
  margin-left: auto;
  font-weight: 700;
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 641px) {
  footer .footer-link {
    width: initial;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (min-width: 992px) {
  footer .footer-link {
    width: 100%;
  }
}
footer .footer-link ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 32px;
}
@media (min-width: 641px) {
  footer .footer-link ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
footer .footer-link a {
  display: block;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  font-weight: 600;
}
footer .footer-sns {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 28px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
}
@media (min-width: 641px) {
  footer .footer-sns {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media (min-width: 992px) {
  footer .footer-sns {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    gap: 72px;
  }
}
@media (min-width: 641px) {
  footer .footer-sns + hr {
    border-color: transparent !important;
    background-color: transparent !important;
    margin-top: 0;
  }
}
footer .footer-sns .hb-facebook {
  color: rgb(53, 120, 229);
}
footer .footer-sns .hb-line {
  color: rgb(6, 199, 85);
}
footer .footer-sns dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
}
@media (min-width: 641px) {
  footer .footer-sns dl {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 16px;
  }
}
footer .footer-sns dt {
  font-weight: 600;
}
@media (min-width: 992px) {
  footer .footer-sns dt {
    font-size: 13px;
  }
}
footer .footer-sns ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 32px;
}
@media (min-width: 992px) {
  footer .footer-sns ul {
    padding-top: 0;
  }
}
footer .footer-sns ul img {
  width: 36px;
  padding: 0 2px;
}
@media (min-width: 641px) {
  footer .footer-sns ul img {
    padding: 0;
  }
}
@media (min-width: 992px) {
  footer .footer-sns ul img {
    width: 36px;
  }
}
footer .footer-sns ul .hb-twitter img {
  width: 31px;
}
footer .footer-sns span {
  display: none;
}
footer .footer-sns .hb-email {
  font-weight: 600;
  font-size: 14px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  gap: 14px;
}
@media (min-width: 992px) {
  footer .footer-sns .hb-email {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end;
  }
}
footer .footer-sns .hb-email:before {
  font-size: 40px;
}
@media (min-width: 641px) {
  footer .footer-sns .hb-email:before {
    font-size: 24px;
  }
}
footer .footer-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
  font-size: 14px;
}
@media (min-width: 641px) {
  footer .footer-contact {
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 32px;
  }
}
footer .footer-copyright {
  width: min(100% - 32px, 1280px);
  margin-right: auto;
  margin-left: auto;
  font-size: 12px;
  color: #767676;
}
@media (min-width: 641px) {
  footer .footer-copyright {
    width: 100% !important;
  }
}
@media (min-width: 992px) {
  footer .footer-copyright {
    grid-column: 1/-1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    width: 100%;
  }
}
footer .footer-copyright a {
  color: #767676;
}
footer .footer-copyright ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5em;
  margin-bottom: 2em;
}
@media (min-width: 992px) {
  footer .footer-copyright ul {
    margin-bottom: 0;
  }
}
footer .footer-copyright ul li {
  white-space: nowrap;
}
footer .footer-copyright ul li:not(:last-child):after {
  content: "|";
  position: relative;
  bottom: 1px;
  margin-left: 1em;
  margin-right: 1em;
}
footer .footer-copyright .footer-copyright-name {
  font-size: 10px;
  text-align: center;
}/*# sourceMappingURL=common.css.map */