/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role="list"],
ol[role="list"] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
/* custom reset */
img {
  width: auto;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Zen Kaku Gothic New", "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  color: #403d39;
  width: 100%;
  overflow-x: hidden;
}

a:hover {
  transition: none;
}

.c-btn-link {
  position: relative;
  margin-top: 30px;
}

.c-btn-link {
  width: 310px;
}

.c-btn-link {
  height: 50px;
}

.c-btn-link {
  background: #fff;
  border-radius: 100vmax;
  display: flex;
  justify-content: center;
  align-items: center;
}

.c-btn-link:after {
  content: "";
  display: block;
  width: 17px;
}

.c-btn-link:after {
  height: 17px;
}

.c-btn-link:after {
  background-image: url("/img/arrow_right.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  right: 15px;
}

.c-btn-link span {
  font-size: 16px;
}

.c-btn-link span {
  line-height: 19px;
}

.c-btn-link span {
  font-weight: 700;
  color: #000;
  text-align: center;
  font-weight: bold;
}

.header-info {
  width: 100%;
  height: 40px;
  background: #f0f0f1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-info a.info-text {
  font-size: 14px;
  color: #403d39;
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 72px;
  background: #fff;
}

header {
  transition: box-shadow 0.3s ease;
}

header.is-scrolled {
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.05);
}

