@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&display=swap");
html,
body {
  position: relative;
  overflow-x: clip;
  margin: 0;
  padding: 0;
}

@media screen and (min-width: 1280px) {
  main {
    padding-top: 50px;
  }
}
@media screen and (max-width: 1279px) {
  main {
    padding-top: 60px;
  }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100000;
}
.header a {
  text-decoration: none;
}
.header ul {
  list-style: none;
}

.header__logo {
  margin: 0;
}
.header__logo img {
  height: auto;
  width: 100%;
  vertical-align: middle;
}

.header__menu__menu-list {
  margin: 0;
  padding: 0;
}
.header__menu__menu-list > li {
  margin: 0;
  padding: 0;
}
.header__menu__menu-list > li.has-child::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 4.5px 0 4.5px;
  border-color: #323232 transparent transparent transparent;
}
.header__menu__menu-list > li a:hover {
  color: #FC4807;
}

.header__contact__btn {
  background: rgb(252, 72, 7);
  background: linear-gradient(0deg, rgb(252, 72, 7) 0%, rgb(252, 170, 7) 100%);
  box-sizing: border-box;
  color: #fff !important;
  text-align: center;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  height: 48px;
  line-height: 48px;
}
.header__contact__btn::before {
  background: url(/common/images/header/ico_mail.svg) no-repeat center/contain;
  content: "";
  display: inline-block;
  margin-right: 4px;
  width: 22px;
  height: 100%;
}
.header__contact__btn:hover {
  color: #FC4807 !important;
  border: 1px solid currentColor;
  background: #fff;
}
.header__contact__btn:hover::before {
  background-image: url(/common/images/header/ico_mail_or.svg);
}

@media screen and (min-width: 1280px) {
  .header {
    padding: 0 3.5%;
    height: 100px;
    color: #323232;
    letter-spacing: 0.028em;
  }
  .header__logo {
    max-width: 290px;
    padding-right: 32px;
    flex-shrink: 10;
  }
  .header__switch {
    display: none;
  }
  .header__menu {
    display: flex;
    align-items: center;
    flex-shrink: 0;
  }
  .header__menu__menu-list {
    display: flex;
    gap: 0 28px;
    font-size: 16px;
    flex-shrink: 0;
  }
  .header__menu__menu-list > li:hover {
    color: #FC4807;
  }
  .header__menu__menu-list > li > a {
    transition: 0.3s ease;
    cursor: pointer;
    color: #323232;
  }
  .header__menu__menu-list > li > a:hover {
    color: #FC4807;
  }
  .header__menu__menu-list > li > span {
    cursor: pointer;
  }
  .header__menu__menu-list > li.has-child:after {
    margin-left: 8px;
    vertical-align: 10%;
    transition: 0.3s ease;
  }
  .header__menu__menu-list > li.has-child:hover::after {
    border-top-color: #FC4807;
    transform: rotate(180deg);
  }
  .header__menu__menu-list__child-list {
    position: fixed;
    top: 100px;
    background: #fff;
    box-sizing: border-box;
    display: flex;
    width: 100vw;
    left: 0;
    padding: 30px 3.5vw;
    justify-content: space-between;
    gap: 0 24px;
  }
  .header__menu__menu-list__child-list::before {
    content: "";
    width: 100dvw;
    position: fixed;
    height: 40px;
    top: 60px;
    left: 0;
  }
  .header__menu__menu-list__child-list > li {
    font-weight: 500;
  }
  .header__menu__menu-list__child-list > li > a {
    color: #323232;
    transition: 0.3s ease;
  }
  .header__menu__menu-list__child-list > li > a img {
    aspect-ratio: 17/10;
    display: block;
    margin: 0 0 8px;
    width: 100%;
    height: auto;
  }
  .header__contact {
    margin: 0 0 0 40px;
    display: flex;
    gap: 0 8px;
  }
  .header__contact__btn {
    width: 165px;
    font-size: 14px;
    transition: 0.5s ease;
  }
}
@media screen and (max-width: 1279px) {
  .header {
    height: 60px;
    padding: 0 16px;
    font-size: 14px;
  }
  .header__logo {
    width: 230px;
    position: absolute;
    z-index: 11;
  }
  .header__switch {
    position: absolute;
    right: 16px;
    top: calc(50% - 1px);
    z-index: 11;
    width: 24px;
    height: 2px;
    background: #323232;
    border-radius: 10px;
  }
  .header__switch::before {
    content: "";
    position: absolute;
    width: 100%;
    border-top: 2px solid #323232;
    border-bottom: 2px solid #323232;
    top: -10px;
    height: 19px;
  }
  .header__switch.is-open {
    background: transparent;
    height: 32px;
    transform: translateY(-50%);
  }
  .header__switch.is-open::before {
    transform: rotate(45deg);
    top: 14px;
    width: 100%;
    height: 2px;
    border: none;
    background: #323232;
  }
  .header__switch.is-open::after {
    position: absolute;
    display: block;
    content: "";
    transform: rotate(-45deg);
    top: 14px;
    width: 100%;
    height: 2px;
    background: #323232;
  }
  .header__menu {
    position: fixed;
    height: 100dvh;
    top: 0;
    overflow: scroll;
    background: #fff;
    z-index: 10;
    right: -100vw;
    width: 100vw;
    padding: 70px 16px 30px;
    box-sizing: border-box;
    transition: 0.6s ease;
  }
  .header__menu.is-open {
    right: 0;
  }
  .header__menu__menu-list > li {
    border-bottom: 1px solid #d4d4d4;
  }
  .header__menu__menu-list > li:last-child {
    border-bottom: none;
  }
  .header__menu__menu-list > li.has-child {
    position: relative;
  }
  .header__menu__menu-list > li.has-child::after {
    position: absolute;
    right: 0;
    top: 22px;
    right: 8px;
    transform: translateY(-50%);
    border-width: 11px 6px 0 6px;
    transition: 0.4s ease;
  }
  .header__menu__menu-list > li.has-child.is-open::after {
    transform: rotate(180deg) translateY(50%);
  }
  .header__menu__menu-list > li.has-child a {
    margin-right: 40px;
  }
  .header__menu__menu-list > li > span {
    padding: 12px 8px;
    display: block;
  }
  .header__menu__menu-list > li > a {
    transition: none;
    color: inherit;
    display: block;
    padding: 12px 8px;
  }
  .header__menu__menu-list__child-list {
    display: none;
    margin: 0 0 0 12px;
    padding: 0;
    font-size: 13px;
  }
  .header__menu__menu-list__child-list > li {
    padding: 12px 8px;
    border-bottom: 1px solid #e5e5e5;
  }
  .header__menu__menu-list__child-list > li:last-child {
    border-bottom: none;
  }
  .header__menu__menu-list__child-list > li > a {
    color: inherit;
    transition: none;
  }
  .header__menu__menu-list__child-list > li > a img {
    display: none;
  }
  .header__menu__menu-list__child-list.is-open {
    display: block;
  }
  .header__contact {
    margin-top: 24px;
  }
}
.footer {
  color: #323232;
  letter-spacing: 0.03em;
  font-family: "Noto Sans JP", sans-serif;
}
.footer a {
  text-decoration: none;
  color: inherit;
}

