:root {
  --colorEB:#EBE9D2;
  --colorB2:#B29F7B;
  --black17:#171717;
  --gray33:#333333;
  --gray99:#999999;
  --notoSans: "Noto Sans JP", sans-serif;
  --notoSerif: "Noto Serif JP", serif;
  --cinzel: "Cinzel", "Noto Serif JP", serif;
  --headerSize: 128px;
  --contentSize: calc(100% - (280/1920)*100%);
  --innerSize: min((140/1920)*100%,140px);
  --innerSp24: 24px;
}
@media (max-width: 767px) {
  :root {
    --headerSize: 76px;
  }
}

h1, h2, h3, h4, h5, h6 {
  color: inherit;
}

ul, ol, dl {
  font-size: 1em;
}

p, th, td, li, dl dt, dl dd, address {
  font-weight: inherit;
}

form, fieldset, legend, label, input, button, select, textarea, .button,
.button.buttonWhite, a.button.buttonWhite, .buttonWhite:visited, .buttonWhite:active, .buttonWhite:link {
  font-family: inherit;
}

a {
  transition: 0.3s ease;
}

a, a:link, a:visited, a:hover {
  color: inherit;
}

@media (max-width: 767px) {
  .pc_only {
    display: none !important;
  }
  .inner--sp {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 1024px) {
  .tb_show {
    display: none !important;
  }
}
@media (max-width: 1023px) {
  .tb_hide {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .sp_only {
    display: none !important;
  }
}
body {
  background: black;
  color: var(--gray99);
  font-family: var(--notoSans);
  font-size: 1.2rem;
  position: relative;
}
body.modal--show {
  overflow: hidden;
  height: 100dvh;
}
@media (max-width: 767px) {
  body.menu--show {
    overflow: hidden;
    height: 100dvh;
  }
}
@media (min-width: 768px) {
  body {
    font-size: 1.6rem;
  }
}
body:after {
  position: absolute;
  bottom: 0;
  content: "";
  display: block;
  background: linear-gradient(#000 0%, #a8a8a8 100%);
  width: 100%;
  height: 1577px;
  opacity: 0.16;
  z-index: -1;
}
@media (max-width: 767px) {
  body:after {
    height: 693px;
  }
}

.wrapper {
  padding-top: var(--headerSize);
}

.wrapper:has(.header.nolink) {
  padding-top: 75px;
}
@media (min-width: 1024px) {
  .wrapper:has(.header.nolink) {
    padding-top: 175px;
  }
}

/*-----------------------------------------
Header
-------------------------------------------*/
.header:not(.nolink) {
  position: fixed;
  top: 0;
  left: 0;
  background: linear-gradient(#000 0%, rgba(0, 0, 0, 0.79) 47.78%, rgba(0, 0, 0, 0.06) 92.61%, rgba(0, 0, 0, 0) 100%);
  z-index: 1000;
  width: 100%;
  height: var(--headerSize);
  display: grid;
  grid-template-columns: 1fr 166px 1fr;
  justify-content: space-between;
  align-content: center;
  padding: 0 22px;
}
@media (min-width: 768px) {
  .header:not(.nolink) {
    grid-template-columns: 1fr auto 1fr;
    padding: 0 36px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .header:not(.nolink) {
    grid-template-columns: 1fr min(30.37109375%, 311px) 1fr;
  }
}
.header__left-nav {
  container-type: inline-size;
}
@media (max-width: 767px) {
  .header__left-nav {
    display: flex;
    display: -webkit-flex;
    align-items: center;
  }
}
.header__left-nav__list {
  display: flex;
  display: -webkit-flex;
  align-items: center;
  gap: 50px;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .header__left-nav__list {
    gap: min(15.625cqw, 50px);
  }
}
.header__left-nav .menu--open {
  display: block;
  width: 20px;
  height: 12px;
  position: relative;
}
@media (min-width: 768px) {
  .header__left-nav .menu--open {
    width: 26px;
    height: 18px;
  }
}
.header__left-nav .menu--open__line {
  position: absolute;
  background: #DBDBDB;
  display: block;
  width: 100%;
  height: 1px;
}
@media (min-width: 768px) {
  .header__left-nav .menu--open__line {
    height: 1.5px;
  }
}
.header__left-nav .menu--open__line1 {
  top: 0;
  left: 0;
}
.header__left-nav .menu--open__line2 {
  top: calc(50% - 0.75px);
  left: 5px;
}
@media (min-width: 768px) {
  .header__left-nav .menu--open__line2 {
    left: 7px;
  }
}
.header__left-nav .menu--open__line3 {
  bottom: 0;
  left: 0;
}
.header__right-nav__list {
  height: 100%;
  display: flex;
  display: -webkit-flex;
  justify-content: flex-end;
  align-items: center;
}
@media (min-width: 768px) {
  .header__right-nav__list {
    gap: 36px;
  }
}
@media (max-width: 767px) {
  .header__right-nav img[width="17"] {
    width: 15px;
  }
}
.header .search-form {
  position: relative;
  transition: all 1s;
  width: 17px;
  height: 44px;
  display: flex;
  display: -webkit-flex;
  align-items: center;
  justify-content: flex-end;
  background: none;
  border-radius: 22px;
}
.header .search-form:hover, .header .search-form:has(.freeword:focus) {
  width: 250px;
  padding-right: 18px;
  background: #262626;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .header .search-form:hover, .header .search-form:has(.freeword:focus) {
    width: min(19.53125vw, 200px);
  }
}
.header .search-form:hover .freeword, .header .search-form:has(.freeword:focus) .freeword {
  display: block;
  opacity: 1;
}
.header .search-form:hover .freeword:-webkit-autofill, .header .search-form:has(.freeword:focus) .freeword:-webkit-autofill {
  opacity: 1;
  -webkit-text-fill-color: var(--colorEB) !important;
  box-shadow: 0 0 0 1000px #262626 inset;
}
.header .search-form:hover .submit, .header .search-form:has(.freeword:focus) .submit {
  pointer-events: all;
}
.header .search-form .freeword {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 44px;
  padding-left: 1em;
  background: none;
  border: none;
  outline: none;
  color: var(--colorEB);
  border-radius: 22px;
  opacity: 0;
}
.header .search-form .freeword:focus {
  outline: none;
}
.header .search-form .freeword:-webkit-autofill {
  opacity: 0;
  -webkit-text-fill-color: var(--colorEB) !important;
  box-shadow: 0 0 0 1000px #262626 inset;
}
.header .search-form .submit {
  border: none;
  background: url(../img/icon/ico-search.svg) no-repeat;
  background-size: contain;
  width: 17px;
  height: 19px;
  cursor: pointer;
  position: relative;
  z-index: 10;
  position: none;
}

.header.nolink {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
}
@media (max-width: 1023px) {
  .header.nolink {
    height: 75px;
    display: grid;
    place-content: center;
  }
  .header.nolink .site-logo {
    width: 166px;
  }
}
@media (min-width: 1024px) {
  .header.nolink {
    padding-top: 80px;
  }
}

/*-----------------------------------------
Menu
-------------------------------------------*/
.gloval-menu {
  display: none;
  position: fixed;
  z-index: 2000;
  width: calc(100% - 40px);
  border-radius: 20px;
  background: #171717;
  box-shadow: 0px 23px 16px rgba(0, 0, 0, 0.76);
  max-height: calc(100dvh - 70px);
  overflow-y: auto;
}
.gloval-menu::-webkit-scrollbar {
  display: none;
}
@media (max-width: 767px) {
  .gloval-menu {
    top: 35px;
    left: 0;
    right: 0;
    margin: auto;
    padding-top: 8px;
  }
}
@media (min-width: 768px) {
  .gloval-menu {
    top: 73px;
    left: 60px;
    width: 427px;
    max-height: calc(100dvh - 150px);
  }
}
@media (max-width: 767px) {
  .gloval-menu__close {
    margin-left: auto;
    display: block;
    width: fit-content;
    position: sticky;
    top: 0;
    right: 8px;
    width: 26px;
  }
}
@media (min-width: 768px) {
  .gloval-menu__close {
    position: absolute;
    top: 12px;
    right: 10px;
  }
}
.gloval-menu__content {
  padding: 47px 47px 76px 35px;
}
@media (max-width: 767px) {
  .gloval-menu__content {
    padding-top: 13px;
  }
  .gloval-menu__content__header {
    margin-bottom: 20px;
  }
  .gloval-menu__content__header__list {
    display: flex;
    display: -webkit-flex;
    gap: 30px;
    margin-bottom: 25px;
  }
  .gloval-menu__content__header .search-form {
    width: 100%;
    position: relative;
  }
  .gloval-menu__content__header .search-form .freeword {
    border: none;
    background: black;
    width: 100%;
    height: 44px;
    border-radius: 80px;
  }
  .gloval-menu__content__header .search-form .submit {
    position: absolute;
    top: 50%;
    right: 17px;
    transform: translateY(-50%);
    border: none;
    background: url(../img/icon/ico-search.svg) no-repeat;
    background-size: contain;
    width: 14px;
    height: 16px;
    z-index: 1;
  }
}
@media (min-width: 768px) {
  .gloval-menu__content {
    padding: 75px 50px 90px;
  }
}
.gloval-menu__block:not(:last-child) {
  margin-bottom: 50px;
}
.gloval-menu__block__dt {
  font-family: var(--cinzel);
  font-size: 1rem;
  color: var(--gray99);
  letter-spacing: 0.23em;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .gloval-menu__block__dt {
    font-size: 1.4rem;
    margin-bottom: 19px;
  }
}
.gloval-menu__block__list {
  color: var(--colorEB);
  font-family: var(--notoSerif);
  letter-spacing: 0.09em;
}
.gloval-menu__block__list li:not(:last-child) {
  margin-bottom: 1em;
}
.gloval-menu__bottom {
  border-radius: 0 0 20px 20px;
  overflow: hidden;
  position: relative;
}
.gloval-menu__bottom__info {
  position: absolute;
  top: 50%;
  left: 40px;
  transform: translateY(-50%);
}
@media (min-width: 768px) {
  .gloval-menu__bottom__info {
    left: 60px;
  }
}
.gloval-menu__bottom__en-ttl {
  font-family: var(--cinzel);
  font-size: 2rem;
  color: var(--colorEB);
  letter-spacing: 0.23em;
}
@media (min-width: 768px) {
  .gloval-menu__bottom__en-ttl {
    font-size: 2.6rem;
  }
}
.gloval-menu__bottom__ttl {
  color: var(--gray99);
  font-family: var(--notoSerif);
  font-size: 1.4rem;
  letter-spacing: 0.18em;
}
@media (min-width: 768px) {
  .gloval-menu__bottom__ttl {
    font-size: 1.9rem;
  }
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1999;
  background: rgba(0, 0, 0, 0.24);
  width: 100%;
  height: 100dvh;
}

/*-----------------------------------------
Footer
-------------------------------------------*/
.footer {
  margin-top: 100px;
  padding-bottom: 265px;
}
@media (max-width: 767px) {
  .footer {
    padding-left: 65px;
    padding-right: 65px;
  }
}
@media (min-width: 768px) {
  .footer {
    margin-top: 147px;
    padding-bottom: 286px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .footer {
    margin-top: 274px;
    padding-bottom: 170px;
  }
}
@media (max-width: 767px) {
  .footer__content__left {
    margin-top: 70px;
  }
}
@media (min-width: 768px) {
  .footer__content {
    width: 82.71484375%;
    margin: auto;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .footer__content__left {
    margin-top: 140px;
  }
}
@media (min-width: 1024px) {
  .footer__content {
    width: 79.1666666667%;
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    flex-direction: row-reverse;
  }
  .footer__content__left {
    width: 20.3947368421%;
  }
  .footer__content__right {
    width: 66.4473684211%;
  }
}
.footer__content__logo {
  text-align: center;
  margin-bottom: 66px;
}
@media (max-width: 767px) {
  .footer__content__logo {
    width: 190px;
    margin: auto;
    margin-bottom: 50px;
  }
}
.footer__content__sns-list {
  display: flex;
  display: -webkit-flex;
  justify-content: space-between;
  margin-bottom: 35px;
}
@media (max-width: 767px) {
  .footer__content__sns-list {
    gap: 33px;
    justify-content: center;
  }
}
@media (min-width: 768px) {
  .footer__content__sns-list {
    justify-content: space-evenly;
    margin-bottom: 45px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .footer__content__sns-list {
    justify-content: center;
    gap: 44px;
  }
}
.footer__content .copyright {
  font-family: var(--cinzel);
  font-size: 0.9rem;
  letter-spacing: 0.23em;
  text-align: center;
}
@media (min-width: 768px) {
  .footer__content .copyright {
    font-size: 1.2rem;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .footer__nav {
    display: grid;
    grid-template-columns: 3.2fr 1fr 1.55fr;
    gap: 8.7890625%;
  }
}
@media (min-width: 1024px) {
  .footer__nav {
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
  }
}
@media (max-width: 767px) {
  .footer__nav__block:not(:last-child) {
    margin-bottom: 34px;
  }
}
.footer__nav__block__ttl {
  font-family: var(--cinzel);
  font-size: 1.3rem;
  letter-spacing: 0.23em;
}
@media (max-width: 767px) {
  .footer__nav__block__ttl {
    padding-bottom: 10px;
    border-bottom: solid 1px #2B2B2B;
    display: flex;
    display: -webkit-flex;
    justify-content: space-between;
    align-items: center;
  }
  .footer__nav__block__ttl:after {
    content: "";
    display: block;
    background: url(../img/icon/ico-down.svg) no-repeat;
    background-size: contain;
    width: 11px;
    height: 6px;
    transition: transform 0.3s ease;
  }
  .footer__nav__block__ttl.on:after {
    transform: rotate(180deg);
  }
}
@media (min-width: 768px) {
  .footer__nav__block__ttl {
    margin-bottom: 40px;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .footer__nav__block__ttl {
    font-size: min(1.26953125vw, 1.3rem);
    margin-bottom: min(3.90625vw, 40px);
  }
}
@media (max-width: 767px) {
  .footer__nav__block__content {
    display: none;
    padding-top: 1em;
  }
}
@media (min-width: 1024px) {
  .footer__nav__block1 {
    width: 47%;
    margin-right: 10px;
  }
}
@media (max-width: 767px) {
  .footer__nav__block1 .footer__nav__list:not(:last-child) {
    margin-bottom: 1em;
  }
}
@media (min-width: 768px) {
  .footer__nav__block1 .footer__nav__block__content {
    display: flex;
    display: -webkit-flex;
    justify-content: flex-start;
  }
}
.footer__nav__list {
  font-size: 1.4rem;
  letter-spacing: 0.026em;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .footer__nav__list {
    font-size: min(1.3671875vw, 1.4rem);
  }
}
.footer__nav__list li:not(:last-child) {
  margin-bottom: 1em;
}

.footer.nolink {
  color: var(--gray99);
  font-family: var(--cinzel);
  font-size: 0.9rem;
  letter-spacing: 0.23em;
}
@media (max-width: 767px) {
  .footer.nolink {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 768px) {
  .footer.nolink {
    padding-left: min(7.2916666667%, 140px);
    padding-right: min(7.2916666667%, 140px);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .footer.nolink {
    padding-left: 75px;
    padding-right: 75px;
  }
}
@media (max-width: 1023px) {
  .footer.nolink {
    margin: 0;
    padding-top: 50px;
    padding-bottom: 105px;
    text-align: center;
  }
}
@media (min-width: 1024px) {
  .footer.nolink {
    margin-top: 62px;
    padding-bottom: 111px;
    font-size: 1.2rem;
  }
}

body:has(.footer.nolink):after {
  content: none;
}

/*-----------------------------------------
goodsTile
-------------------------------------------*/
.goodsTile .images {
  border-radius: 20px;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}
.goodsTile .images img {
  width: 100%;
}
@media (min-width: 768px) {
  .goodsTile .images {
    margin-bottom: 20px;
  }
}
.goodsTile .images .layer-pic {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.goodsTile .images .layer-pic.show {
  opacity: 1;
}
.goodsTile .images .hover-pic {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.goodsTile .images:has(.hover-pic):hover a {
  opacity: 1;
}
.goodsTile .images:hover .hover-pic {
  opacity: 1;
}
@media (min-width: 768px) {
  .goodsTile .images {
    display: block;
  }
  .goodsTile .images img {
    width: 100%;
    transition: transform 0.3s ease;
  }
  .goodsTile .images:hover {
    opacity: 1;
  }
  .goodsTile .images:hover img {
    transform: scale(1.1);
  }
}
.goodsTile__info {
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  font-family: var(--notoSerif);
  color: #DDDDDD;
}
@media (max-width: 767px) {
  .goodsTile__info {
    text-align: center;
  }
}
@media (min-width: 768px) {
  .goodsTile__info {
    font-size: 1.6rem;
  }
}
.goodsTile__info__header {
  position: relative;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .goodsTile__info__header {
    margin-bottom: 22px;
  }
}
.goodsTile__info .goodsName {
  margin-bottom: 2px;
}
@media (min-width: 768px) {
  .goodsTile__info .goodsName {
    margin-bottom: 8px;
  }
}
.goodsTile .favorite-btn {
  position: absolute;
  top: -2px;
  right: 9px;
  width: 12px;
  height: 12px;
}
@media (min-width: 768px) {
  .goodsTile .favorite-btn {
    top: 0;
    right: 20px;
  }
}
.goodsTile .favorite-btn .add_favorite {
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/icon/ico-favorite-off.svg);
  background-size: contain;
}
.goodsTile .favorite-btn .add_favorite.active {
  background: url(../img/icon/ico-favorite-on.svg);
  background-size: contain;
}
.goodsTile .colorchip-list {
  margin: 0;
  display: flex;
  display: -webkit-flex;
  justify-content: center;
  gap: 23px;
}
.goodsTile .colorchip-list .colorchip {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: relative;
}
@media (max-width: 767px) {
  .goodsTile .colorchip-list .colorchip:before {
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    position: absolute;
    top: -4px;
    left: -4px;
  }
}
@media (min-width: 768px) {
  .goodsTile .colorchip-list .colorchip {
    width: 14px;
    height: 14px;
  }
}
.goodsTile .colorchip-list .colorchip.active {
  pointer-events: none;
}
.goodsTile .colorchip-list .colorchip.active:after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border: solid 1px #707070;
  position: absolute;
  top: -4px;
  left: -4px;
  border-radius: 50%;
}
@media (min-width: 768px) {
  .goodsTile .colorchip-list .colorchip.active:after {
    width: 22px;
    height: 22px;
  }
}
.goodsTile .colorchip-list .Black.active:after {
  top: -5px;
  left: -5px;
}

/*-----------------------------------------
Pagination
-------------------------------------------*/
.pagination_bottom {
  margin-top: 70px;
}
@media (min-width: 768px) {
  .pagination_bottom {
    margin-top: 175px;
  }
}
.pagination_bottom .pager__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  color: #747474;
  font-family: var(--cinzel);
}
.pagination_bottom .pager__list__num a, .pagination_bottom .pager__list__num span {
  display: grid;
  place-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  letter-spacing: 0;
  color: unset;
  background: #292929;
}
.pagination_bottom .pager__list__num .current {
  background: none;
  color: var(--colorEB);
  border: solid 1.5px #707070;
}
.pagination_bottom .pager__list__separate {
  margin: 0 7px;
}
.pagination_bottom .pager__list li {
  line-height: 1;
}
.pagination_bottom .pager__list__prev {
  margin-right: 24px;
}
.pagination_bottom .pager__list__next {
  margin-left: 24px;
}

/*-----------------------------------------
Check Swiper
 -------------------------------------------*/
@media (max-width: 767px) {
  .check-swiper-container li {
    width: 105px;
  }
  .check-swiper-container li:not(:last-child) {
    margin-right: 9px;
  }
}
@media (min-width: 768px) {
  .check-swiper-container li {
    width: 250px;
  }
  .check-swiper-container li:not(:last-child) {
    margin-right: 30px;
  }
}
.check-swiper-container li img {
  border-radius: 10px;
}

/*-----------------------------------------
stepListWrapper
 -------------------------------------------*/
.stepListWrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 50px;
  margin-bottom: 54px;
  gap: 4px;
}
@media (max-width: 1023px) {
  .stepListWrapper {
    padding: 0 20px;
  }
}
@media (min-width: 1024px) {
  .stepListWrapper {
    margin-bottom: 65px;
  }
}
.stepListWrapper .stepLabel {
  display: grid;
  place-content: center;
  background: var(--black17);
  font-size: 1rem;
  color: #666;
}
@media (min-width: 768px) {
  .stepListWrapper .stepLabel {
    font-size: 1.4rem;
  }
}
.stepListWrapper .stepLabel.pass {
  background: var(--colorB2);
  color: white;
}
.stepListWrapper .stepLabel:first-child {
  border-radius: 10px 0 0 10px;
}
.stepListWrapper .stepLabel:last-child {
  border-radius: 0 10px 10px 0;
}

/*-----------------------------------------
Fade
 -------------------------------------------*/
.fade {
  opacity: 0;
  transition: 0.8s ease-in-out;
}

.fadeIn {
  opacity: 1;
}
