@charset "UTF-8";
@media screen and (max-width: 768px) {
  .is-pc {
    display: none;
  }
}

.is-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .is-sp {
    display: block;
  }
}

@media screen and (max-width: 1024px) {
  .is-overtab {
    display: none;
  }
}

.is-tab {
  display: none;
}
@media screen and (max-width: 1024px) {
  .is-tab {
    display: block;
  }
}

input::-moz-placeholder {
  color: #cdcdcd;
}

input::placeholder {
  color: #cdcdcd;
}

@media screen and (max-width: 768px) {
  input::-moz-placeholder {
    font-size: 0.875rem;
  }
  input::placeholder {
    font-size: 0.875rem;
  }
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* 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 {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/* リキッドレイアウト対応 */
html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media (min-width: 769px) {
  html {
    font-size: 1.3559322034vw;
  }
}
@media (min-width: 1180px) {
  html {
    font-size: 16px;
  }
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Yu Gothic", "游ゴシック", Meiryo, "メイリオ", sans-serif;
  font-weight: 400;
  color: #555;
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s, background-color 0.3s;
}

.pagetop {
  width: 3.75rem;
  height: 3.75rem;
  background: #fff;
  border: 1px solid #c2a26c;
  position: fixed;
  right: 0.875rem;
  bottom: 1.25rem;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

@media screen and (max-width: 768px) {
  .pagetop {
    width: 3.75rem;
    height: 3.75rem;
    background: #fff;
    border: 1px solid #c2a26c;
    position: fixed;
    right: 0.875rem;
    bottom: 1.25rem;
  }
}
.pagetop__wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.pagetop__arrow {
  width: 0.8125rem;
  height: 0.8125rem;
  border-top: 0.09375rem solid #c2a26c;
  border-left: 0.09375rem solid #c2a26c;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

.pagetop__text {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  color: #c2a26c;
  position: absolute;
  bottom: 0.25rem;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.pagetop:hover {
  background: #c2a26c;
}
.pagetop:hover .pagetop__arrow {
  border-top: 0.09375rem solid #fff;
  border-left: 0.09375rem solid #fff;
}
.pagetop:hover .pagetop__text {
  color: #fff;
}

.btn {
  display: inline-block;
  width: 100%;
  text-align: center;
  background: #c2a26c;
  position: relative;
  border: 1px solid #c2a26c;
}

.btn__content {
  color: #fff;
  font-weight: 700;
  line-height: 1;
}

.btn--arrow {
  padding: 1rem 0;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
}

.btn--arrow::after {
  content: "\f054";
  position: absolute;
  font-family: "Font Awesome 5 Free";
  font-size: 0.625rem;
  font-weight: 700;
  color: #fff;
  transform: translateY(-50%);
  top: 50%;
  right: 0.5rem;
  pointer-events: none;
}

.btn--arrow:hover {
  color: #c2a26c;
  background: #fff;
}

.btn--arrow:hover::after {
  color: #c2a26c;
}

.btn--icon--arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.875rem 0;
}

.btn--icon--arrow::after {
  content: "\f054";
  position: absolute;
  font-family: "Font Awesome 5 Free";
  font-size: 0.625rem;
  font-weight: 700;
  color: #fff;
  transform: translateY(-50%);
  top: 50%;
  right: 0.5rem;
  pointer-events: none;
}

.btn--icon--arrow img {
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 0.75rem;
}

.btn--round {
  padding: 1rem 0;
  border-radius: 0.5rem;
  color: #fff;
  transition: background-color 0.3s, color 0.3s;
}

.btn--round i {
  margin-right: 0.375rem;
}

.btn--round:hover {
  background: #fff;
  color: #c2a26c;
}

.btn--big {
  color: #fff;
  font-weight: 1.25rem;
  font-weight: 700;
  padding: 1.5625rem;
  line-height: 1;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .btn--big {
    padding: 1.25rem;
  }
}
.btn--big:hover {
  color: #c2a26c;
  background: #fff;
}

.btn--big--round {
  width: auto;
  font-size: 1.375rem;
  color: #fff;
  font-weight: 700;
  padding: 1.375rem 1.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 1rem;
  transition: background-color 0.2s, color 0.2s;
}

.btn--big--round i {
  margin-right: 0.5rem;
}

.btn--big--round img {
  width: 1.625rem;
  margin-right: 0.5rem;
}

.btn--big--round img:nth-of-type(1) {
  display: block;
}

.btn--big--round img:nth-of-type(2) {
  display: none;
}

.btn--big--round:hover {
  color: #c2a26c;
  background: #fff;
}
.btn--big--round:hover img:nth-of-type(1) {
  display: none;
}
.btn--big--round:hover img:nth-of-type(2) {
  display: block;
}

.btn--text {
  margin: 0 auto;
  display: block;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  padding: 0.75rem 0;
}

@media screen and (max-width: 768px) {
  .btn--text {
    font-size: 1rem;
  }
}
.btn--text:hover {
  background: #9c7d49;
}

.btn--text--white {
  color: #c2a26c;
  background: #fff;
}

.btn--text--white:hover {
  background: #fffbf3;
}

.btn--search {
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
  padding: 1rem 0;
  transition: background-color 0.3s, color 0.3s;
}

.btn--search:hover {
  color: #c2a26c;
  background: #fff;
}

.btn--search i {
  margin-right: 0.5rem;
}

.btn.btn--invalid {
  font-size: 1rem;
  padding: 1.375rem 2.875rem;
  background: #999999;
  border: none;
  pointer-events: none;
  flex-direction: column;
}

.btn.btn--invalid--yet {
  padding: 0.75rem 1.625rem;
}

.btn.btn--invalid span {
  display: block;
  font-size: 0.75rem;
  font-weight: 400;
}

.title {
  font-size: 2.125rem;
  font-weight: 700;
  text-align: center;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .title {
    font-size: 1.5rem;
  }
}
.title span {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: #006837;
  margin-top: 0.5rem;
}

@media screen and (max-width: 768px) {
  .title span {
    margin-top: 0.375rem;
  }
}
.title--bgWhite {
  background: #fff;
  white-space: nowrap;
}

.title--point {
  line-height: 1.2;
}

.title--login {
  font-size: 1.875rem;
}

@media screen and (max-width: 768px) {
  .title--login {
    font-size: 1.375rem;
  }
}
.title-small {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  position: relative;
}

@media screen and (max-width: 768px) {
  .title-small {
    font-size: 1.125rem;
  }
}
.title-small::after {
  content: "";
  display: block;
  width: 4.375rem;
  height: 1px;
  position: absolute;
  right: -5.375rem;
  top: 54%;
  background: #555;
}

@media screen and (max-width: 768px) {
  .title-small::after {
    right: -5rem;
  }
}
.caution {
  display: block;
  font-size: 0.875rem;
}

.caution.caution--required {
  position: absolute;
  right: 0;
  top: -1.625rem;
}

@media screen and (max-width: 768px) {
  .caution.caution--required {
    right: 1.25rem;
    top: 0rem;
  }
}
@media screen and (max-width: 768px) {
  .caution.caution--required--input {
    right: 0;
  }
}
.caution--error {
  color: #ff0000;
  font-weight: 700;
}

.caution--shotage {
  color: #ff0000;
  font-weight: 700;
  font-size: 1.25rem;
  background: #ffe6e6;
  padding: 0.625rem 1.25rem;
  margin-bottom: 1.25rem;
}

.breadcrumb__items {
  display: flex;
  align-items: center;
  margin-top: 0.25rem;
}

.breadcrumb__item {
  font-size: 0.75rem;
}

.breadcrumb__item:not(:first-child) {
  margin-left: 1.25rem;
  position: relative;
}

.breadcrumb__item:not(:first-child)::before {
  content: "\f0da";
  position: absolute;
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  font-size: 0.625rem;
  top: 60%;
  left: -0.8125rem;
  transform: translateY(-50%);
}

.breadcrumb__item a {
  display: inline-block;
  transition: color 0.3s;
}

.breadcrumb__item a:hover {
  color: #9dc8b4;
}

.searchTitle {
  display: flex;
  align-items: center;
  padding-bottom: 0.25rem;
}

.searchTitle img {
  display: inline-block;
  width: 1.25rem;
  margin-right: 0.375rem;
}

.searchTitle span {
  font-weight: 700;
}

.searchTitle--space {
  margin-top: 2.25rem;
}

.pager__items {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pager__item {
  margin: 0 0.1875rem;
  width: 3.125rem;
  height: 3.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
}

.pager__item--hellip {
  width: 1.5625rem;
}

.pager__item a {
  display: inline-block;
  width: 100%;
  height: 100%;
  border: 1px solid #999999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pager__item a:hover {
  background: #c2a26c;
  color: #fff;
}

.pager__item.is-active a {
  background: #c2a26c;
  color: #fff;
}

.model {
  font-size: 0.75rem;
  padding: 0.125rem 0.5rem;
  line-height: 1;
  border: 1px solid #cdcdcd;
}

.btns {
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .btns {
    flex-direction: column-reverse;
    align-items: center;
  }
}
.btns__btn {
  min-width: 18.75rem;
  line-height: 1;
  font-size: 1.125rem;
  font-weight: bold;
  border: 1px solid #c2a26c;
  margin: 0 1.25rem;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .btns__btn {
    width: 100%;
    max-width: 31.25rem;
    margin: 0.625rem auto;
  }
}
.btns__btn1 {
  background: #fff;
  position: relative;
  transition: background-color 0.3s;
}

.btns__btn1:hover {
  background: #fffbf3;
}

.btns__btn1 button {
  color: #c2a26c;
  width: 100%;
  height: 100%;
  display: inline-block;
  padding: 1.5625rem 1.5625rem 1.5625rem 2.25rem;
}

.btns__btn1 i {
  position: absolute;
  top: 50%;
  left: 0.875rem;
  transform: translateY(-50%);
}

.btns__btn2 {
  background: #c2a26c;
  position: relative;
  transition: background-color 0.3s;
}

.btns__btn2:hover {
  background: #9c7d49;
}

.btns__btn2 button {
  color: #fff;
  width: 100%;
  height: 100%;
  display: inline-block;
  padding: 1.5625rem 2.25rem 1.5625rem 1.5625rem;
}

.btns__btn2 i {
  position: absolute;
  top: 50%;
  right: 0.875rem;
  transform: translateY(-50%);
}

.btns__shortage {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.status {
  position: relative;
}

.status::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 10;
  background: rgba(0, 0, 0, 0.5);
}

.status::after {
  color: #fff;
  font-weight: 700;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 11;
}

.status--sold::after {
  content: "売り切れ";
}

.status--yet::after {
  content: "受付前";
}

.status--end::after {
  content: "受付終了";
}

.nostock {
  display: block;
  font-size: 1.25rem;
  color: #ff0000;
  font-weight: 700;
  margin-bottom: 0.375rem;
}

.inner {
  width: 100%;
  max-width: 1230px;
  padding-right: 25px;
  padding-left: 25px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .inner {
    padding-right: 15px;
    padding-left: 15px;
  }
}

.inner-s {
  width: 100%;
  max-width: 950px;
  padding-right: 25px;
  padding-left: 25px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .inner-s {
    padding-right: 15px;
    padding-left: 15px;
  }
}

.inner-xs {
  width: 100%;
  max-width: 850px;
  padding-right: 25px;
  padding-left: 25px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .inner-xs {
    padding-right: 15px;
    padding-left: 15px;
  }
}

.header {
  width: 100%;
  height: 4.375rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 2.5rem;
  background: #fff;
  overflow-x: hidden;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

@media screen and (max-width: 768px) {
  .header {
    height: 3.75rem;
    padding-left: 1rem;
  }
}
.header__left {
  display: flex;
  align-items: center;
  height: inherit;
}

.header__logo__link img {
  width: 8.125rem;
  height: auto;
}

@media screen and (max-width: 768px) {
  .header__logo__link img {
    width: 6.875rem;
  }
}
.header__description {
  font-size: 0.75rem;
  margin-left: 1.5rem;
}

@media screen and (max-width: 1300px) {
  .header__description {
    display: none;
  }
}
.header__right {
  height: inherit;
  display: flex;
  align-items: center;
}

.header__links {
  height: inherit;
  display: flex;
  align-items: center;
}

.header__link {
  display: inline-block;
  height: inherit;
  display: flex;
  align-items: center;
  transition: color 0.3s;
  margin-right: 2.5rem;
}

.header__link:hover {
  color: darkgray;
}

.header__link img {
  width: 1.25rem;
  height: 1.25rem;
}

.header__link__text {
  margin-left: 0.25rem;
}

.header__purchase {
  height: calc(100% - 0.875rem);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.4375rem 0;
  padding: 0 0.625rem 0 0.9375rem;
  border-left: 0.5px solid #d3b37d;
  border-right: 0.5px solid #d3b37d;
  transition: color 0.3s;
  position: relative;
}

.header__purchase::after {
  content: "\f078";
  position: absolute;
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  bottom: -0.25rem;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  font-size: 0.625rem;
  color: #555;
  transition: transform 0.3s, color 0.3s;
}

.header__purchase:hover::after {
  transform: translateX(-50%) translateY(0.1875rem);
  color: #999999;
}

.header__purchase:hover {
  color: darkgray;
}

.header__purchase img {
  width: 1.4375rem;
  height: auto;
}

.header__purchase__text {
  font-size: 0.75rem;
  line-height: 1.2;
  margin-left: 0.4375rem;
}

.header__action {
  display: flex;
  height: inherit;
}

.header__cart {
  height: inherit;
  width: auto;
  background: #fff;
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}

.header__cart:hover {
  background: #fffbf3;
}

.header__cart img {
  width: 1.8125rem;
  height: 1.8125rem;
}

.header__cart__text {
  font-size: 0.75rem;
  font-weight: 700;
  color: #c2a26c;
}

.header__login {
  height: inherit;
  width: auto;
  background: #c2a26c;
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}

.header__login:hover {
  background: #9c7d49;
}

.header__login img {
  height: inherit;
  width: 2rem;
  height: 1.8125rem;
}

.header__login__text {
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
}

.header__hamburger {
  width: auto;
  height: inherit;
  aspect-ratio: 1/1;
  background: #c2a26c;
  position: relative;
  z-index: 9999;
  transition: background-color 0.3s;
}

.header__hamburger.is-active {
  background: transparent;
}

.header__hamburger span {
  width: 1.875rem;
  height: 1px;
  background: #fff;
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(-50%) rotate(0);
  opacity: 1;
  transition: opacity 0.3s, transform 0.3s, background-color 0.3s;
}

.header__hamburger span:nth-last-of-type(1) {
  top: 30%;
}

.header__hamburger span:nth-last-of-type(2) {
  top: 50%;
}

.header__hamburger span:nth-last-of-type(3) {
  top: 70%;
}

.header__hamburger span:nth-last-of-type(4) {
  top: 50%;
}

.header__hamburger.is-active span:nth-last-of-type(1) {
  opacity: 0;
}

.header__hamburger.is-active span:nth-last-of-type(2) {
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
  background: #555;
}

.header__hamburger.is-active span:nth-last-of-type(3) {
  opacity: 0;
}

.header__hamburger.is-active span:nth-last-of-type(4) {
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  background: #555;
}

.header__modal {
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  left: 0;
  transform: translateX(100%);
  transition: transform 0.3s;
}

.header__modal.is-active {
  transform: translateX(0);
}

.header__mask {
  position: fixed;
  z-index: 99;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  display: none;
  background: #555;
  opacity: 0.3;
}

.header__mask.is-active {
  display: block;
}

.footer {
  background: #555;
  padding: 3.75rem 0 0.75rem;
}

@media screen and (max-width: 768px) {
  .footer {
    padding: 2.5rem 0 0.75rem;
  }
}
.footer__body {
  display: flex;
}

@media screen and (max-width: 768px) {
  .footer__body {
    flex-direction: column;
    align-items: center;
  }
}
.footer__logo {
  width: 100%;
  max-width: 7.75rem;
}

.footer__logo__link {
  display: inline-block;
  background: #fff;
  padding: 0.25rem 0.625rem;
}

.footer__contact {
  color: #fff;
  font-weight: 700;
  margin-left: 5rem;
}

@media screen and (max-width: 768px) {
  .footer__contact {
    margin-left: 0;
    margin-top: 1.25rem;
  }
}
@media screen and (max-width: 768px) {
  .footer__title {
    text-align: center;
  }
}
.footer__text {
  font-size: 0.875rem;
  margin-top: 1rem;
}

.footer__copyright {
  margin-top: 3.125rem;
  text-align: center;
  color: #fff;
  font-size: 0.75rem;
}

@media screen and (max-width: 768px) {
  .footer__copyright {
    margin-top: 1.875rem;
  }
}
.spNav {
  width: 100%;
  position: relative;
  padding: 5rem 4.375rem;
  background-image: url(../img/common/nav_bg_sp.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.spNav__actions {
  width: 100%;
  max-width: 31.25rem;
  margin: 0 auto;
  padding: 0 0.75rem;
}

.spNav__action {
  width: 100%;
}

.spNav__action:not(:first-child) {
  margin-top: 1.875rem;
}

.spNav__links {
  width: 100%;
  max-width: 31.25rem;
  margin: 2.25rem auto 0;
}

.spNav__link {
  width: 100%;
  border-top: 1px solid #cdcdcd;
  position: relative;
}

.spNav__link::after {
  content: "\f054";
  position: absolute;
  font-family: "Font Awesome 5 Free";
  font-size: 0.625rem;
  font-weight: 700;
  color: #555;
  transform: translateY(-50%);
  top: 50%;
  right: 1.25rem;
  pointer-events: none;
}

.spNav__link:last-child {
  border-bottom: 1px solid #cdcdcd;
}

.spNav__link a {
  display: inline-block;
  width: 100%;
  padding: 0.9375rem 0;
  font-size: 0.875rem;
  line-height: 1;
  text-align: center;
}

.certification {
  border: 1px solid #cdcdcd;
  padding: 4.75rem 0 3.125rem;
  position: relative;
}

@media screen and (max-width: 768px) {
  .certification {
    padding: 2.5rem 1.25rem 3.125rem;
  }
}
.certification__title {
  position: absolute;
  top: -1.25rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 3.75rem;
}

@media screen and (max-width: 768px) {
  .certification__title--select {
    padding: 0 1.25rem;
  }
  .certification__title--auth {
    padding: 0 1.25rem;
  }
}
.certification__title--login {
  top: -1.0625rem;
}

@media screen and (max-width: 768px) {
  .certification__title--login {
    top: -0.8125rem;
  }
}
.certification__error {
  max-width: 36.25rem;
  margin: 0 auto 3rem;
  padding: 0.5rem 1.25rem;
  background: #ffe6e6;
  color: #ff0000;
  font-weight: 700;
  text-align: center;
  font-size: 0.875rem;
}

@media screen and (max-width: 768px) {
  .certification__error {
    margin: 0 auto 1.75rem;
  }
}
.certification__body {
  max-width: 36.25rem;
  margin: 0 auto;
  position: relative;
}

.certification__content {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .certification__content {
    flex-direction: column;
    justify-content: initial;
  }
}
.certification__content:not(:first-child) {
  margin-top: 1rem;
}

@media screen and (max-width: 768px) {
  .certification__content:not(:first-child) {
    margin-top: 1.75rem;
  }
}
.certification__label {
  font-weight: 700;
  width: 42%;
  padding-top: 0.875rem;
}

@media screen and (max-width: 768px) {
  .certification__label {
    width: 100%;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    padding-top: 0;
  }
}
.certification__label span {
  font-weight: 400;
}

.certification__object {
  width: 58%;
}

@media screen and (max-width: 768px) {
  .certification__object {
    width: 100%;
  }
}
.certification__input {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.certification__input input {
  border: 1px solid #cdcdcd;
  width: 100%;
  padding: 0.8125rem;
}

@media screen and (max-width: 768px) {
  .certification__input input {
    padding: 0.5rem;
  }
}
.certification__input.certification__input--code input {
  text-align: center;
  padding: 0.8125rem 0;
}

@media screen and (max-width: 768px) {
  .certification__input.certification__input--code input {
    padding: 0.5rem 0;
  }
}
.certification__input.certification__input--code input {
  width: 17.4%;
}

.certification__input.certification__input--name {
  position: relative;
}

@media screen and (max-width: 768px) {
  .certification__input.certification__input--name {
    flex-direction: column;
    align-items: start;
  }
}
.certification__input.certification__input--name::before {
  content: "せい";
  display: block;
  position: absolute;
  left: -12%;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .certification__input.certification__input--name::before {
    left: 0;
    top: 25%;
    transform: translateY(-50%);
    font-size: 0.875rem;
  }
}
.certification__input.certification__input--name::after {
  content: "めい";
  display: block;
  position: absolute;
  left: 51%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .certification__input.certification__input--name::after {
    left: 0;
    top: 75%;
    transform: translateY(-50%);
    font-size: 0.875rem;
  }
}
.certification__input.certification__input--name input {
  width: 42.2%;
}

@media screen and (max-width: 768px) {
  .certification__input.certification__input--name input {
    width: 60%;
    margin-left: 2.25rem;
  }
  .certification__input.certification__input--name input:nth-child(2) {
    margin-top: 0.625rem;
  }
}
.certification__input input:focus {
  border: 1px solid #d3b37d;
}

.certification__input span {
  display: inline-block;
  width: 12px;
  height: 2px;
  background: #000;
}

.certification__btn {
  display: block;
  width: 100%;
  max-width: 16.875rem;
  margin: 3rem auto 0;
}

.popular {
  padding: 5rem 0 5.625rem;
  background: #f8f8f8;
}

@media screen and (max-width: 768px) {
  .popular {
    padding: 2.5rem 0 3.125rem;
  }
}
.popular__ranking {
  margin-top: 2.625rem;
}

@media screen and (max-width: 768px) {
  .popular__ranking {
    margin-top: 1.875rem;
    max-width: 33.75rem;
    margin: 0 auto;
  }
}
.popular__search {
  margin-top: 4.375rem;
}

@media screen and (max-width: 768px) {
  .popular__search {
    max-width: 33.75rem;
    margin: 3.75rem auto 0;
  }
}
.popular__search__items {
  margin-top: 1.875rem;
}

@media screen and (max-width: 768px) {
  .popular__search__items {
    margin-top: 1.5rem;
  }
}
.popular__search__price {
  margin-top: 3.125rem;
}

@media screen and (max-width: 768px) {
  .popular__search__price {
    margin-top: 2.5rem;
  }
}
.card__link {
  display: inline-block;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.card__body {
  position: relative;
}

.card__img {
  width: 100%;
  height: auto;
  aspect-ratio: 550/338;
  overflow: hidden;
}

.card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transform: scale(1);
  transition: transform 0.3s;
}

.card__rank {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(-20%) translateY(-20%);
  width: 4.0625rem;
}

@media screen and (max-width: 768px) {
  .card__rank {
    width: 3.5rem;
  }
}
.card__rank--small {
  width: 3.25rem;
}

@media screen and (max-width: 768px) {
  .card__rank--small {
    width: 2.625rem;
  }
}
.card__texts {
  margin-top: 1rem;
}

.card__title {
  font-size: 1rem;
  font-weight: 400;
  display: inline;
}

.card__text {
  display: inline;
}

.card__price {
  text-align: right;
  font-size: 1.25rem;
  font-weight: 700;
  color: #9c7d49;
  margin-top: 0.5rem;
}

@media screen and (max-width: 768px) {
  .card__price {
    margin-top: 0;
  }
}
.card__link:hover .card__img img {
  transform: scale(1.1);
}
.card__link:hover .card__texts {
  text-decoration: underline;
}
.card__link:hover .card__price {
  text-decoration: underline;
}

.ranking__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.ranking__item {
  width: 30.5%;
}

@media screen and (max-width: 768px) {
  .ranking__item {
    width: 100%;
    margin-top: 1.75rem;
  }
}
.ranking__item:nth-child(n+4) {
  width: 22%;
  margin-top: 4.6875rem;
}

@media screen and (max-width: 768px) {
  .ranking__item:nth-child(n+4) {
    width: 46.4%;
    margin-top: 1.75rem;
  }
}
.search__items {
  display: flex;
  flex-wrap: wrap;
}

.search__item {
  border: 1px solid #999999;
  text-align: center;
  background: #fff;
  transition: background-color 0.3s;
}

.search__item--cat {
  width: 23%;
  margin: 0.9375rem 1%;
}

@media screen and (max-width: 1024px) {
  .search__item--cat {
    width: 32%;
    margin: 0.9375rem 0.666665%;
  }
}
@media screen and (max-width: 768px) {
  .search__item--cat {
    width: 46%;
    margin: 0.625rem 2%;
  }
}
.search__item--price {
  width: 18.5%;
  margin: 0.9375rem 0.75%;
}

@media screen and (max-width: 1024px) {
  .search__item--price {
    width: 32%;
    margin: 0.9375rem 0.666665%;
  }
}
@media screen and (max-width: 768px) {
  .search__item--price {
    width: 46%;
    margin: 0.625rem 2%;
  }
}
.search__link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 1.6875rem 1rem;
  line-height: 1;
  position: relative;
  word-break: break-all;
}

@media screen and (max-width: 768px) {
  .search__link {
    font-size: 0.875rem;
    padding: 1.4375rem 1rem 1.4375rem 0.375rem;
  }
}
.search__link::after {
  content: "\f054";
  position: absolute;
  font-family: "Font Awesome 5 Free";
  font-size: 0.625rem;
  font-weight: 700;
  color: #555;
  transform: translateY(-50%);
  top: 50%;
  right: 0.375rem;
  pointer-events: none;
}

.search__item:hover {
  border: 1px solid #d3b37d;
  color: #794c00;
  background: #fffbf3;
}
.search__item:hover .search__link::after {
  color: #c2a26c;
}

.point {
  border: 1px solid #999999;
  box-shadow: 0.4375rem 0.4375rem 0 #c2a26c;
  background: #fff;
  position: relative;
  padding: 4.375rem 0 3.4375rem;
  text-align: center;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .point {
    padding: 3.4375rem 0 2.125rem;
  }
}
.point img {
  position: absolute;
  width: 2.375rem;
  height: 2.375rem;
  top: -1.1875rem;
  left: 50%;
  transform: translateX(-50%);
}

.point span {
  position: absolute;
  display: block;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Montserrat", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Yu Gothic", "游ゴシック", Meiryo, "メイリオ", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: #9c7d49;
  text-transform: uppercase;
}

.banner__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.banner__item {
  margin: 0.5rem;
}

@media screen and (max-width: 768px) {
  .banner__item {
    width: 45%;
  }
}

.banner__link {
  opacity: 1;
  transition: opacity 0.3s;
}

.banner__link:hover {
  opacity: 0.7;
}

.banner__link picture img {
  height: 4.0625rem;
}

.title-subTop {
  margin-top: 4.375rem;
  padding: 3.3125rem 0;
  background-image: url(../img/common/subtitle-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

@media screen and (max-width: 768px) {
  .title-subTop {
    margin-top: 3.75rem;
    padding: 1.875rem 0;
  }
}
.exchange {
  background-image: url(../img/common/point-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom;
  padding: 7.75rem 0 6rem;
}

@media screen and (max-width: 768px) {
  .exchange {
    padding: 6.25rem 0 4.375rem;
  }
}
.exchange__body {
  padding: 3.125rem 0.9375rem 3.375rem;
  border: 1px solid #cdcdcd;
  box-shadow: 0.3125rem 0.3125rem 0 #c2a26c;
  position: relative;
  background: #fff;
}

.exchange__body::before {
  content: "";
  display: block;
  width: 22.5rem;
  height: 2px;
  position: absolute;
  top: -1.5px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
}

@media screen and (max-width: 768px) {
  .exchange__body::before {
    width: 17.5rem;
  }
}
.exchange__heading {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.exchange__heading img {
  width: 1.875rem;
}

@media screen and (max-width: 768px) {
  .exchange__heading img {
    width: 1.25rem;
  }
}
.exchange__title {
  font-size: 1.5rem;
  margin-left: 0.375rem;
}

@media screen and (max-width: 768px) {
  .exchange__title {
    font-size: 1.125rem;
    margin-left: 0.25rem;
    white-space: nowrap;
  }
}
.exchange__text {
  text-align: center;
  font-weight: 500;
  line-height: 1.7;
}

@media screen and (max-width: 768px) {
  .exchange__text {
    font-size: 0.9375rem;
  }
}
.exchange__btn {
  margin: 2.625rem auto 0;
  width: 100%;
  max-width: 18.75rem;
}

@media screen and (max-width: 768px) {
  .exchange__btn {
    max-width: 15rem;
  }
}
.flow__items {
  display: flex;
  justify-content: center;
  position: relative;
}

.flow__items::before {
  content: "";
  display: block;
  width: 28.75rem;
  height: 1px;
  position: absolute;
  top: 1.5625rem;
  left: 50%;
  transform: translateX(-50%);
  background: #c2a26c;
  z-index: -1;
}

@media screen and (max-width: 768px) {
  .flow__items::before {
    width: 75%;
    max-width: 16.25rem;
    top: 1.25rem;
  }
}
.flow__item {
  margin: 0 1.875rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .flow__item {
    margin: 0 0.9375rem;
  }
}
.flow__num {
  width: 3.125rem;
  height: 3.125rem;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1;
  background: #fff;
  border: 1px solid #c2a26c;
  color: #c2a26c;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .flow__num {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1rem;
  }
}
.flow__num.is-active {
  background: #c2a26c;
  color: #fff;
}

.flow__text {
  margin-top: 0.625rem;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .flow__text {
    font-size: 0.875rem;
    text-align: center;
  }
}
.list {
  display: flex;
  justify-content: space-between;
  padding-bottom: 3.125rem;
  border-bottom: 1px solid #cdcdcd;
}

@media screen and (max-width: 768px) {
  .list {
    padding-bottom: 2.5rem;
    flex-direction: column;
  }
}
.list img {
  width: 26.6%;
  height: 100%;
  aspect-ratio: 550/338;
  -o-object-fit: contain;
     object-fit: contain;
}

@media screen and (max-width: 768px) {
  .list img {
    width: 100%;
  }
}
.list__body {
  width: 49%;
}

@media screen and (max-width: 768px) {
  .list__body {
    width: 100%;
    margin-top: 1rem;
  }
}
.list__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 0.625rem;
}

@media screen and (max-width: 768px) {
  .list__title {
    font-size: 1.125rem;
  }
}
.list__info {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  margin-top: 3.125rem;
}

@media screen and (max-width: 768px) {
  .list__info {
    margin-top: 1.25rem;
  }
}
.list__cnt {
  font-weight: 700;
}

.list__cnt dl {
  display: flex;
  align-items: center;
}

.list__cnt__content2 {
  margin-top: 0.625rem;
}

.list__cnt dt {
  margin-right: 1rem;
}

.list__cnt__select {
  position: relative;
}

.list__cnt__select::after {
  content: "";
  position: absolute;
  width: 0.375rem;
  height: 0.375rem;
  border-bottom: 2px solid #999999;
  border-right: 2px solid #999999;
  top: 50%;
  right: 0.625rem;
  transform: rotate(45deg) translateY(-100%);
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  .list__cnt__select::after {
    right: 0.75rem;
  }
}
.list__cnt__select select {
  font-weight: 400;
  border: 1px solid #999999;
  border-radius: 0.3125rem;
  padding: 0 1rem 0 0.625rem;
  color: #555;
}

.list__cnt__select select:focus {
  border: 1px solid #d3b37d;
}

.list__price {
  margin-left: 3.75rem;
}

@media screen and (max-width: 768px) {
  .list__price {
    margin-left: 1.875rem;
  }
}
.list__price__content {
  font-weight: 700;
  color: #9c7d49;
}

.list__price__content dd {
  font-size: 1.875rem;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .list__price__content dd {
    font-size: 1.625rem;
  }
}
.list__cancel {
  width: 16%;
  align-self: center;
}

@media screen and (max-width: 768px) {
  .list__cancel {
    width: 100%;
    margin-top: 1.25rem;
  }
}
.list__cancel__btn {
  display: flex;
  justify-content: flex-end;
}

.list__cancel__btn button {
  line-height: 1;
  padding: 0.625rem 1rem;
  color: #fff;
  background: #555;
  opacity: 1;
  transition: opacity 0.3s;
}

@media screen and (max-width: 768px) {
  .list__cancel__btn button {
    font-size: 0.875rem;
    padding: 0.375rem 0.625rem;
  }
}
.list__cancel__btn button:hover {
  opacity: 0.7;
}

.list-confirm__item {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  .list-confirm__item {
    flex-direction: column;
    justify-content: initial;
    max-width: 33.75rem;
    margin: 0 auto;
  }
}
.list-confirm__img {
  width: 30%;
}

@media screen and (max-width: 768px) {
  .list-confirm__img {
    width: 100%;
  }
}
.list-confirm__img img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 550/338;
}

@media screen and (max-width: 768px) {
  .list-confirm__img img {
    -o-object-position: center;
       object-position: center;
  }
}
.list-confirm__content {
  width: 66%;
}

@media screen and (max-width: 768px) {
  .list-confirm__content {
    width: 100%;
    margin-top: 0.625rem;
  }
}
.list-confirm__body {
  margin-top: 0.375rem;
}

.list-confirm__name {
  font-weight: 700;
}

.list-confirm__unit {
  margin-top: 1rem;
}

@media screen and (max-width: 768px) {
  .list-confirm__unit {
    text-align: right;
    margin-top: 0.625rem;
  }
}
.list-confirm__cnt {
  font-weight: 700;
  font-size: 1rem;
}

.list-confirm__price {
  margin-left: 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #9c7d49;
}

.form {
  border: 1px solid #cdcdcd;
  position: relative;
  padding: 4.375rem 3.75rem;
}

@media screen and (max-width: 768px) {
  .form {
    padding: 3.125rem 1.25rem;
  }
}
.form__title {
  font-size: 1.5rem;
  font-weight: 700;
  background: #fff;
  padding: 0 2.5rem;
  text-align: center;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

@media screen and (max-width: 768px) {
  .form__title {
    font-size: 1.25rem;
    padding: 0 0.9375rem;
    white-space: nowrap;
  }
}
.form__deliveryBtn {
  text-align: center;
}

.form__deliveryBtn button {
  background: #c2a26c;
  font-weight: 700;
  color: #fff;
  border: 1px solid #c2a26c;
  border-radius: 0.375rem;
  padding: 0.75rem 1.5rem;
  transition: background-color 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.form__deliveryBtn button:hover {
  background: #9c7d49;
}

.form__deliveryBtn button i {
  margin-right: 0.5rem;
}

.form__body {
  position: relative;
  margin-top: 2.5rem;
}

.form__content {
  display: flex;
  justify-content: space-between;
  margin-top: 1.875rem;
}

@media screen and (max-width: 768px) {
  .form__content {
    flex-direction: column;
    justify-content: initial;
    margin-top: 1.25rem;
  }
}
.form__content input {
  border: 1px solid #cdcdcd;
  padding: 0.5rem;
}

.form__content input:focus {
  border: 1px solid #d3b37d;
}

.form__content select {
  border: 1px solid #cdcdcd;
  padding: 0.5rem;
}

.form__content select:focus {
  border: 1px solid #d3b37d;
}

.form__label {
  font-weight: 700;
  width: 25%;
  margin-top: 0.375rem;
}

@media screen and (max-width: 768px) {
  .form__label {
    width: 100%;
    margin-top: 0;
  }
}
.form__object {
  width: 75%;
}

@media screen and (max-width: 768px) {
  .form__object {
    width: 100%;
    margin-top: 0.375rem;
  }
}
.form__name {
  display: flex;
  justify-content: space-between;
}

.form__name span {
  display: inline-block;
  text-align: center;
  width: 16%;
}

@media screen and (max-width: 768px) {
  .form__name span {
    width: 30%;
  }
}
.form__name input {
  width: 84%;
}

@media screen and (max-width: 768px) {
  .form__name input {
    width: 70%;
  }
}
.form__input__lastName,
.form__input__firstName {
  width: 50%;
  display: flex;
  align-items: center;
}

.form__input__firstName {
  margin-left: 1rem;
}

.form__prefectures {
  position: relative;
  display: inline-block;
}

.form__prefectures select {
  padding-right: 1rem;
  color: #555;
}

.form__prefectures::after {
  content: "";
  position: absolute;
  width: 0.375rem;
  height: 0.375rem;
  border-bottom: 2px solid #999999;
  border-right: 2px solid #999999;
  top: 50%;
  right: 0.625rem;
  transform: rotate(45deg) translateY(-100%);
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  .form__prefectures::after {
    right: 0.75rem;
  }
}
.form__address input,
.form__address2 input {
  width: 100%;
}

.form__tel__contents {
  display: flex;
  align-items: center;
}

.form__tel__contents li {
  width: 20%;
}

.form__tel__contents input {
  width: 100%;
}

.form__tel__contents .form__hyphen {
  width: 5%;
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .form__tel__contents .form__hyphen {
    width: 8%;
  }
}
.form__post__contents {
  display: flex;
  align-items: center;
}

.form__post__contents li {
  width: 20%;
}

.form__post__contents input {
  width: 100%;
}

.form__post__contents .form__hyphen {
  width: 5%;
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .form__post__contents .form__hyphen {
    width: 8%;
  }
}
.form__addinfo {
  padding: 0 3.75rem;
}

@media screen and (max-width: 768px) {
  .form__addinfo {
    padding: 0 1.25rem;
  }
}
.form__method {
  margin-top: 3.125rem;
  margin-bottom: 3.125rem;
  background: #fffbf3;
  padding: 0.25rem 0;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .form__method {
    margin-top: 1.875rem;
    margin-bottom: 1.25rem;
  }
}
.form__method__text {
  font-weight: 700;
}

.form__time__contents {
  display: flex;
}

.form__time__content {
  position: relative;
}

@media screen and (max-width: 768px) {
  .form__time__content {
    margin-top: 1.25rem;
  }
}
.form__time__content::after {
  content: "";
  position: absolute;
  width: 0.375rem;
  height: 0.375rem;
  border-bottom: 2px solid #999999;
  border-right: 2px solid #999999;
  top: 50%;
  right: 0.625rem;
  transform: rotate(45deg) translateY(-100%);
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  .form__prefectures::after {
    right: 0.75rem;
  }
}
.form__time__content:not(:first-child) {
  margin-left: 0.75rem;
}

.form__time__content span {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-100%);
}

.form__time__content select {
  padding-right: 1.25rem;
  font-size: 0.875rem;
  color: #555;
}

.form__remarks textarea {
  border: 1px solid #cdcdcd;
  width: 100%;
}

.table {
  width: 100%;
  border-collapse: collapse;
}

.table tr {
  display: flex;
  width: 100%;
}

.table__heading {
  width: 25%;
  font-weight: 700;
  padding: 1rem 0;
  border-bottom: 1px solid #cdcdcd;
}

@media screen and (max-width: 768px) {
  .table__heading {
    width: 30%;
    font-size: 0.9375rem;
  }
}
tr:first-child .table__heading {
  border-top: 1px solid #cdcdcd;
}

.table__data {
  width: 75%;
  padding: 1rem 0;
  border-bottom: 1px solid #cdcdcd;
}

@media screen and (max-width: 768px) {
  .table__data {
    width: 70%;
    font-size: 0.9375rem;
  }
}
tr:first-child .table__data {
  border-top: 1px solid #cdcdcd;
}