header .header-left {
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-top header .header-left h1 {
  height: 20px;
}

header .header-left a {
  height: 20px;
  display: block;
}

header .header-left a img {
  height: 100%;
}

header .header-right {
  display: flex;
  align-items: center;
  gap: 40px;
}

header .header-right .header-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

header .header-right .header-links>div,
header .header-right .header-links>a {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

header .header-right .header-links>div img,
header .header-right .header-links>a img {
  width: 100%;
}

header .header-right .header-links .header-search {
  cursor: pointer;
}

header .header-right .header-links .header-cart {
  position: relative;
}

header .header-right .header-links .header-cart .cart-count {
  padding-bottom: 0.1em;
  position: absolute;
  top: -5px;
  right: -10px;
  width: 18px;
  height: 18px;
  background: #e60012;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 12px;
  line-height: 18px;
}

header .header-right .hbg-btn {
  position: relative;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

header .header-right .hbg-btn:hover {
  opacity: 0.7;
}

header .header-right .hbg-btn span {
  width: 100%;
  height: 2px;
  background: #403d39;
  display: block;
  position: absolute;
}

header .header-right .hbg-btn span:nth-child(1) {
  transform: translateY(-7px);
}

header .header-right .hbg-btn span:nth-child(3) {
  transform: translateY(7px);
}

.hbg-bg {
  position: fixed;
  top: 0;
  right: 0;
  width: 100dvw;
  height: 100dvh;
  background: rgba(0, 0, 0, 0.35);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-out;
}

.hbg-bg.-active {
  opacity: 1;
  pointer-events: auto;
}

.hbg-content {
  padding-top: 66px;
  position: fixed;
  top: 0;
  right: -464px;
  width: 464px;
  height: 100dvh;
  background: #fff;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transition: right 0.3s ease-out;
  overflow-y: auto;
}

.hbg-content.-active {
  right: 0;
}

.hbg-content .hbg-close {
  width: 32px;
  height: 32px;
  min-height: 32px;
  position: relative;
  margin-left: auto;
  margin-right: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.hbg-content .hbg-close:hover {
  opacity: 0.7;
}

.hbg-content .hbg-close span {
  width: 100%;
  height: 2px;
  background: #000;
  display: block;
  position: absolute;
}

.hbg-content .hbg-close span:nth-child(1) {
  transform: rotate(45deg);
}

.hbg-content .hbg-close span:nth-child(2) {
  transform: rotate(-45deg);
}

.hbg-content .hbg-main {
  margin: 40px auto 0;
  width: 320px;
  display: flex;
  flex-direction: column;
}

.hbg-content .hbg-main .main-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  text-decoration: none;
}

.hbg-content .hbg-main .main-link:after {
  content: "";
  display: block;
  position: relative;
  width: 6px;
  height: 10px;
  background-image: url("/img/usr/design/arrow_right.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.hbg-content .hbg-main .acc {
  margin-top: 24px;
}

.hbg-content .hbg-main .acc:before {
  content: "";
  display: block;
  position: relative;
  margin-bottom: 24px;
  width: 100%;
  height: 1px;
  background: #f0f0f1;
}

.hbg-content .hbg-main .acc .acc-btn {
  width: 100%;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.hbg-content .hbg-main .acc .acc-btn:hover {
  opacity: 0.7;
}

.hbg-content .hbg-main .acc .acc-btn .acc-ttl {
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
}

.hbg-content .hbg-main .acc .acc-btn .acc-plus {
  width: 12px;
  height: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hbg-content .hbg-main .acc .acc-btn .acc-plus:before,
.hbg-content .hbg-main .acc .acc-btn .acc-plus:after {
  content: "";
  display: block;
  position: absolute;
  width: 12px;
  height: 1px;
  background: #000;
}

.hbg-content .hbg-main .acc .acc-btn .acc-plus:after {
  transform: rotate(90deg);
  transition: transform 0.3s ease-out;
}

.hbg-content .hbg-main .acc .acc-btn.-active .acc-plus:after {
  transform: rotate(0deg);
}

.hbg-content .hbg-main .acc .acc-cont {
  padding: 24px 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.hbg-content .hbg-main .acc .acc-cont.-active {
  max-height: 300px;
}

.hbg-content .hbg-main .acc .acc-cont a {
  font-size: 16px;
  line-height: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
}

.hbg-content .hbg-main .acc .acc-cont a:after {
  content: "";
  display: block;
  position: relative;
  width: 6px;
  height: 10px;
  background-image: url("/img/usr/design/arrow_right.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.hbg-content .hbg-sub {
  flex: 1;
  margin-top: 40px;
  padding: 40px 72px;
  background: #f9f9f9;
  min-height: 498px;
}

.hbg-content .hbg-sub .hbg-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hbg-content .hbg-sub .hbg-links a {
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
}

.hbg-content .hbg-sub .hbg-sns {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: left;
  gap: 8px;
}

.hbg-content .hbg-sub .hbg-sns a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hbg-content .hbg-sub .hbg-sns a img {
  width: 100%;
}

.search-bg {
  position: fixed;
  top: 0;
  right: 0;
  width: 100dvw;
  height: 100dvh;
  background: rgba(0, 0, 0, 0.35);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-out;
}

.search-bg.-active {
  opacity: 1;
  pointer-events: auto;
}

.search-content {
  padding-top: 66px;
  position: fixed;
  top: 0;
  right: -464px;
  width: 464px;
  height: 100dvh;
  background: #fff;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  transition: right 0.3s ease-out;
}

.search-content.-active {
  right: 0;
}

.search-content .search-close {
  width: 32px;
  height: 32px;
  position: relative;
  margin-left: auto;
  margin-right: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.search-content .search-close:hover {
  opacity: 0.7;
}

.search-content .search-close span {
  width: 100%;
  height: 2px;
  background: #000;
  display: block;
  position: absolute;
}

.search-content .search-close span:nth-child(1) {
  transform: rotate(45deg);
}

.search-content .search-close span:nth-child(2) {
  transform: rotate(-45deg);
}

.search-content .search-main {
  margin: 40px auto 0;
}

.search-content .search-main form .searchForm-btn {
  padding: 20px 0;
  width: 320px;
  height: 60px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: #f0f0f1;
  border-radius: 100vmax;
}

.search-content .search-main form .searchForm-btn .searchForm-submit {
  margin: 0;
  padding: 0 0 0 26px;
  width: 46px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  cursor: pointer;
}

.search-content .search-main form .searchForm-btn .searchForm-submit:hover {
  opacity: 0.7;
}

.search-content .search-main form .searchForm-btn .searchForm-submit:before {
  content: "";
  width: 20px;
  height: 20px;
  background: url("/img/usr/design/ico_search.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.search-content .search-main form .searchForm-btn .searchForm-input {
  margin: 0;
  padding: 0 26px 0 0;
  flex: 1;
  height: 60px;
  font-size: 16px;
  line-height: 20px;
  color: #848484;
  background: transparent;
  border: none;
}

.search-content .trend-keywords {
  margin: 40px auto 0;
  width: 320px;
}

.search-content .trend-keywords .keyword-ttl {
  font-size: 18px;
  font-weight: 500;
}

.search-content .trend-keywords .keyword-list {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.search-content .trend-keywords .keyword-list .keyword {
  padding: 8px;
  font-size: 16px;
  line-height: 16px;
  border-radius: 4px;
  border: 1px solid #e4e4e4;
  display: flex;
  align-items: center;
  gap: 0.5em;
  text-decoration: none;
}

.search-content .trend-keywords .keyword-list .keyword:before {
  content: "#";
  font-size: 16px;
  line-height: 16px;
  color: #e60012;
}

footer.pane-footer {
  padding: 0;
  margin-top: 160px;
  width: 100%;
  background-color: #f9f9f9 !important;
}

footer.pane-footer .footer-main {
  padding: 40px 72px;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

footer.pane-footer .footer-main .main-left {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media screen and (max-width: 1560px) {
  footer.pane-footer .footer-main .main-right {
    width: 306px;
    gap: 40px !important;
  }
}

footer.pane-footer .footer-main .main-left .footer-logo {
  height: 20px;
}

footer.pane-footer .footer-main .main-left .footer-logo img {
  height: 100%;
}

footer.pane-footer .footer-main .main-left .footer-sns {
  display: flex;
  gap: 8px;
}

footer.pane-footer .footer-main .main-left .footer-sns a {
  width: 26px;
  height: 26px;
}

footer.pane-footer .footer-main .main-left .footer-sns a img {
  width: 100%;
  height: 100%;
}

footer.pane-footer .footer-main .main-right {
  display: flex;
  flex-wrap: wrap;
  gap: 100px;
}

footer.pane-footer .footer-main .main-right .footer-brand {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

footer.pane-footer .footer-main .main-right .footer-brand .brand-ttl {
  font-size: 14px;
  font-weight: 500;
  color: #000000;
}

footer.pane-footer .footer-main .main-right .footer-brand .brand-list {
  height: 60px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 24px 40px;
}

footer.pane-footer .footer-main .main-right .footer-brand .brand-list+.brand-list {
  height: 20px;
  gap: 24px 30px;
}

footer.pane-footer .footer-main .main-right .footer-brand .brand-list a {
  font-size: 14px;
  line-height: 18px;
  text-decoration: none;
}

footer.pane-footer .footer-main .main-right .footer-information {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

footer.pane-footer .footer-main .main-right .footer-information .information-ttl {
  font-size: 14px;
  font-weight: 500;
  color: #000000;
}

footer.pane-footer .footer-main .main-right .footer-information .information-list {
  height: 144px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 24px 40px;
}

footer.pane-footer .footer-main .main-right .footer-information .information-list a {
  font-size: 14px;
  line-height: 18px;
  text-decoration: none;
}

footer.pane-footer .footer-copy {
  padding: 16px 0;
  margin-left: 50%;
  transform: translateX(-50%);
  width: 1440px;
  border-top: 1px solid #f0f0f1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 18px;
}

@media screen and (min-width: 768px) {
  .u-pc {
    display: block;
  }

  .u-sp {
    display: none;
  }

  a:hover {
    opacity: 0.7;
  }

  .c-btn-link {
    margin-top: 3.5714285714vw;
  }

  .c-btn-link {
    width: 0vw;
  }

  .c-btn-link {
    height: 0vw;
  }

  .c-btn-link {
    width: unset;
    height: unset;
    padding-inline: 0px;
    padding-block: 0px;
  }

  .c-btn-link:after {
    width: 1.2142857143vw;
  }

  .c-btn-link:after {
    height: 1.2142857143vw;
  }

  .c-btn-link:after {
    right: 1.0714285714vw;
  }

  .c-btn-link span {
    font-size: 1.3571428571vw;
  }

  .c-btn-link span {
    line-height: 1.3571428571vw;
  }

  header .header-right .header-links .header-search:hover {
    opacity: 0.7;
  }
}

@media screen and (min-width: 768px) and (max-width: 767px) {
  .c-btn-link {
    padding-inline: 0vw;
  }

  .c-btn-link {
    padding-block: 0vw;
  }
}

@media screen and (min-width: 768px) and (min-width: 768px) {
  .c-btn-link {
    padding-inline: 3.9285714286vw;
  }

  .c-btn-link {
    padding-block: 1.1428571429vw;
  }
}

@media screen and (max-width: 767px) {
  .u-pc {
    display: none;
  }

  .u-sp {
    display: block;
  }

  .c-btn-link {
    margin-top: 8vw;
  }

  .c-btn-link {
    width: 82.6666666667vw;
  }

  .c-btn-link {
    height: 13.3333333333vw;
  }

  .c-btn-link:after {
    width: 4.5333333333vw;
  }

  .c-btn-link:after {
    height: 4.5333333333vw;
  }

  .c-btn-link:after {
    right: 4vw;
  }

  .c-btn-link span {
    font-size: 4.2666666667vw;
  }

  .c-btn-link span {
    line-height: 5.0666666667vw;
  }
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}