.footer__main__logo {
  margin: 0;
}
.footer__main__logo img {
  width: 100%;
  height: auto;
  display: block;
}

.footer__main__menu {
  display: flex;
}

.footer__main__menu__menu-list {
  list-style: none;
  font-weight: 700;
  margin: 0;
  padding: 0;
}
.footer__main__menu__menu-list a {
  color: inherit;
}
.footer__main__menu__menu-list a:hover {
  color: #FC4807;
}

.footer__main__menu-list__child-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer__main__menu-list__child-list > li {
  font-weight: 400;
}
.footer__main__menu-list__child-list > li::before {
  content: "-";
  margin-right: 0.5em;
}

.footer__sub {
  background: #F7F7F7;
  text-align: center;
}

.footer__sub__shop-list {
  display: inline-block;
}
.footer__sub__shop-list > dt {
  font-weight: 700;
  text-align: right;
  float: left;
}
.footer__sub__shop-list > dd {
  margin: 0;
  text-align: left;
}
.footer__sub__shop-list > dd::after {
  content: "";
  display: block;
  clear: left;
}

.footer__sub__shop-list__child-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

@media screen and (min-width: 1000px) {
  .footer__main {
    padding: 56px 3.5% 40px;
    display: flex;
    justify-content: space-between;
  }
  .footer__main__logo {
    width: 296px;
  }
  .footer__main__logo > img {
    margin: 0 0 16px;
  }
  .footer__main__logo__copyright {
    font-size: 14px;
  }
  .footer__main__menu {
    font-size: 14px;
    gap: 0 64px;
  }
  .footer__main__menu__menu-list > li + li {
    margin-top: 24px;
  }
  .footer__main__menu__menu-list > li a {
    transition: 0.3s ease;
  }
  .footer__main__menu-list__child-list {
    margin: 12px 0 0 12px;
  }
  .footer__main__menu-list__child-list > li + li {
    margin-top: 8px;
  }
  .footer__sub {
    padding: 40px 0 64px;
  }
  .footer__sub__shop-list {
    font-size: 14px;
  }
  .footer__sub__shop-list > dt {
    width: 120px;
  }
  .footer__sub__shop-list > dd {
    padding: 0 0 16px 160px;
  }
  .footer__sub__shop-list__child-list > li {
    display: inline-block;
  }
  .footer__sub__shop-list__child-list > li:not(:last-child)::after {
    content: "|";
    margin: 0 16px;
  }
  .footer__sub__shop-list__child-list a {
    transition: 0.3s ease;
  }
  .footer__sub__shop-list__child-list a:hover {
    opacity: 0.65;
  }
}
@media screen and (max-width: 999px) {
  .footer {
    font-size: 13px;
  }
  .footer__main {
    padding: 20px 16px 24px;
  }
  .footer__main__logo {
    width: 200px;
  }
  .footer__main__logo__copyright {
    position: absolute;
    bottom: 10px;
    text-align: center;
    width: 100%;
    left: 0;
    font-size: 11px;
  }
  .footer__main__menu {
    justify-content: space-between;
    max-width: 400px;
    margin: 24px 0 0 auto;
  }
  .footer__main__menu__menu-list > li + li {
    margin-top: 12px;
  }
  .footer__main__menu-list__child-list {
    margin: 8px 0 0 8px;
  }
  .footer__main__menu-list__child-list > li + li {
    margin-top: 4px;
  }
  .footer__sub {
    padding: 32px 16px 48px;
  }
  .footer__sub__shop-list > dt {
    margin: 0 0 4px;
    width: 120px;
  }
  .footer__sub__shop-list > dd {
    margin: 0 0 16px 136px;
    line-height: 1.6;
  }
  .footer__sub__shop-list__child-list > li + li {
    margin-top: 4px;
  }
}/*# sourceMappingURL=style.css.map */

#pagePath {
  padding: 85px 53px 25px;
}