@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
/* デフォルトのpaddingを削除 */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
/* デフォルトのmarginを削除 */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core body defaults */
/* bodyのデフォルトを定義 */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
/* class属性を持つul、ol要素のリストスタイルを削除 */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
/* classを持たない要素はデフォルトのスタイルを取得 */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
/* img要素の扱いを簡単にする */
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/* Inherit fonts for inputs and buttons */
/* inputやbuttonなどのフォントは継承を定義 */
input,
button,
textarea,
select {
  font: inherit;
  outline: none;
}

/* Remove all animations and transitions for people that prefer not to see them */
/* 見たくない人用に、すべてのアニメーションとトランジションを削除 */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

html {
  font-feature-settings: "palt";
  overflow-x: hidden;
}

body {
  width: 100%;
  -webkit-text-size-adjust: none;
  font-family: "Noto Sans JP", sans-serif, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Helvetica Neue", sans-serif;
  color: #221815;
  font-size: 15px;
  line-height: 1;
  padding-top: 140px;
  overflow-x: hidden;
  background-color: #f9f8f4;
}
@media screen and (max-width: 768px) {
  body {
    padding-top: 80px;
    font-size: 13px;
  }
}

@media screen and (min-width: 769px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}
@keyframes show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.contents-inner {
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1040px) {
  .contents-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 768px) {
  .contents-inner {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

#globalHeader {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  background-color: #f9f8f4;
}
@media screen and (min-width: 769px) {
  #globalHeader {
    width: 100%;
    height: 140px;
  }
  #globalHeader .contents-inner {
    max-width: 1530px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    display: -webkit-flex;
    flex-wrap: nowrap;
    padding: 0 35px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1050px) {
  #globalHeader .contents-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1300px) {
  #globalHeader .contents-inner .logo {
    width: 150px;
  }
}
@media screen and (min-width: 769px) {
  #globalHeader .global-navi {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    display: -webkit-flex;
    flex-wrap: nowrap;
  }
  #globalHeader .global-navi ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    display: -webkit-flex;
    flex-wrap: nowrap;
  }
  #globalHeader .global-navi ul.navi01 {
    gap: 0 25px;
    margin-right: 160px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1420px) {
  #globalHeader .global-navi ul.navi01 {
    margin-right: 80px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1340px) {
  #globalHeader .global-navi ul.navi01 {
    margin-right: 30px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1220px) {
  #globalHeader .global-navi ul.navi01 {
    gap: 0 12px;
    margin-right: 20px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1000px) {
  #globalHeader .global-navi ul.navi01 > li:not(.search-box) {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  #globalHeader .global-navi ul.navi01 > li a {
    color: #221815;
    text-decoration: none;
  }
}
@media screen and (min-width: 769px) and (max-width: 1220px) {
  #globalHeader .global-navi ul.navi01 > li a {
    font-size: 13px;
  }
}
@media screen and (min-width: 769px) {
  #globalHeader .global-navi ul.navi01 > li:hover > a {
    padding-bottom: 10px;
    border-bottom: 1px solid #221815;
  }
  #globalHeader .global-navi ul.navi01 > li.search-box form {
    position: relative;
  }
  #globalHeader .global-navi ul.navi01 > li.search-box form input[type=text] {
    width: 220px;
    height: 40px;
    padding: 0 15px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    outline: none;
    background: transparent;
    background-image: none;
    border-radius: 0;
    border-radius: 40px;
    border: solid 1px #9b908c;
    background-color: #f9f8f4;
    font-size: 13px;
  }
  #globalHeader .global-navi ul.navi01 > li.search-box form input[type=text]:placeholder-shown {
    color: #78726e;
  }
  #globalHeader .global-navi ul.navi01 > li.search-box form input[type=text]::-webkit-input-placeholder {
    color: #78726e;
  }
  #globalHeader .global-navi ul.navi01 > li.search-box form input[type=text]:-moz-placeholder {
    color: #78726e;
  }
  #globalHeader .global-navi ul.navi01 > li.search-box form input[type=text]::-moz-placeholder {
    color: #78726e;
  }
  #globalHeader .global-navi ul.navi01 > li.search-box form input[type=text]:-ms-input-placeholder {
    color: #78726e;
  }
}
@media screen and (min-width: 769px) and (max-width: 1100px) {
  #globalHeader .global-navi ul.navi01 > li.search-box form input[type=text] {
    width: 160px;
  }
}
@media screen and (min-width: 769px) {
  #globalHeader .global-navi ul.navi01 > li.search-box form input[type=submit] {
    position: absolute;
    top: 0;
    right: 0;
    width: 45px;
    height: 40px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    outline: none;
    background: transparent;
    background-image: none;
    border-radius: 0;
    border-radius: 0 45px 45px 0;
    background: urL("../images/common/icon-search.svg") no-repeat center center;
    background-size: 16px 16px;
  }
  #globalHeader .global-navi ul.navi02 {
    gap: 0 20px;
  }
  #globalHeader .global-navi ul.navi02 > li.column > a {
    background: url("../images/common/icon-header-column.svg") no-repeat center top;
    background-size: 25px 17px;
  }
  #globalHeader .global-navi ul.navi02 > li.help > a {
    background: url("../images/common/icon-header-help.svg") no-repeat center top;
    background-size: 17px 17px;
  }
  #globalHeader .global-navi ul.navi02 > li.mypage > a {
    background: url("../images/common/icon-header-mypage.svg") no-repeat center top;
  }
  #globalHeader .global-navi ul.navi02 > li.cart > a {
    background: url("../images/common/icon-header-cart.svg") no-repeat center top;
  }
  #globalHeader .global-navi ul.navi02 > li:hover > a::before {
    background-color: #221815;
  }
  #globalHeader .global-navi ul.navi02 > li > a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    display: -webkit-flex;
    flex-wrap: nowrap;
    height: 40px;
    font-size: 13px;
    color: #221815;
    text-decoration: none;
  }
  #globalHeader .global-navi ul.navi02 > li > a::before {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: transparent;
  }
  #globalHeader .global-navi ul .accordion {
    position: relative;
  }
  #globalHeader .global-navi ul .accordion:hover .hidden-menu {
    display: block;
  }
  #globalHeader .global-navi ul .accordion .hidden-menu {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 100%;
    width: calc(100% + 50px);
    min-width: 175px;
    padding-top: 27px;
    display: none;
  }
  #globalHeader .global-navi ul .accordion .hidden-menu ul {
    display: flex;
    flex-direction: column;
    gap: 20px 0;
    width: 100%;
    padding: 25px 30px;
    background: rgba(20, 6, 0, 0.9);
  }
  #globalHeader .global-navi ul .accordion .hidden-menu ul li {
    width: 100%;
  }
  #globalHeader .global-navi ul .accordion .hidden-menu ul li a {
    display: block;
    width: 100%;
    font-size: 15px;
    color: #fff;
    text-decoration: none;
    background: url("../images/common/icon-arrow-right-white.svg") no-repeat right center;
    background-size: 13px 13px;
    transition: 0.3s;
  }
  #globalHeader .global-navi ul .accordion .hidden-menu ul li a:hover {
    color: #999;
    background: url("../images/common/icon-arrow-right-gray.svg") no-repeat right center;
    background-size: 13px 13px;
  }
}
@media screen and (max-width: 768px) {
  #globalHeader {
    width: 100%;
    height: 80px;
  }
  #globalHeader.active {
    background-color: #f9f8f4;
  }
  #globalHeader.active .sp-global-navi {
    display: block;
    animation: show 0.3s linear;
  }
  #globalHeader .contents-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    display: -webkit-flex;
    flex-wrap: nowrap;
    height: 100%;
    padding: 0 25px;
  }
  #globalHeader .contents-inner .logo {
    width: 150px;
  }
  #globalHeader .global-navi {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    display: -webkit-flex;
    flex-wrap: nowrap;
    gap: 0 25px;
  }
  #globalHeader .global-navi .navi01 {
    display: none;
  }
  #globalHeader .global-navi .navi02 {
    display: flex;
    justify-content: center;
    align-items: center;
    display: -webkit-flex;
    flex-wrap: nowrap;
    gap: 0 17px;
  }
  #globalHeader .global-navi .navi02 .column,
  #globalHeader .global-navi .navi02 .help {
    display: none;
  }
  #globalHeader .sp-menu a {
    position: relative;
    display: block;
    width: 50px;
    height: 35px;
  }
  #globalHeader .sp-menu a.noactive span {
    animation-duration: 0s !important;
  }
  #globalHeader .sp-menu a.active span:nth-of-type(1) {
    animation-name: menuAnim1;
    animation-timing-function: linear;
    animation-duration: 0.4s;
    animation-fill-mode: forwards;
    animation-direction: alternate;
  }
  #globalHeader .sp-menu a.active span:nth-of-type(2) {
    animation-name: menuAnim2;
    animation-timing-function: linear;
    animation-duration: 0.4s;
    animation-fill-mode: forwards;
    animation-direction: alternate;
  }
  #globalHeader .sp-menu a.active span:nth-of-type(3) {
    animation-name: menuAnim3;
    animation-timing-function: linear;
    animation-duration: 0.4s;
    animation-fill-mode: forwards;
    animation-direction: alternate;
  }
  #globalHeader .sp-menu a span {
    position: absolute;
    left: 50%;
    width: 30px;
    height: 2px;
    margin-left: -15px;
    background-color: #58443f;
  }
  #globalHeader .sp-menu a span:nth-of-type(1) {
    top: 5px;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    animation-name: menuAnim4;
    animation-timing-function: linear;
    animation-duration: 0.4s;
    animation-fill-mode: forwards;
    animation-direction: alternate;
  }
  #globalHeader .sp-menu a span:nth-of-type(2) {
    top: 15px;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    animation-name: menuAnim5;
    animation-timing-function: linear;
    animation-duration: 0.4s;
    animation-fill-mode: forwards;
    animation-direction: alternate;
  }
  #globalHeader .sp-menu a span:nth-of-type(3) {
    top: 25px;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    animation-name: menuAnim6;
    animation-timing-function: linear;
    animation-duration: 0.4s;
    animation-fill-mode: forwards;
    animation-direction: alternate;
  }
  @keyframes menuAnim1 {
    0% {
      -webkit-transform: rotate(0);
      transform: rotate(0);
    }
    100% {
      top: 15px;
      -webkit-transform: rotate(-45deg);
      transform: rotate(-45deg);
    }
  }
  @keyframes menuAnim2 {
    0% {
      -webkit-transform: rotate(0);
      transform: rotate(0);
    }
    100% {
      opacity: 0;
      -webkit-transform: rotate(0);
      transform: rotate(0);
    }
  }
  @keyframes menuAnim3 {
    0% {
      -webkit-transform: rotate(0);
      transform: rotate(0);
    }
    100% {
      top: 15px;
      -webkit-transform: rotate(45deg);
      transform: rotate(45deg);
    }
  }
  @keyframes menuAnim4 {
    0% {
      top: 15px;
      -webkit-transform: rotate(-45deg);
      transform: rotate(-45deg);
    }
    100% {
      top: 5px;
      -webkit-transform: rotate(0);
      transform: rotate(0);
    }
  }
  @keyframes menuAnim5 {
    0% {
      opacity: 0;
      -webkit-transform: rotate(0);
      transform: rotate(0);
    }
    100% {
      opacity: 1;
      -webkit-transform: rotate(0);
      transform: rotate(0);
    }
  }
  @keyframes menuAnim6 {
    0% {
      top: 15px;
      -webkit-transform: rotate(45deg);
      transform: rotate(45deg);
    }
    100% {
      top: 25px;
      -webkit-transform: rotate(0);
      transform: rotate(0);
    }
  }
  #globalHeader .sp-global-navi {
    position: fixed;
    z-index: 20;
    top: 80px;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0 25px 120px;
    overflow-y: auto;
    background-color: #f9f8f4;
    display: none;
  }
  #globalHeader .sp-global-navi .gnavi-headline {
    padding: 12px 0;
    border-top: 1px solid #dfddd5;
    border-bottom: 1px solid #dfddd5;
    font-size: 16px;
    font-weight: 500;
  }
  #globalHeader .sp-global-navi .category-list {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    display: -webkit-flex;
    flex-wrap: wrap;
    gap: 15px 5.2%;
    margin-top: 20px;
  }
  #globalHeader .sp-global-navi .category-list .item {
    width: 47.2%;
  }
  #globalHeader .sp-global-navi .category-list .item a {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    display: -webkit-flex;
    flex-wrap: nowrap;
    gap: 0 10px;
    width: 100%;
    height: 65px;
    padding: 0 15px;
    border-radius: 65px;
    background-color: #fff;
    color: #221815;
    text-decoration: none;
    box-shadow: 0 0 30px 0 rgba(211, 207, 192, 0.25);
  }
  #globalHeader .sp-global-navi .category-list .item a::before {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    border-radius: 61px;
    border: 1px solid #f6f4ed;
  }
  #globalHeader .sp-global-navi .category-list .item a .icon {
    width: 50px;
  }
  #globalHeader .sp-global-navi .category-list .item a .cat-name {
    flex-grow: 1;
    text-align: center;
    font-size: 16px;
  }
  #globalHeader .sp-global-navi .list02 {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    display: -webkit-flex;
    flex-wrap: nowrap;
    gap: 15px 5.2%;
    margin-top: 15px;
  }
  #globalHeader .sp-global-navi .list02 .item {
    width: 47.2%;
  }
  #globalHeader .sp-global-navi .list02 .item a {
    display: flex;
    justify-content: center;
    align-items: center;
    display: -webkit-flex;
    flex-wrap: nowrap;
    width: 100%;
    height: 55px;
    border-radius: 55px;
    background-color: #fff;
    font-size: 16px;
    color: #221815;
    text-decoration: none;
    box-shadow: 0 0 30px 0 rgba(211, 207, 192, 0.25);
    border: solid 1px #dfddd5;
  }
  #globalHeader .sp-global-navi .common-gnavi-link {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    display: -webkit-flex;
    flex-wrap: wrap;
    gap: 20px 5.2%;
  }
  #globalHeader .sp-global-navi .common-gnavi-link li {
    width: 47.3%;
  }
  #globalHeader .sp-global-navi .common-gnavi-link li a {
    font-size: 16px;
    color: #221815;
    text-decoration: none;
  }
  #globalHeader .sp-global-navi .search-box {
    margin-top: 20px;
  }
  #globalHeader .sp-global-navi .search-box form {
    position: relative;
  }
  #globalHeader .sp-global-navi .search-box form input[type=text] {
    width: 100%;
    height: 45px;
    padding: 0 15px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    outline: none;
    background: transparent;
    background-image: none;
    border-radius: 0;
    border-radius: 45px;
    border: solid 1px #9b908c;
    background-color: #f9f8f4;
    font-size: 14px;
    background-color: #fff;
  }
  #globalHeader .sp-global-navi .search-box form input[type=text]:placeholder-shown {
    color: #78726e;
  }
  #globalHeader .sp-global-navi .search-box form input[type=text]::-webkit-input-placeholder {
    color: #78726e;
  }
  #globalHeader .sp-global-navi .search-box form input[type=text]:-moz-placeholder {
    color: #78726e;
  }
  #globalHeader .sp-global-navi .search-box form input[type=text]::-moz-placeholder {
    color: #78726e;
  }
  #globalHeader .sp-global-navi .search-box form input[type=text]:-ms-input-placeholder {
    color: #78726e;
  }
  #globalHeader .sp-global-navi .search-box form input[type=submit] {
    position: absolute;
    top: 0;
    right: 0;
    width: 45px;
    height: 45px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    outline: none;
    background: transparent;
    background-image: none;
    border-radius: 0;
    border-radius: 0 45px 45px 0;
    background: urL("../images/common/icon-search.svg") no-repeat center center;
    background-size: 16px 16px;
  }
  #globalHeader .sp-global-navi .link-list {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    display: -webkit-flex;
    flex-wrap: nowrap;
    margin-top: 35px;
  }
  #globalHeader .sp-global-navi .link-list ul {
    margin-top: 20px;
  }
  #globalHeader .sp-global-navi .link-list ul li {
    width: 100%;
  }
  #globalHeader .sp-global-navi .link-list .item {
    width: 47.3%;
  }
  #globalHeader .sp-global-navi .link-list02 {
    margin-top: 30px;
    padding: 30px 0;
    border-top: 1px solid #dfddd5;
    border-bottom: 1px solid #dfddd5;
  }
  #globalHeader .sp-global-navi .link-list03 {
    padding-top: 30px;
  }
  #globalHeader .sp-global-navi .link-list03 ul {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    display: -webkit-flex;
    flex-wrap: wrap;
    gap: 15px 0;
  }
  #globalHeader .sp-global-navi .link-list03 ul li:nth-of-type(3) {
    width: 100%;
  }
  #globalHeader .sp-global-navi .link-list03 ul li a {
    font-size: 14px;
    color: #221815;
    text-decoration: none;
  }
  #globalHeader .sp-global-navi .login-btn a,
  #globalHeader .sp-global-navi .cart-btn a {
    display: flex;
    justify-content: center;
    align-items: center;
    display: -webkit-flex;
    flex-wrap: nowrap;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  #globalHeader .sp-global-navi .login-btn a,
  #globalHeader .sp-global-navi .cart-btn a {
    width: 100%;
    height: 55px;
    border-radius: 55px;
    font-size: 16px;
    text-decoration: none;
    color: #221815;
    font-weight: bold;
    box-shadow: 0 0 30px 0 rgba(211, 207, 192, 0.25);
  }
}
@media screen and (max-width: 768px) {
  #globalHeader .sp-global-navi .login-btn {
    margin-top: 30px;
  }
  #globalHeader .sp-global-navi .login-btn a {
    border: solid 1px #9b908c;
    background: url("../images/common/icon-gnavi-login.svg") no-repeat 30px center;
    background-size: 15px 17px;
    background-color: #fff;
  }
  #globalHeader .sp-global-navi .cart-btn {
    margin-top: 15px;
  }
  #globalHeader .sp-global-navi .cart-btn a {
    background: url("../images/common/icon-gnavi-cart.svg") no-repeat 30px center;
    background-size: 20px 17px;
    background-color: #bc9c7a;
    color: #fff;
  }
}

#contents p {
  letter-spacing: 0.08em;
}

#globalFooter {
  padding: 80px 0 125px;
  background-color: #f9f8f4;
}
@media screen and (max-width: 950px) {
  #globalFooter {
    padding: 50px 0;
  }
}
#globalFooter .contents-inner {
  max-width: 1200px;
}
@media screen and (max-width: 1240px) {
  #globalFooter .contents-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
#globalFooter .footer-link {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
  margin-top: 50px;
  padding: 0 130px 70px;
  background: url("../images/common/footer-img.png") no-repeat right bottom;
}
@media screen and (max-width: 950px) {
  #globalFooter .footer-link {
    padding: 0 50px 50px;
  }
}
@media screen and (max-width: 768px) {
  #globalFooter .footer-link {
    flex-wrap: wrap;
    gap: 30px 0;
    padding: 0 20px 80px;
  }
}
#globalFooter .footer-link ul {
  min-width: 180px;
  display: flex;
  flex-direction: column;
  gap: 20px 0;
}
@media screen and (max-width: 1100px) {
  #globalFooter .footer-link ul {
    min-width: 120px;
  }
}
@media screen and (max-width: 768px) {
  #globalFooter .footer-link ul {
    width: 47.3%;
    min-width: auto;
    gap: 10px 0;
  }
}
@media screen and (max-width: 450px) {
  #globalFooter .footer-link ul {
    width: 100%;
  }
}
#globalFooter .footer-link li a {
  font-size: 15px;
  color: #221815;
  text-decoration: none;
  transition: color 0.3s;
}
#globalFooter .footer-link li a:focus {
  color: #999;
}
@media (hover: hover) and (pointer: fine) {
  #globalFooter .footer-link li a:hover {
    color: #999;
  }
}
@media screen and (max-width: 500px) {
  #globalFooter .footer-link li a {
    font-size: 13px;
  }
}
#globalFooter .footer-link li.title {
  padding-bottom: 15px;
  border-bottom: 1px solid #d2d0c7;
}
#globalFooter .copyright {
  margin-top: 10px;
  font-size: 14px;
  text-align: center;
}

.to-top {
  position: fixed;
  z-index: 5;
  bottom: 50px;
  right: 50px;
}
@media screen and (max-width: 768px) {
  .to-top {
    bottom: 20px;
    right: 20px;
  }
}
.to-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  width: 70px;
  height: 70px;
  border-radius: 70px;
  border: solid 1px #908273;
}
@media screen and (max-width: 768px) {
  .to-top a {
    width: 50px;
    height: 50px;
    border-radius: 50px;
  }
}

.ff-min {
  font-family: "Zen Old Mincho", serif;
}

.text-red {
  color: #d26244;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-fs12 {
  font-size: 12px;
}

.text-fs14 {
  font-size: 14px;
}

.text-fs16 {
  font-size: 16px;
}

.text-fs18 {
  font-size: 18px;
}

.text-fs19 {
  font-size: 19px;
}

.text-fs20 {
  font-size: 20px;
}

.text-fs21 {
  font-size: 21px;
}

.text-fs22 {
  font-size: 22px;
}

.text-fs23 {
  font-size: 23px;
}

.text-fs24 {
  font-size: 24px;
}

.text-fs24 {
  font-size: 24px;
}

.text-fs25 {
  font-size: 25px;
}

.text-fs26 {
  font-size: 26px;
}

.text-fs27 {
  font-size: 27px;
}

.text-fs28 {
  font-size: 28px;
}

.text-fs30 {
  font-size: 30px;
}

@media screen and (max-width: 768px) {
  .text-fs12 {
    font-size: 12px;
  }
  .text-fs14 {
    font-size: 14px;
  }
  .text-fs16 {
    font-size: 14px;
  }
  .text-fs18 {
    font-size: 16px;
  }
  .text-fs19 {
    font-size: 18px;
  }
  .text-fs20 {
    font-size: 18px;
  }
  .text-fs21 {
    font-size: 18px;
  }
  .text-fs22 {
    font-size: 20px;
  }
  .text-fs23 {
    font-size: 20px;
  }
  .text-fs24 {
    font-size: 22px;
  }
  .text-fs24 {
    font-size: 22px;
  }
  .text-fs25 {
    font-size: 24px;
  }
  .text-fs26 {
    font-size: 24px;
  }
  .text-fs27 {
    font-size: 24px;
  }
  .text-fs28 {
    font-size: 24px;
  }
  .text-fs30 {
    font-size: 24px;
  }
}
.mt0 {
  margin-top: 0 !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt35 {
  margin-top: 35px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mt45 {
  margin-top: 45px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mt70 {
  margin-top: 70px !important;
}

.mt80 {
  margin-top: 80px !important;
}

.mt90 {
  margin-top: 90px !important;
}

.mt100 {
  margin-top: 100px !important;
}

.mt110 {
  margin-top: 110px !important;
}

.mt120 {
  margin-top: 120px !important;
}

.mt130 {
  margin-top: 130px !important;
}

.mt140 {
  margin-top: 140px !important;
}

.mt150 {
  margin-top: 150px !important;
}

.mb0 {
  margin-bottom: 0 !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb45 {
  margin-bottom: 45px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.mb90 {
  margin-bottom: 90px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

.mb110 {
  margin-bottom: 110px !important;
}

.mb120 {
  margin-bottom: 120px !important;
}

.mb130 {
  margin-bottom: 130px !important;
}

.mb140 {
  margin-bottom: 140px !important;
}

.pt0 {
  padding-top: 0 !important;
}

.pt5 {
  padding-top: 5px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pt15 {
  padding-top: 15px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pt25 {
  padding-top: 25px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pt35 {
  padding-top: 35px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pt45 {
  padding-top: 45px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.pt60 {
  padding-top: 60px !important;
}

.pt70 {
  padding-top: 70px !important;
}

.pt80 {
  padding-top: 80px !important;
}

.pt90 {
  padding-top: 90px !important;
}

.pt100 {
  padding-top: 100px !important;
}

.pb0 {
  padding-bottom: 0 !important;
}

.pb5 {
  padding-bottom: 5px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pb15 {
  padding-bottom: 15px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pb25 {
  padding-bottom: 25px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pb35 {
  padding-bottom: 35px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.pb45 {
  padding-bottom: 45px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

.pb60 {
  padding-bottom: 60px !important;
}

.pb70 {
  padding-bottom: 70px !important;
}

.pb80 {
  padding-bottom: 80px !important;
}

.pb90 {
  padding-bottom: 90px !important;
}

.pb100 {
  padding-bottom: 100px !important;
}

@media screen and (max-width: 768px) {
  .mt0 {
    margin-top: 0 !important;
  }
  .mt5 {
    margin-top: 5px !important;
  }
  .mt10 {
    margin-top: 10px !important;
  }
  .mt15 {
    margin-top: 10px !important;
  }
  .mt20 {
    margin-top: 15px !important;
  }
  .mt25 {
    margin-top: 15px !important;
  }
  .mt30 {
    margin-top: 20px !important;
  }
  .mt35 {
    margin-top: 20px !important;
  }
  .mt40 {
    margin-top: 30px !important;
  }
  .mt45 {
    margin-top: 30px !important;
  }
  .mt50 {
    margin-top: 40px !important;
  }
  .mt60 {
    margin-top: 40px !important;
  }
  .mt70 {
    margin-top: 50px !important;
  }
  .mt80 {
    margin-top: 50px !important;
  }
  .mt90 {
    margin-top: 50px !important;
  }
  .mt100 {
    margin-top: 50px !important;
  }
  .mt110 {
    margin-top: 60px !important;
  }
  .mt120 {
    margin-top: 60px !important;
  }
  .mt130 {
    margin-top: 60px !important;
  }
  .mt140 {
    margin-top: 70px !important;
  }
  .mt150 {
    margin-top: 70px !important;
  }
  .mtsp20 {
    margin-top: 20px !important;
  }
  .mb0 {
    margin-bottom: 0 !important;
  }
  .mb5 {
    margin-bottom: 5px !important;
  }
  .mb10 {
    margin-bottom: 10px !important;
  }
  .mb15 {
    margin-bottom: 10px !important;
  }
  .mb20 {
    margin-bottom: 15px !important;
  }
  .mb25 {
    margin-bottom: 15px !important;
  }
  .mb30 {
    margin-bottom: 20px !important;
  }
  .mb35 {
    margin-bottom: 20px !important;
  }
  .mb40 {
    margin-bottom: 30px !important;
  }
  .mb45 {
    margin-bottom: 30px !important;
  }
  .mb50 {
    margin-bottom: 40px !important;
  }
  .mb60 {
    margin-bottom: 40px !important;
  }
  .mb70 {
    margin-bottom: 50px !important;
  }
  .mb80 {
    margin-bottom: 50px !important;
  }
  .mb90 {
    margin-bottom: 50px !important;
  }
  .mb100 {
    margin-bottom: 50px !important;
  }
  .mb110 {
    margin-bottom: 60px !important;
  }
  .mb120 {
    margin-bottom: 60px !important;
  }
  .mb130 {
    margin-bottom: 60px !important;
  }
  .mb140 {
    margin-bottom: 70px !important;
  }
  .pt0 {
    padding-top: 0 !important;
  }
  .pt5 {
    padding-top: 5px !important;
  }
  .pt10 {
    padding-top: 10px !important;
  }
  .pt15 {
    padding-top: 10px !important;
  }
  .pt20 {
    padding-top: 15px !important;
  }
  .pt25 {
    padding-top: 15px !important;
  }
  .pt30 {
    padding-top: 20px !important;
  }
  .pt35 {
    padding-top: 20px !important;
  }
  .pt40 {
    padding-top: 30px !important;
  }
  .pt45 {
    padding-top: 30px !important;
  }
  .pt50 {
    padding-top: 40px !important;
  }
  .pt60 {
    padding-top: 40px !important;
  }
  .pt70 {
    padding-top: 50px !important;
  }
  .pt80 {
    padding-top: 50px !important;
  }
  .pt90 {
    padding-top: 50px !important;
  }
  .pt100 {
    padding-top: 50px !important;
  }
  .pb0 {
    padding-bottom: 0 !important;
  }
  .pb5 {
    padding-bottom: 5px !important;
  }
  .pb10 {
    padding-bottom: 10px !important;
  }
  .pb15 {
    padding-bottom: 10px !important;
  }
  .pb20 {
    padding-bottom: 15px !important;
  }
  .pb25 {
    padding-bottom: 15px !important;
  }
  .pb30 {
    padding-bottom: 20px !important;
  }
  .pb35 {
    padding-bottom: 20px !important;
  }
  .pb40 {
    padding-bottom: 30px !important;
  }
  .pb45 {
    padding-bottom: 30px !important;
  }
  .pb50 {
    padding-bottom: 40px !important;
  }
  .pb60 {
    padding-bottom: 40px !important;
  }
  .pb70 {
    padding-bottom: 50px !important;
  }
  .pb80 {
    padding-bottom: 50px !important;
  }
  .pb90 {
    padding-bottom: 50px !important;
  }
  .pb100 {
    padding-bottom: 50px !important;
  }
}
.section-title {
  text-align: center;
}
.section-title span {
  display: block;
}
.section-title span.main {
  font-size: 40px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .section-title span.main {
    font-size: 30px;
  }
}
.section-title span.eng {
  margin-top: 25px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #b09982;
}
@media screen and (max-width: 768px) {
  .section-title span.eng {
    font-size: 13px;
  }
}

.eng-title {
  text-align: center;
}
.eng-title span {
  display: block;
}
.eng-title span.main {
  font-family: "Inter", sans-serif;
  font-size: 60px;
  font-weight: 100;
  color: #c7bbaf;
}
@media screen and (max-width: 768px) {
  .eng-title span.main {
    font-size: 40px;
  }
}
.eng-title span.sub {
  margin-top: 15px;
  font-family: "Zen Old Mincho", serif;
  font-size: 32px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .eng-title span.sub {
    font-size: 20px;
  }
}

.sub-title {
  font-size: 32px;
  font-weight: 600;
  text-align: center;
  font-family: "Zen Old Mincho", serif;
}
@media screen and (max-width: 768px) {
  .sub-title {
    font-size: 20px;
  }
}

.normal-btn.center a {
  margin: 0 auto;
}
.normal-btn.white a {
  background-color: #fff;
  color: #221815;
}
.normal-btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  width: 320px;
  height: 60px;
  border-radius: 60px;
  border: solid 1px #443733;
  font-size: 16px;
  font-weight: 400;
  color: #3f3836;
  text-decoration: none;
  transition: 0.3s;
}
.normal-btn a:focus {
  background-color: rgba(0, 0, 0, 0.1);
}
@media (hover: hover) and (pointer: fine) {
  .normal-btn a:hover {
    background-color: rgba(0, 0, 0, 0.1);
  }
}
@media screen and (max-width: 768px) {
  .normal-btn a {
    width: 200px;
    max-width: 100%;
    height: 50px;
    border-radius: 50px;
    font-size: 15px;
  }
}

.common-category-list {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 30px;
}
@media screen and (max-width: 1000px) {
  .common-category-list {
    gap: 0 4%;
  }
}
@media screen and (max-width: 768px) {
  .common-category-list {
    flex-wrap: wrap;
    gap: 40px 6.8%;
    padding: 0 11.0677083333vw;
  }
}
@media screen and (max-width: 1000px) {
  .common-category-list .item {
    width: 22%;
  }
}
@media screen and (max-width: 768px) {
  .common-category-list .item {
    width: 46.6%;
  }
}
.common-category-list .item a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  flex-direction: column;
  align-content: center;
  width: 210px;
  height: 210px;
  border-radius: 210px;
  box-shadow: 0 0 30px 0 rgba(211, 207, 192, 0.25);
  background-color: #fff;
  text-decoration: none;
  transition: 0.3s;
}
.common-category-list .item a:hover {
  filter: brightness(0.9);
}
@media screen and (max-width: 1000px) {
  .common-category-list .item a {
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
  }
}
.common-category-list .item a::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 7px;
  width: calc(100% - 14px);
  height: calc(100% - 14px);
  border-radius: calc(100% - 14px);
  border: 1px solid #f6f4ed;
}
@media screen and (max-width: 1000px) {
  .common-category-list .item a::before {
    aspect-ratio: 1/1;
  }
}
@media screen and (max-width: 768px) {
  .common-category-list .item a::before {
    top: 1.3020833333vw;
    left: 1.3020833333vw;
    width: calc(100% - 2.6041666667vw);
    height: calc(100% - 2.6041666667vw);
    aspect-ratio: 1/1;
    border-radius: calc(100% - 1.3020833333vw);
  }
}
.common-category-list .item a .icon img {
  width: 130px;
}
@media screen and (max-width: 1000px) {
  .common-category-list .item a .icon img {
    width: 100px;
  }
}
@media screen and (max-width: 768px) {
  .common-category-list .item a .icon img {
    width: 22.1354166667vw;
  }
}
.common-category-list .item a .cat-name {
  margin-top: 15px;
  font-size: 22px;
  font-weight: 500;
  color: #221815;
  font-family: "Zen Old Mincho", serif;
}
@media screen and (max-width: 1000px) {
  .common-category-list .item a .cat-name {
    margin-top: 10px;
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .common-category-list .item a .cat-name {
    margin-top: 1.3020833333vw;
    font-size: 3.3854166667vw;
  }
}

.common-category-list-portrait {
  --column-gap: 16px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: center;
  column-gap: var(--column-gap);
  row-gap: 50px;
}
@media screen and (max-width: 768px) {
  .common-category-list-portrait {
    grid-template-columns: repeat(2, 1fr);
  }
}
.common-category-list-portrait .item {
  display: block;
  text-decoration: none;
  color: #221815;
}
.common-category-list-portrait .item:hover img {
  filter: brightness(0.9);
}
.common-category-list-portrait .item .item-image {
  aspect-ratio: 4/5;
}
.common-category-list-portrait .item .item-image img {
  transition: 0.3s;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.common-category-list-portrait .item .item-name {
  margin-top: 20px;
  font-weight: 600;
}
.common-category-list-portrait .item .item-name.text-center {
  text-align: center;
}
.common-category-list-portrait .item .item-price {
  margin-top: 10px;
}
.common-category-list-portrait .item .item-price.text-center {
  text-align: center;
}

.product-slider {
  user-select: none;
}
.product-slider .slider-footer {
  position: relative;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: wrap;
  margin-top: 60px;
}
@media screen and (max-width: 1240px) {
  .product-slider .slider-footer {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 768px) {
  .product-slider .slider-footer {
    margin-top: 7.8125vw;
    padding-top: 3.90625vw;
  }
}
.product-slider .slider-footer .swiper-pagination {
  position: static;
  width: 100%;
  height: 2px;
  margin-bottom: 30px;
  background-color: #ebe7e3;
}
.product-slider .slider-footer .swiper-pagination span {
  background-color: #afa190;
}
.product-slider .slider-footer .swiper-control {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 5px;
}
@media screen and (max-width: 768px) {
  .product-slider .slider-footer .swiper-control {
    display: none;
  }
}
.product-slider .slider-footer .swiper-control > div {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  width: 60px;
  height: 60px;
  border-radius: 60px;
  border: solid 1px #908273;
  transition: 0.3s;
}
.product-slider .slider-footer .swiper-control > div:focus {
  cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
  .product-slider .slider-footer .swiper-control > div:hover {
    cursor: pointer;
  }
}
.product-slider .slider-footer .swiper-control > div:focus {
  background-color: rgba(0, 0, 0, 0.1);
}
@media (hover: hover) and (pointer: fine) {
  .product-slider .slider-footer .swiper-control > div:hover {
    background-color: rgba(0, 0, 0, 0.1);
  }
}
@media screen and (max-width: 768px) {
  .product-slider .slider-footer .normal-btn {
    width: 100%;
  }
}
.product-slider .slider-footer .normal-btn a {
  margin: 0 auto;
}

.product-item:hover .item-thumbnail img {
  filter: brightness(0.9);
}
.product-item.new {
  position: relative;
}
.product-item.new::before {
  content: "新着";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  width: 55px;
  height: 30px;
  background-color: #dd4e23;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}
.product-item a {
  display: block;
  text-decoration: none;
  color: #221815;
}
.product-item a img {
  transition: 0.3s;
}
.product-item .item-thumbnail {
  position: relative;
  background-color: transparent;
}
.product-item .item-thumbnail::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.product-item .item-thumbnail img,
.product-item .item-thumbnail iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-item .item-meta {
  position: relative;
  padding-top: 20px;
  padding-right: 35px;
}
.product-item .item-meta .item-catchcopy {
  font-size: 15px;
  color: #3c3330;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .product-item .item-meta .item-catchcopy {
    font-size: 13px;
  }
}
.product-item .item-meta .item-name {
  margin-top: 15px;
  font-size: 18px;
  font-weight: 500;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 768px) {
  .product-item .item-meta .item-name {
    margin-top: 10px;
    font-size: 16px;
  }
}
.product-item .item-meta .item-tag {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: wrap;
  gap: 5px 4px;
  margin-top: 20px;
}
.product-item .item-meta .item-tag a,
.product-item .item-meta .item-tag span {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  height: 22px;
  padding: 0 10px;
  border-radius: 22px;
  border: solid 1px #cbbcae;
  font-size: 12px;
  color: #221815;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .product-item .item-meta .item-tag a,
  .product-item .item-meta .item-tag span {
    font-size: 10px;
  }
}
.product-item .item-meta .item-fav {
  position: absolute;
  top: 23px;
  right: 10px;
  width: 18px;
  height: 16px;
  background: url("../images/common/icon-fav.svg") no-repeat center center;
  background-size: 100% 100% !important;
}
.product-item .item-meta .item-fav:focus {
  cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
  .product-item .item-meta .item-fav:hover {
    cursor: pointer;
  }
}
.product-item .item-meta .item-fav.active {
  background: url("../images/common/icon-fav-fill.svg") no-repeat center center;
}
.product-item .item-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  margin-top: 10px;
}
@media screen and (max-width: 1100px) {
  .product-item .item-info {
    flex-wrap: wrap;
    gap: 10px;
  }
}
@media screen and (max-width: 500px) {
  .product-item .item-info {
    flex-wrap: wrap;
    gap: 10px 0;
  }
}
.product-item .item-info .item-price {
  font-size: 18px;
  font-weight: 500;
}
@media screen and (max-width: 1200px) {
  .product-item .item-info .item-price {
    font-size: 16px;
  }
}
@media screen and (max-width: 1100px) {
  .product-item .item-info .item-price {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .product-item .item-info .item-price {
    font-size: 16px;
  }
}
@media screen and (max-width: 500px) {
  .product-item .item-info .item-price {
    width: 100%;
  }
}
.product-item .item-info form {
  width: 100%;
}
.product-item .item-info .item-cart {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 10px;
}
@media screen and (max-width: 500px) {
  .product-item .item-info .item-cart {
    width: 100%;
  }
}
.product-item .item-info .item-cart span {
  font-size: 14px;
  font-weight: 400;
  flex-shrink: 0;
}
.product-item .item-info .item-cart input[type=number] {
  width: 60px;
  height: 40px;
  padding-left: 15px;
  border: 1px solid #c0b9ac;
  border-radius: 4px;
}
@media screen and (max-width: 1000px) {
  .product-item .item-info .item-cart input[type=number] {
    width: 45px;
    padding-left: 10px;
  }
}
.product-item .item-info .item-cart .cart-btn {
  position: relative;
}
@media screen and (max-width: 1200px) {
  .product-item .item-info .item-cart .cart-btn {
    flex-grow: 1;
  }
}
@media screen and (max-width: 500px) {
  .product-item .item-info .item-cart .cart-btn {
    width: 100%;
  }
}
.product-item .item-info .item-cart .cart-btn .button {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  width: 140px;
  height: 40px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  border-radius: 0;
  background-color: #bc9c7a;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  border-radius: 4px;
}
.product-item .item-info .item-cart .cart-btn .button:focus {
  cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
  .product-item .item-info .item-cart .cart-btn .button:hover {
    cursor: pointer;
  }
}
@media screen and (max-width: 1200px) {
  .product-item .item-info .item-cart .cart-btn .button {
    width: 100%;
    font-size: 13px;
  }
}
@media screen and (max-width: 1000px) {
  .product-item .item-info .item-cart .cart-btn .button {
    font-size: 12px;
  }
}
@media screen and (max-width: 500px) {
  .product-item .item-info .item-cart .cart-btn .button {
    flex-grow: 1;
  }
}
.product-item .item-info .item-cart .cart-btn .added_to_cart {
  position: absolute;
  top: 50px;
  left: 0;
  text-decoration: underline;
}
.product-item .column-title {
  font-size: 16px;
  margin-top: 25px;
}

.news-list .item.no-accordion {
  position: relative;
}
.news-list .item.no-accordion .item-head {
  background: transparent;
}
.news-list .item a {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.news-list .item .item-head {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 40px;
  padding: 30px 50px 30px 25px;
  border-top: 1px solid #e5e3da;
  background: url("../images/common/icon-arrow-btm.svg") no-repeat calc(100% - 20px) center;
}
.news-list .item .item-head:focus {
  cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
  .news-list .item .item-head:hover {
    cursor: pointer;
  }
}
@media screen and (max-width: 768px) {
  .news-list .item .item-head {
    gap: 0 5.2083333333vw;
    padding: 3.90625vw 6.5104166667vw 3.90625vw 3.2552083333vw;
    background-position: calc(100% - 10px) center;
    background-size: 2.2135416667vw 1.3020833333vw;
  }
}
.news-list .item .item-head.active {
  background: url("../images/common/icon-arrow-top.svg") no-repeat calc(100% - 20px) center;
}
@media screen and (max-width: 768px) {
  .news-list .item .item-head.active {
    background-position: calc(100% - 10px) center;
    background-size: 2.2135416667vw 1.3020833333vw;
  }
}
.news-list .item .item-head .item-date {
  flex-shrink: 0;
  font-size: 15px;
  font-family: "Inter", sans-serif;
  color: #9a7c5d;
}
@media screen and (max-width: 768px) {
  .news-list .item .item-head .item-date {
    font-size: 3.125vw;
  }
}
.news-list .item .item-head .item-title {
  font-size: 16px;
  color: #221815;
  line-height: 1.4;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .news-list .item .item-head .item-title {
    font-size: 3.2552083333vw;
  }
}
.news-list .item .item-content {
  display: none;
  padding: 0 0 35px 25px;
}
@media screen and (max-width: 768px) {
  .news-list .item .item-content {
    padding-left: 0;
  }
}
.news-list .item .item-content .item-content-inner {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 40px;
}
@media screen and (max-width: 768px) {
  .news-list .item .item-content .item-content-inner {
    flex-direction: column;
    gap: 3.90625vw 0;
  }
}
.news-list .item .item-content .item-content-inner .item-thumbnail {
  flex-shrink: 0;
  width: 280px;
}
@media screen and (max-width: 768px) {
  .news-list .item .item-content .item-content-inner .item-thumbnail {
    width: 100%;
  }
  .news-list .item .item-content .item-content-inner .item-thumbnail img {
    width: 100%;
  }
}
.news-list .item .item-content .item-content-inner .item-sentence {
  font-size: 15px;
  line-height: 2;
  color: #221815;
}
@media screen and (max-width: 768px) {
  .news-list .item .item-content .item-content-inner .item-sentence {
    font-size: 3.2552083333vw;
  }
}

.list-table table {
  width: 100%;
}
.list-table table th,
.list-table table td {
  padding: 30px 0;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .list-table table th,
  .list-table table td {
    padding: 20px 0;
  }
}
.list-table table th {
  padding-left: 40px;
  padding-right: 20px;
  border-bottom: 1px solid #a28467;
  text-align: left;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .list-table table th {
    padding-left: 20px;
  }
}
.list-table table td {
  padding-left: 50px;
  padding-right: 20px;
  border-bottom: 1px solid #dad7c9;
}
@media screen and (max-width: 768px) {
  .list-table table td {
    padding-left: 20px;
  }
}

.product-list {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: wrap;
  gap: 90px 5.6%;
}
@media screen and (max-width: 768px) {
  .product-list {
    gap: 50px 4%;
  }
}
@media screen and (max-width: 500px) {
  .product-list {
    gap: 50px 0;
  }
}
.product-list .product-item {
  width: 29.6%;
}
@media screen and (max-width: 768px) {
  .product-list .product-item {
    width: 48%;
  }
}
@media screen and (max-width: 500px) {
  .product-list .product-item {
    width: 100%;
  }
}

.wp-pagenavi {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 10px;
  margin-top: 120px;
}
@media screen and (max-width: 768px) {
  .wp-pagenavi {
    margin-top: 60px;
  }
}
.wp-pagenavi a,
.wp-pagenavi span {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  width: 50px;
  height: 50px;
  font-size: 16px;
  color: #221815;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .wp-pagenavi a,
  .wp-pagenavi span {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
}
.wp-pagenavi span {
  position: relative;
  font-weight: 500;
}
.wp-pagenavi span::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: 27px;
  height: 1px;
  background-color: #6c6563;
}
.wp-pagenavi .previouspostslink {
  background: url("../images/common/pager-left.svg") no-repeat center center;
  background-size: 14px 14px;
}
.wp-pagenavi .nextpostslink {
  background: url("../images/common/pager-right.svg") no-repeat center center;
  background-size: 14px 14px;
}

.local-link {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: wrap;
  gap: 30px 1.85%;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  .local-link {
    gap: 30px 4%;
  }
}
@media screen and (max-width: 500px) {
  .local-link {
    gap: 15px 0;
  }
}
.local-link a {
  display: block;
  width: 32.1%;
  padding: 13px 0;
  color: #3f3836;
  text-decoration: none;
  border-bottom: 1px solid #cecbbf;
  background: url("../images/common/icon-arrow-btm.svg") no-repeat calc(100% - 11px) center;
  background-size: 12px 7px;
}
@media screen and (max-width: 900px) {
  .local-link a {
    width: 48%;
  }
}
@media screen and (max-width: 500px) {
  .local-link a {
    width: 100%;
  }
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 30px 0;
}
@media screen and (max-width: 768px) {
  .faq-list {
    gap: 20px 0;
  }
}
.faq-list .faq-item {
  padding: 40px;
  border: solid 1px #cecbbf;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .faq-list .faq-item {
    padding: 20px;
    font-size: 14px;
  }
}
.faq-list .faq-item .faq-question,
.faq-list .faq-item .faq-answer {
  position: relative;
  padding-left: 35px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .faq-list .faq-item .faq-question,
  .faq-list .faq-item .faq-answer {
    padding-left: 30px;
  }
}
.faq-list .faq-item .faq-question::before,
.faq-list .faq-item .faq-answer::before {
  position: absolute;
  top: -5px;
  left: 0;
  font-size: 20px;
  font-weight: 500;
  color: #ad9378;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .faq-list .faq-item .faq-question::before,
  .faq-list .faq-item .faq-answer::before {
    font-size: 18px;
  }
}
.faq-list .faq-item .faq-question::before {
  content: "Q.";
}
.faq-list .faq-item .faq-answer {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .faq-list .faq-item .faq-answer {
    margin-top: 20px;
  }
}
.faq-list .faq-item .faq-answer::before {
  content: "A.";
}

.faq-contact-box {
  padding: 50px 0;
  border-radius: 10px;
  background: url("../images/faq/box-bg.png") no-repeat center center;
  background-size: cover;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .faq-contact-box {
    padding: 30px 20px;
  }
}
.faq-contact-box .headline {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.5;
  font-family: "Zen Old Mincho", serif;
}
@media screen and (max-width: 768px) {
  .faq-contact-box .headline {
    font-size: 20px;
  }
}
.faq-contact-box p {
  margin-top: 25px;
  font-weight: 500;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .faq-contact-box p {
    margin-top: 20px;
    font-size: 14px;
  }
}
.faq-contact-box .normal-btn {
  margin-top: 20px;
}
.faq-contact-box .normal-btn a {
  margin: 0 auto;
  background-color: #fff;
}

/*--------------------------
HOME
----------------------------*/
body.home .home-c-box02 {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  body.home .home-c-box02 {
    margin-top: 40px;
  }
}
body.home .home-c-box03 {
  margin-top: 60px;
}
body.home .home-c-box04,
body.home .home-c-box06,
body.home .home-c-box07 {
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  body.home .normal-btn a {
    width: 65.1041666667vw;
    max-width: 100%;
    height: 13.0208333333vw;
    border-radius: 13.0208333333vw;
    font-size: 3.90625vw;
  }
}

.home-c-mv {
  max-width: 1530px;
  width: 100%;
  margin: 0 auto;
}
.home-c-mv .home_mv_pc {
  aspect-ratio: 1530/660;
  object-fit: cover;
  width: 100%;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .home-c-mv .home_mv_pc {
    display: none;
  }
}
.home-c-mv .home_mv_sp {
  display: none;
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .home-c-mv .home_mv_sp {
    display: block;
  }
}
.home-c-mv .contents-inner {
  max-width: 1530px;
}
@media screen and (max-width: 1570px) {
  .home-c-mv .contents-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.home-c-box01 {
  padding-top: 145px;
}
@media screen and (max-width: 768px) {
  .home-c-box01 {
    padding-top: 17.578125vw;
  }
}
.home-c-box01 .contents-inner {
  max-width: 1200px;
}
@media screen and (max-width: 1240px) {
  .home-c-box01 .contents-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.home-c-box01 .contents-inner .media-box {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 100px;
}
@media screen and (max-width: 1240px) {
  .home-c-box01 .contents-inner .media-box {
    gap: 0 50px;
  }
}
@media screen and (max-width: 768px) {
  .home-c-box01 .contents-inner .media-box {
    flex-direction: column;
  }
}
.home-c-box01 .contents-inner .media-box .thumbnail {
  flex-shrink: 0;
}
@media screen and (max-width: 1240px) {
  .home-c-box01 .contents-inner .media-box .thumbnail {
    width: 40%;
  }
}
@media screen and (max-width: 768px) {
  .home-c-box01 .contents-inner .media-box .thumbnail {
    position: relative;
    width: 100%;
    order: 2;
    margin-top: 10.4166666667vw;
    margin-left: -15px;
  }
  .home-c-box01 .contents-inner .media-box .thumbnail img {
    width: 75vw;
  }
  .home-c-box01 .contents-inner .media-box .thumbnail::before {
    content: "";
    position: absolute;
    bottom: -7.8125vw;
    right: -10.4166666667vw;
    width: 50vw;
    height: 13.1510416667vw;
    background: url("../images/top/sec01-img03.png") no-repeat center center;
    background-size: 100% 100%;
  }
}
.home-c-box01 .contents-inner .media-box .content {
  position: relative;
  padding: 70px 55px 130px 0;
  background: url("../images/top/sec01-img03.png") no-repeat calc(100% - 55px) bottom;
}
@media screen and (max-width: 768px) {
  .home-c-box01 .contents-inner .media-box .content {
    padding: 0 6.5104166667vw 0 1.953125vw;
    background: transparent;
  }
  .home-c-box01 .contents-inner .media-box .content .logo img {
    width: 19.53125vw;
  }
}
.home-c-box01 .contents-inner .media-box .content .text {
  margin-top: 35px;
  font-size: 36px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .home-c-box01 .contents-inner .media-box .content .text {
    margin-top: 6.5104166667vw;
    font-size: 7.8125vw;
  }
}
.home-c-box01 .contents-inner .media-box .content .eng {
  margin-top: 20px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
  color: #b09982;
  letter-spacing: 0.3px;
}
@media screen and (max-width: 768px) {
  .home-c-box01 .contents-inner .media-box .content .eng {
    margin-top: 4.5572916667vw;
    font-size: 3.125vw;
  }
}
.home-c-box01 .contents-inner .media-box .content .text01 {
  margin-top: 40px;
  font-size: 26px;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .home-c-box01 .contents-inner .media-box .content .text01 {
    margin-top: 8.4635416667vw;
    font-size: 5.9895833333vw;
  }
}
.home-c-box01 .contents-inner .media-box .content p {
  margin-top: 40px;
  font-size: 16px;
  line-height: 2;
}
.home-c-box01 .contents-inner .media-box .content p::before {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((1 - 2) * 0.5em);
}
@media screen and (max-width: 768px) {
  .home-c-box01 .contents-inner .media-box .content p {
    margin-top: 7.8125vw;
    font-size: 4.1666666667vw;
    letter-spacing: 0.08em;
    text-align: justify;
  }
}
.home-c-box01 .contents-inner .media-box .content .link {
  margin-top: 40px;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .home-c-box01 .contents-inner .media-box .content .link {
    margin-top: 6.5104166667vw;
  }
}
.home-c-box01 .contents-inner .media-box .content .link a {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 25px;
  font-size: 16px;
  font-weight: normal;
  color: #221815;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .home-c-box01 .contents-inner .media-box .content .link a {
    gap: 0 3.2552083333vw;
    font-size: 4.1666666667vw;
  }
}
.home-c-box01 .contents-inner .media-box .content .link a::before {
  content: "";
  width: 160px;
  height: 1px;
  background-color: #443733;
}
@media screen and (max-width: 768px) {
  .home-c-box01 .contents-inner .media-box .content .link a::before {
    width: 26.0416666667vw;
    height: 0.2604166667vw;
  }
}
.home-c-box01 .contents-inner .media-box .content .img {
  position: absolute;
  top: -50px;
  right: 0;
}
@media screen and (max-width: 768px) {
  .home-c-box01 .contents-inner .media-box .content .img {
    top: -7.2916666667vw;
  }
}
@media screen and (max-width: 1000px) {
  .home-c-box01 .contents-inner .media-box .content .img img {
    width: 250px;
  }
}
@media screen and (max-width: 768px) {
  .home-c-box01 .contents-inner .media-box .content .img img {
    width: 40.3645833333vw;
  }
}

.home-c-box02 {
  padding-top: 40px;
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .home-c-box02 {
    padding-top: 20px;
  }
}
.home-c-box02 .contents-inner {
  position: relative;
  max-width: 1328px;
}
@media screen and (max-width: 1328px) {
  .home-c-box02 .contents-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.home-c-box02 .title {
  margin-bottom: 50px;
  text-align: center;
  font-size: 36px;
  font-weight: 100;
  color: #b49a80;
  font-family: "Inter", sans-serif;
}

.home-c-box03 {
  position: relative;
  padding-top: 60px;
  padding-bottom: 100px;
  border-top: 1px solid #eae6da;
}
@media screen and (max-width: 768px) {
  .home-c-box03 {
    padding-top: 7.8125vw;
    padding-bottom: 13.0208333333vw;
  }
}
.home-c-box03::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: 300px;
  height: 1px;
  background-color: #bc9c7a;
}
.home-c-box03 .newitem-slider {
  margin-top: 70px;
}
@media screen and (max-width: 768px) {
  .home-c-box03 .newitem-slider {
    margin-top: 9.1145833333vw;
  }
}
.home-c-box03 .newitem-slider .swiper-slide {
  padding-bottom: 30px;
}

.home-c-box04 {
  padding: 160px 0 120px;
}
@media screen and (max-width: 768px) {
  .home-c-box04 {
    padding: 26.0416666667vw 0 15.625vw;
  }
}
@media screen and (max-width: 550px) {
  .home-c-box04 {
    padding-top: 19.53125vw;
  }
}
.home-c-box04 .contents-inner {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: wrap;
  gap: 0 60px;
  max-width: 1200px;
}
@media screen and (max-width: 1240px) {
  .home-c-box04 .contents-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 768px) {
  .home-c-box04 .contents-inner {
    gap: 0 3.90625vw;
  }
}
.home-c-box04 .contents-inner .section-title {
  flex-shrink: 0;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
  flex-direction: column;
  width: 175px;
  padding-left: 35px;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 768px) {
  .home-c-box04 .contents-inner .section-title {
    width: 22.7864583333vw;
  }
}
@media screen and (max-width: 550px) {
  .home-c-box04 .contents-inner .section-title {
    display: block;
    width: 100%;
    padding-left: 0;
  }
}
.home-c-box04 .contents-inner .section-title .main {
  order: 2;
}
.home-c-box04 .contents-inner .section-title .eng {
  position: relative;
  order: 1;
  margin: 8px 0 0 30px;
}
.home-c-box04 .contents-inner .section-title .eng::before {
  content: "";
  position: absolute;
  top: -90px;
  left: 5px;
  width: 1px;
  height: 80px;
  background-color: #b09982;
}
@media screen and (max-width: 550px) {
  .home-c-box04 .contents-inner .section-title .eng::before {
    content: none;
  }
}
@media screen and (max-width: 550px) {
  .home-c-box04 .contents-inner .section-title {
    writing-mode: inherit;
    text-align: center;
  }
  .home-c-box04 .contents-inner .section-title .main {
    order: 1;
  }
  .home-c-box04 .contents-inner .section-title .eng {
    order: 2;
    width: 100%;
    margin: 3.2552083333vw 0 0 0;
  }
}
.home-c-box04 .contents-inner .column-list {
  width: calc(100% - 175px - 60px);
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: wrap;
  gap: 45px 4.6%;
}
@media screen and (max-width: 768px) {
  .home-c-box04 .contents-inner .column-list {
    width: calc(100% - 22.7864583333vw - 3.90625vw);
  }
}
@media screen and (max-width: 550px) {
  .home-c-box04 .contents-inner .column-list {
    width: 100%;
    margin-top: 3.90625vw;
  }
}
.home-c-box04 .contents-inner .column-list .item {
  width: 47.7%;
}
.home-c-box04 .contents-inner .column-list .item a {
  display: block;
}
.home-c-box04 .contents-inner .column-list .item a img {
  transition: 0.3s;
}
.home-c-box04 .contents-inner .column-list .item a:focus img {
  filter: brightness(0.9);
}
@media (hover: hover) and (pointer: fine) {
  .home-c-box04 .contents-inner .column-list .item a:hover img {
    filter: brightness(0.9);
  }
}
.home-c-box04 .contents-inner .column-list .item .item-thumbnail {
  position: relative;
  background-color: transparent;
}
.home-c-box04 .contents-inner .column-list .item .item-thumbnail::before {
  content: "";
  display: block;
  padding-top: 66.5217391304%;
}
.home-c-box04 .contents-inner .column-list .item .item-thumbnail img,
.home-c-box04 .contents-inner .column-list .item .item-thumbnail iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-c-box04 .contents-inner .column-list .item .item-title {
  margin-top: 25px;
  font-size: 16px;
  color: #221815;
  text-decoration: none;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
@media screen and (max-width: 550px) {
  .home-c-box04 .contents-inner .column-list .item .item-title {
    margin-top: 3.2552083333vw;
    font-size: 3.125vw;
  }
}
.home-c-box04 .contents-inner .normal-btn {
  width: 100%;
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .home-c-box04 .contents-inner .normal-btn {
    margin-top: 7.8125vw;
  }
}
.home-c-box04 .contents-inner .normal-btn a {
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .home-c-box04 .contents-inner .normal-btn a {
    margin: 0 auto;
  }
}

.home-c-box05 {
  position: relative;
  padding: 50px 0 90px;
  border-top: 1px solid #eae6da;
}
.home-c-box05::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  width: 300px;
  height: 1px;
  background-color: #bc9c7a;
}
.home-c-box05 .normal-btn {
  margin-top: 50px;
}
.home-c-box05 .normal-btn a {
  margin: 0 auto;
}
.home-c-box05 .contents-inner {
  position: relative;
  max-width: 1328px;
}
@media screen and (max-width: 1328px) {
  .home-c-box05 .contents-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.home-c-box05 .section-title {
  padding-bottom: 50px;
}
.home-c-box05 .popular-slider {
  margin-top: 70px;
}
@media screen and (max-width: 768px) {
  .home-c-box05 .popular-slider {
    margin-top: 9.1145833333vw;
  }
}
.home-c-box05 .popular-slider .swiper-slide {
  padding: 20px 25px 50px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .home-c-box05 .popular-slider .swiper-slide {
    padding: 2.6041666667vw 2.6041666667vw 6.5104166667vw;
  }
}
.home-c-box05 .popular-slider .swiper-slide .item-thumbnail {
  position: relative;
  background-color: transparent;
}
.home-c-box05 .popular-slider .swiper-slide .item-thumbnail::before {
  content: "";
  display: block;
  padding-top: 66.6%;
}
.home-c-box05 .popular-slider .swiper-slide .item-thumbnail img,
.home-c-box05 .popular-slider .swiper-slide .item-thumbnail iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-c-box05 .popular-slider .swiper-pagination {
  background-color: #e4dfd5;
}

.home-c-box06 {
  padding-top: 100px;
}
@media screen and (max-width: 768px) {
  .home-c-box06 {
    padding-top: 13.0208333333vw;
  }
}
.home-c-box06 .contents-inner {
  max-width: 1480px;
}
@media screen and (max-width: 1520px) {
  .home-c-box06 .contents-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.home-c-box06 .normal-btn a:hover {
  background-color: #e5e5e5;
}

.instagram-box {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  flex-direction: column;
  height: 420px;
  background: url("../images/top/instagram-bg.png") no-repeat center center;
  background-size: cover;
  border-radius: 10px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .instagram-box {
    height: auto;
    padding: 30px 0;
  }
}
.instagram-box .title {
  padding-top: 60px;
  font-size: 24px;
  font-weight: 400;
  background: url("../images/top/instagram-title-icon.png") no-repeat center top;
}
@media screen and (max-width: 768px) {
  .instagram-box .title {
    padding-top: 7.8125vw;
    font-size: 3.90625vw;
    background-size: 5.2083333333vw auto;
  }
}
.instagram-box .normal-btn {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .instagram-box .normal-btn {
    margin-top: 5.2083333333vw;
  }
}
.instagram-box p {
  margin-top: 30px;
  font-size: 16px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .instagram-box p {
    margin-top: 7.8125vw;
    font-size: 4.1666666667vw;
  }
}
.instagram-box .sns-list {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 15px;
  margin-top: 20px;
}
.instagram-box .sns-list a img {
  transition: 0.3s;
}
.instagram-box .sns-list a:focus img {
  background-color: rgba(0, 0, 0, 0.1);
}
@media (hover: hover) and (pointer: fine) {
  .instagram-box .sns-list a:hover img {
    background-color: rgba(0, 0, 0, 0.1);
  }
}
@media screen and (max-width: 768px) {
  .instagram-box .sns-list {
    margin-top: 5.2083333333vw;
  }
  .instagram-box .sns-list img {
    width: 13.0208333333vw;
  }
}

.home-c-box07 {
  padding: 110px 0 120px;
}
@media screen and (max-width: 768px) {
  .home-c-box07 {
    padding: 14.3229166667vw 0 15.625vw;
  }
}
.home-c-box07 .news-list {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .home-c-box07 .news-list {
    margin-top: 6.5104166667vw;
  }
}
.home-c-box07 .normal-btn {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .home-c-box07 .normal-btn {
    margin-top: 6.5104166667vw;
  }
}
.home-c-box07 .normal-btn a {
  margin: 0 auto;
}

/*--------------------------
SUB
----------------------------*/
body.sub #globalHeader {
  border-bottom: 1px solid #e7e5dd;
}
body.sub #breadcrumb {
  max-width: 1460px;
  width: 100%;
  margin: 0 auto;
  padding-top: 25px;
}
@media screen and (max-width: 1500px) {
  body.sub #breadcrumb {
    padding-left: 20px;
    padding-right: 20px;
  }
}
body.sub #breadcrumb .contents-inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  max-width: 1530px;
  gap: 0 15px;
}
body.sub #breadcrumb span {
  color: #796d6a;
  font-size: 13px;
}
body.sub #breadcrumb a {
  color: #796d6a;
  text-decoration: none;
}
@media screen and (min-width: 769px) {
  body.sub #breadcrumb a {
    text-decoration: none;
  }
  body.sub #breadcrumb a:hover {
    text-decoration: underline;
  }
}
body.sub .page-title {
  margin-top: 100px;
  margin-bottom: 75px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  body.sub .page-title {
    margin-top: 50px;
    margin-bottom: 30px;
  }
}
body.sub .page-title .main {
  font-size: 40px;
  font-weight: 600;
  font-family: "Zen Old Mincho", serif;
}
@media screen and (max-width: 768px) {
  body.sub .page-title .main {
    font-size: 30px;
  }
}
body.sub .page-title .sub {
  margin-top: 25px;
  color: #b09982;
}
@media screen and (max-width: 768px) {
  body.sub .page-title .sub {
    margin-top: 15px;
  }
}
@media screen and (max-width: 1440px) {
  body.sub #contents {
    padding-left: 20px;
    padding-right: 20px;
  }
}
body.sub #contents .contents-box {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 90px 0 120px;
  background: #fff;
}
@media screen and (max-width: 1440px) {
  body.sub #contents .contents-box {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 768px) {
  body.sub #contents .contents-box {
    padding: 30px 0;
  }
}
body.sub #globalFooter {
  margin-top: 120px;
  border-top: 1px solid #e7e5dd;
}
@media screen and (max-width: 768px) {
  body.sub #globalFooter {
    margin-top: 60px;
  }
}

/*--------------------------
ABOUT
----------------------------*/
body.about .page-title {
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  body.about .page-title {
    margin-bottom: 40px;
  }
}
body.about #contents .contents-box {
  background-color: transparent;
}
body.about #contents .contents-box.about-c-box01 {
  padding-top: 0;
}
body.about #globalFooter {
  margin-top: 0;
}

.about-c-box01 {
  text-align: center;
}
.about-c-box01 .eng-title {
  margin-top: 85px;
}
@media screen and (max-width: 768px) {
  .about-c-box01 .eng-title {
    margin-top: 40px;
  }
}
.about-c-box01 p {
  margin-top: 50px;
  font-size: 16px;
  line-height: 2;
  color: #403735;
}
@media screen and (max-width: 768px) {
  .about-c-box01 p {
    margin-top: 30px;
    font-size: 14px;
  }
}

.about-c-box02 {
  position: relative;
  margin-top: 90px;
  padding: 50px 0 60px;
  border-top: 1px solid #eae6da;
  border-bottom: 1px solid #eae6da;
}
@media screen and (max-width: 768px) {
  .about-c-box02 {
    margin-top: 40px;
    padding: 30px 0;
  }
}
.about-c-box02 .title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -25px;
}
.about-c-box02 .title span {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  width: 280px;
  height: 50px;
  background-color: #f9f8f4;
  font-size: 26px;
  font-weight: 600;
  font-family: "Zen Old Mincho", serif;
}
@media screen and (max-width: 768px) {
  .about-c-box02 .title span {
    width: fit-content;
    padding: 0 20px;
    font-size: 20px;
  }
}

.about-c-box03 {
  padding: 100px 0 90px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .about-c-box03 {
    padding: 50px 0;
  }
}
.about-c-box03 p {
  margin-top: 50px;
  font-size: 16px;
  line-height: 2;
  color: #403735;
}
@media screen and (max-width: 768px) {
  .about-c-box03 p {
    margin-top: 30px;
    font-size: 14px;
  }
}
.about-c-box03 .mission-list {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 25px;
  margin-top: 40px;
}
@media screen and (max-width: 500px) {
  .about-c-box03 .mission-list {
    flex-wrap: wrap;
    gap: 20px 0;
  }
}
.about-c-box03 .mission-list .mission-item {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  width: 410px;
  height: 200px;
  border-radius: 200px;
  border: solid 1px #e2dfd3;
  background-color: #fcfcfa;
  color: #403735;
}
@media screen and (max-width: 768px) {
  .about-c-box03 .mission-list .mission-item {
    height: 150px;
    border-radius: 150px;
  }
}
@media screen and (max-width: 500px) {
  .about-c-box03 .mission-list .mission-item {
    width: 100%;
  }
}
.about-c-box03 .mission-list .mission-item::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 7px;
  width: calc(100% - 14px);
  height: calc(100% - 14px);
  border-radius: 186px;
  border: solid 1px #e2dfd3;
}
.about-c-box03 .mission-list .mission-item .item-inner {
  display: flex;
  flex-direction: column;
}
.about-c-box03 .mission-list .mission-item .item-inner span:nth-of-type(1) {
  font-size: 22px;
  font-weight: 500;
  font-family: "Zen Old Mincho", serif;
  color: #403735;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .about-c-box03 .mission-list .mission-item .item-inner span:nth-of-type(1) {
    font-size: 18px;
  }
}
.about-c-box03 .mission-list .mission-item .item-inner span:nth-of-type(2) {
  margin-top: 10px;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .about-c-box03 .mission-list .mission-item .item-inner span:nth-of-type(2) {
    font-size: 14px;
  }
}

.about-c-box04 {
  position: relative;
  max-width: 100% !important;
  padding: 110px 0 585px !important;
  background: url("../images/about/history-bg.png") no-repeat center bottom #f9f8f4 !important;
  background-size: 100% auto;
}
@media screen and (max-width: 768px) {
  .about-c-box04 {
    padding: 50px 0 600px !important;
  }
}
.about-c-box04::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #eae6da;
}
.about-c-box04 .history-list {
  display: flex;
  flex-direction: column;
  gap: 20px 0;
  width: fit-content;
  margin: 60px auto 0;
}
.about-c-box04 .history-list .history-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 50px;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .about-c-box04 .history-list .history-item {
    gap: 0 30px;
    font-size: 14px;
    line-height: 1.4;
  }
}
.about-c-box04 .history-list .history-item .year {
  position: relative;
  padding-left: 35px;
  color: #403735;
  flex-shrink: 0;
}
.about-c-box04 .history-list .history-item .year::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 20px;
  height: 1px;
  background-color: #e0d7ce;
}

/*--------------------------
ARCHIVE
----------------------------*/
body.archive-page #contents .contents-box {
  background-color: transparent;
}

.archive-c-box01 {
  padding: 40px 0 50px;
  border-bottom: 1px solid #eae6da;
}
@media screen and (max-width: 768px) {
  .archive-c-box01 {
    padding: 30px 0;
  }
}
.archive-c-box01 .contents-inner {
  max-width: 1200px;
}
@media screen and (max-width: 1200px) {
  .archive-c-box01 .contents-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.archive-c-box02 {
  padding-top: 100px;
}
@media screen and (max-width: 768px) {
  .archive-c-box02 {
    padding-top: 50px;
  }
}
.archive-c-box02 .contents-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1240px) {
  .archive-c-box02 .contents-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.archive-c-box02 .archive-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
}
@media screen and (max-width: 1000px) {
  .archive-c-box02 .archive-head {
    flex-wrap: wrap;
    gap: 10px 0;
  }
}
.archive-c-box02 .archive-head .page-title {
  margin: 0;
  text-align: left;
  line-height: 1.4;
}
@media screen and (max-width: 1000px) {
  .archive-c-box02 .archive-head .page-title {
    width: 100%;
  }
}
.archive-c-box02 .archive-head .order {
  width: 220px;
}
@media screen and (max-width: 1000px) {
  .archive-c-box02 .archive-head .order {
    width: 100%;
    text-align: right;
  }
}
.archive-c-box02 .archive-head .order select {
  width: 100%;
  height: 50px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  border-radius: 0;
  border-bottom: 1px solid #c0bba6;
  background: url("../images/common/icon-arrow-btm.svg") no-repeat calc(100% - 6px) center;
  background-size: 13px 8px;
}
@media screen and (max-width: 1000px) {
  .archive-c-box02 .archive-head .order select {
    width: 220px;
  }
}
.archive-c-box02 .product-list {
  margin-top: 100px;
}

/*--------------------------
SUB
----------------------------*/
/*--------------------------
COLUMN
----------------------------*/
body.column #contents .page-title {
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  body.column #contents .page-title {
    margin-bottom: 40px;
  }
}
body.column #contents .contents-box {
  padding: 0;
  background-color: transparent;
}

.column-c-box01 .post-head .post-date {
  position: relative;
  padding-left: 75px;
  font-size: 16px;
  color: #9a7e61;
}
@media screen and (max-width: 768px) {
  .column-c-box01 .post-head .post-date {
    padding-left: 50px;
    font-size: 14px;
  }
}
.column-c-box01 .post-head .post-date::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 57px;
  height: 1px;
  background-color: #9a7e61;
}
@media screen and (max-width: 768px) {
  .column-c-box01 .post-head .post-date::before {
    width: 37px;
  }
}
.column-c-box01 .post-head .post-title {
  margin-top: 30px;
  font-size: 26px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .column-c-box01 .post-head .post-title {
    font-size: 20px;
  }
}
.column-c-box01 .post-head .post-thumbnail {
  margin-top: 65px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .column-c-box01 .post-head .post-thumbnail {
    margin-top: 30px;
  }
}
.column-c-box01 .post-head .post-thumbnail img {
  max-width: 100%;
}
.column-c-box01 .editor-styles-wrapper {
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .column-c-box01 .editor-styles-wrapper {
    margin-top: 50px;
  }
}
.column-c-box01 .normal-btn {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .column-c-box01 .normal-btn {
    margin-top: 30px;
  }
}
.column-c-box01 .normal-btn a {
  margin: 0 auto;
}

/*--------------------------
FAQ
----------------------------*/
.faq-c-box01 {
  background-color: #fff !important;
}
.faq-c-box01 .sub-title {
  margin: 120px 0 60px;
}
@media screen and (max-width: 768px) {
  .faq-c-box01 .sub-title {
    margin: 60px 0 30px;
  }
}
.faq-c-box01 .faq-contact-box {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .faq-c-box01 .faq-contact-box {
    margin-top: 30px;
  }
}
.faq-c-box01 .faq-contact-box .normal-btn a:hover {
  background-color: #e5e5e5;
}

/*--------------------------
GUIDE
----------------------------*/
body.guide #contents .guide-c-box02 {
  margin-top: 25px;
}

.guide-c-box01,
.guide-c-box02 {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 0 100px;
  background-color: #fff;
}

.guide-step {
  max-width: 1060px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 80px 0;
  margin-top: 90px;
}
@media screen and (max-width: 768px) {
  .guide-step {
    gap: 60px 0;
    margin-top: 40px;
  }
}
.guide-step .guide-item {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 7.5%;
}
@media screen and (max-width: 650px) {
  .guide-step .guide-item {
    flex-wrap: wrap;
    gap: 20px 0;
  }
}
.guide-step .guide-item .step-information {
  flex-grow: 1;
}
@media screen and (max-width: 650px) {
  .guide-step .guide-item .step-information {
    width: 100%;
  }
}
.guide-step .guide-item .step-information .guide-title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 15px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #c9beaf;
}
@media screen and (max-width: 768px) {
  .guide-step .guide-item .step-information .guide-title {
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
}
.guide-step .guide-item .step-information .guide-title span:nth-of-type(1) {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  width: 110px;
  height: 35px;
  background-color: #bc9c7a;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  font-family: "Inter", sans-serif;
  border-radius: 35px;
}
@media screen and (max-width: 768px) {
  .guide-step .guide-item .step-information .guide-title span:nth-of-type(1) {
    width: 90px;
    height: 30px;
    border-radius: 30px;
    font-size: 13px;
  }
}
.guide-step .guide-item .step-information .guide-title span:nth-of-type(2) {
  font-size: 20px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .guide-step .guide-item .step-information .guide-title span:nth-of-type(2) {
    font-size: 18px;
  }
}
.guide-step .guide-item .step-information .guide-badge {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  width: 150px;
  height: 32px;
  margin: 35px 0 20px;
  border: solid 1px #3f3633;
  border-radius: 32px;
  color: #3f3633;
}
@media screen and (max-width: 768px) {
  .guide-step .guide-item .step-information .guide-badge {
    width: 120px;
    height: 25px;
    margin: 20px 0 10px;
    border-radius: 25px;
    font-size: 12px;
  }
}
.guide-step .guide-item .step-information p {
  line-height: 1.8;
}
.guide-step .guide-item .step-information p + p {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .guide-step .guide-item .step-information p + p {
    margin-top: 20px;
  }
}
.guide-step .guide-item .step-img {
  flex-shrink: 0;
  width: 41.5%;
}
@media screen and (max-width: 650px) {
  .guide-step .guide-item .step-img {
    width: 100%;
    text-align: center;
  }
}
.guide-step .guide-item .step-img img {
  width: 100%;
}
@media screen and (max-width: 650px) {
  .guide-step .guide-item .step-img img {
    width: auto;
  }
}

.guide-caution {
  max-width: 760px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.guide-caution .sub-title {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .guide-caution .sub-title {
    margin-bottom: 30px;
  }
}
.guide-caution .guide-caution-box .caution-title {
  margin-bottom: 30px;
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid #c9beaf;
  border-bottom: 1px solid #c9beaf;
  font-size: 24px;
  font-weight: 600;
  font-family: "Zen Old Mincho", serif;
}
@media screen and (max-width: 768px) {
  .guide-caution .guide-caution-box .caution-title {
    margin-bottom: 20px;
    padding: 15px 0;
    font-size: 20px;
  }
}
.guide-caution .guide-caution-box p {
  line-height: 1.8;
}
.guide-caution .guide-caution-box .normal-btn {
  margin: 30px 0 60px;
}
.guide-caution .guide-caution-box .normal-btn.btn02 {
  margin-bottom: 0;
}
.guide-caution .guide-caution-box .normal-btn a {
  margin: 0 auto;
}

/*--------------------------
SUB
----------------------------*/
/*--------------------------
COMPANY
----------------------------*/
.company-c-box01 .list-table table th {
  width: 200px;
}
@media screen and (max-width: 768px) {
  .company-c-box01 .list-table table th {
    width: 150px;
  }
}

/*--------------------------
CONTACT
----------------------------*/
body.contact .contact-form {
  margin-top: 80px;
}

body.contact.thanks .contact-form {
  text-align: center;
}
body.contact.thanks .contact-form .normal-btn a {
  margin: 0 auto;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 27px 0;
}
.contact-form-item.inquiry {
  margin-top: 40px;
}
.contact-form-item.agree {
  width: fit-content;
  margin: 15px auto 0;
}
.contact-form-item.agree .wpcf7-checkbox label {
  font-size: 15px;
  color: #403735;
}
.contact-form-item.agree .wpcf7-checkbox label {
  cursor: pointer;
  position: relative;
  padding-left: 25px;
  overflow: hidden;
  position: relative;
  padding-left: 30px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  box-sizing: border-box;
  height: 22px;
}
.contact-form-item.agree .wpcf7-checkbox label:before {
  content: "";
  position: absolute;
  width: 22px;
  height: 22px;
  left: 0px;
  top: 0;
  border: 1px solid #bbb4b4;
  z-index: 3;
  box-sizing: border-box;
  background-color: #fff;
}
.contact-form-item.agree .wpcf7-checkbox label:after {
  content: "";
  position: absolute;
  top: 5px;
  left: 7px;
  display: block;
  width: 7px;
  height: 11px;
  border-right: 3px solid #b39d86;
  border-bottom: 3px solid #b39d86;
  transform: rotate(45deg);
  z-index: 3;
}
.contact-form-item.agree .wpcf7-checkbox label input[type=checkbox] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  z-index: 4;
  top: -2px;
  left: -42px;
  width: 18px;
  height: 18px;
  display: block;
  box-shadow: 41px 0px #fff;
}
.contact-form-item.agree .wpcf7-checkbox label input[type=checkbox]:checked {
  box-shadow: none;
}
.contact-form-item.agree .wpcf7-checkbox label input[type=checkbox]:checked:focus {
  box-shadow: 40px 0px #fff;
  opacity: 0.1;
}
.contact-form-item.agree .wpcf7-checkbox label a {
  color: #403735;
  text-decoration: underline;
}
.contact-form-item .form-title {
  margin-bottom: 18px;
  font-size: 16px;
  font-weight: 500;
}
.contact-form-item .form-title.must {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 25px;
}
.contact-form-item .form-title.must::after {
  content: "必須";
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  width: 50px;
  height: 20px;
  background-color: #db7156;
  border-radius: 20px;
  color: #fff;
  font-size: 12px;
}
.contact-form-item .form-content input[type=text],
.contact-form-item .form-content input[type=email],
.contact-form-item .form-content textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  border-radius: 0;
  width: 100%;
  height: 60px;
  padding: 20px 15px;
  border: 1px solid #c8b9ad;
  border-radius: 4px;
  background-color: #fff;
  font-size: 15px;
  line-height: 1.6;
}
.contact-form-item .form-content input[type=text]:placeholder-shown,
.contact-form-item .form-content input[type=email]:placeholder-shown,
.contact-form-item .form-content textarea:placeholder-shown {
  color: #878482;
}
.contact-form-item .form-content input[type=text]::-webkit-input-placeholder,
.contact-form-item .form-content input[type=email]::-webkit-input-placeholder,
.contact-form-item .form-content textarea::-webkit-input-placeholder {
  color: #878482;
}
.contact-form-item .form-content input[type=text]:-moz-placeholder,
.contact-form-item .form-content input[type=email]:-moz-placeholder,
.contact-form-item .form-content textarea:-moz-placeholder {
  color: #878482;
}
.contact-form-item .form-content input[type=text]::-moz-placeholder,
.contact-form-item .form-content input[type=email]::-moz-placeholder,
.contact-form-item .form-content textarea::-moz-placeholder {
  color: #878482;
}
.contact-form-item .form-content input[type=text]:-ms-input-placeholder,
.contact-form-item .form-content input[type=email]:-ms-input-placeholder,
.contact-form-item .form-content textarea:-ms-input-placeholder {
  color: #878482;
}
@media screen and (max-width: 768px) {
  .contact-form-item .form-content input[type=text],
  .contact-form-item .form-content input[type=email],
  .contact-form-item .form-content textarea {
    height: 40px;
    padding: 15px;
    font-size: 14px;
  }
}
.contact-form-item .form-content textarea {
  height: 300px;
  resize: none;
}
@media screen and (max-width: 768px) {
  .contact-form-item .form-content textarea {
    height: 250px;
  }
}
.contact-form-item .form-content .wpcf7-radio {
  display: flex;
  flex-direction: column;
  gap: 15px 0;
}
.contact-form-item .form-content .wpcf7-radio .wpcf7-list-item label {
  cursor: pointer;
  position: relative;
  padding-left: 35px;
  margin-right: 20px;
  min-height: 22px;
  overflow: hidden;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  box-sizing: border-box;
}
.contact-form-item .form-content .wpcf7-radio .wpcf7-list-item label:before {
  position: absolute;
  width: 22px;
  height: 22px;
  border: 1px solid #bbb4b4;
  background-color: #fff;
  border-radius: 22px;
  left: 0;
  top: 0;
  content: "";
  z-index: 1;
  box-sizing: border-box;
}
.contact-form-item .form-content .wpcf7-radio .wpcf7-list-item label:after {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  width: 12px;
  height: 12px;
  border-radius: 100%;
  background-color: #b39d86;
  z-index: 1;
  box-sizing: border-box;
}
.contact-form-item .form-content .wpcf7-radio .wpcf7-list-item label input[type=radio] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  top: 4px;
  z-index: 2;
  width: 16px;
  height: 16px;
  left: -12px;
  margin: 0px;
  box-shadow: 16px -1px #fff;
  border-radius: 16px;
  box-sizing: border-box;
}
.contact-form-item .form-content .wpcf7-radio .wpcf7-list-item label input[type=radio]:checked {
  box-shadow: none;
  z-index: 5;
}
.contact-form-item .form-content .wpcf7-not-valid-tip {
  margin-top: 5px;
}
.contact-form .btn-group {
  margin-top: 25px;
  text-align: center;
}
.contact-form .btn-group p {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 20px;
  text-align: center;
}
.contact-form .btn-group input[type=submit],
.contact-form .btn-group input[type=button],
.contact-form .btn-group button[type=submit] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  border-radius: 0;
  display: inline-block;
  width: 320px;
  height: 60px;
  border: solid 1px #443733;
  border-radius: 60px;
  background-color: #fafaf9;
  font-size: 16px;
  color: #3f3836;
  transition: 0.3s;
}
.contact-form .btn-group input[type=submit]:focus,
.contact-form .btn-group input[type=button]:focus,
.contact-form .btn-group button[type=submit]:focus {
  cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
  .contact-form .btn-group input[type=submit]:hover,
  .contact-form .btn-group input[type=button]:hover,
  .contact-form .btn-group button[type=submit]:hover {
    cursor: pointer;
  }
}
.contact-form .btn-group input[type=submit]:focus,
.contact-form .btn-group input[type=button]:focus,
.contact-form .btn-group button[type=submit]:focus {
  background-color: rgba(0, 0, 0, 0.1);
}
@media (hover: hover) and (pointer: fine) {
  .contact-form .btn-group input[type=submit]:hover,
  .contact-form .btn-group input[type=button]:hover,
  .contact-form .btn-group button[type=submit]:hover {
    background-color: rgba(0, 0, 0, 0.1);
  }
}
@media screen and (max-width: 768px) {
  .contact-form .btn-group input[type=submit],
  .contact-form .btn-group input[type=button],
  .contact-form .btn-group button[type=submit] {
    width: 250px;
    max-width: 100%;
    height: 50px;
    border-radius: 50px;
    font-size: 15px;
  }
}
.contact-form .btn-group input[type=submit]:disabled,
.contact-form .btn-group input[type=button]:disabled,
.contact-form .btn-group button[type=submit]:disabled {
  background-color: #ccc;
  color: #eee;
  border: none;
  pointer-events: none;
}
.contact-form .btn-group input[type=button] {
  width: 200px;
}
.contact-form .wpcf7-spinner {
  display: none;
}

.wpcf7-response-output {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  margin-left: auto !important;
  margin-right: auto !important;
}

/*--------------------------
WOO COOMERCE
----------------------------*/
body.woocommerce-account input[type=text],
body.woocommerce-account input[type=email],
body.woocommerce-account input[type=tel],
body.woocommerce-account input[type=password],
body.woocommerce-account textarea,
body.woocommerce-checkout input[type=text],
body.woocommerce-checkout input[type=email],
body.woocommerce-checkout input[type=tel],
body.woocommerce-checkout input[type=password],
body.woocommerce-checkout textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  border-radius: 0;
  width: 100%;
  height: 60px;
  padding: 20px 15px;
  border: 1px solid #c8b9ad;
  border-radius: 4px;
  background-color: #fff;
  font-size: 15px;
  line-height: 1.6;
}
body.woocommerce-account input[type=text]:placeholder-shown,
body.woocommerce-account input[type=email]:placeholder-shown,
body.woocommerce-account input[type=tel]:placeholder-shown,
body.woocommerce-account input[type=password]:placeholder-shown,
body.woocommerce-account textarea:placeholder-shown,
body.woocommerce-checkout input[type=text]:placeholder-shown,
body.woocommerce-checkout input[type=email]:placeholder-shown,
body.woocommerce-checkout input[type=tel]:placeholder-shown,
body.woocommerce-checkout input[type=password]:placeholder-shown,
body.woocommerce-checkout textarea:placeholder-shown {
  color: #878482;
}
body.woocommerce-account input[type=text]::-webkit-input-placeholder,
body.woocommerce-account input[type=email]::-webkit-input-placeholder,
body.woocommerce-account input[type=tel]::-webkit-input-placeholder,
body.woocommerce-account input[type=password]::-webkit-input-placeholder,
body.woocommerce-account textarea::-webkit-input-placeholder,
body.woocommerce-checkout input[type=text]::-webkit-input-placeholder,
body.woocommerce-checkout input[type=email]::-webkit-input-placeholder,
body.woocommerce-checkout input[type=tel]::-webkit-input-placeholder,
body.woocommerce-checkout input[type=password]::-webkit-input-placeholder,
body.woocommerce-checkout textarea::-webkit-input-placeholder {
  color: #878482;
}
body.woocommerce-account input[type=text]:-moz-placeholder,
body.woocommerce-account input[type=email]:-moz-placeholder,
body.woocommerce-account input[type=tel]:-moz-placeholder,
body.woocommerce-account input[type=password]:-moz-placeholder,
body.woocommerce-account textarea:-moz-placeholder,
body.woocommerce-checkout input[type=text]:-moz-placeholder,
body.woocommerce-checkout input[type=email]:-moz-placeholder,
body.woocommerce-checkout input[type=tel]:-moz-placeholder,
body.woocommerce-checkout input[type=password]:-moz-placeholder,
body.woocommerce-checkout textarea:-moz-placeholder {
  color: #878482;
}
body.woocommerce-account input[type=text]::-moz-placeholder,
body.woocommerce-account input[type=email]::-moz-placeholder,
body.woocommerce-account input[type=tel]::-moz-placeholder,
body.woocommerce-account input[type=password]::-moz-placeholder,
body.woocommerce-account textarea::-moz-placeholder,
body.woocommerce-checkout input[type=text]::-moz-placeholder,
body.woocommerce-checkout input[type=email]::-moz-placeholder,
body.woocommerce-checkout input[type=tel]::-moz-placeholder,
body.woocommerce-checkout input[type=password]::-moz-placeholder,
body.woocommerce-checkout textarea::-moz-placeholder {
  color: #878482;
}
body.woocommerce-account input[type=text]:-ms-input-placeholder,
body.woocommerce-account input[type=email]:-ms-input-placeholder,
body.woocommerce-account input[type=tel]:-ms-input-placeholder,
body.woocommerce-account input[type=password]:-ms-input-placeholder,
body.woocommerce-account textarea:-ms-input-placeholder,
body.woocommerce-checkout input[type=text]:-ms-input-placeholder,
body.woocommerce-checkout input[type=email]:-ms-input-placeholder,
body.woocommerce-checkout input[type=tel]:-ms-input-placeholder,
body.woocommerce-checkout input[type=password]:-ms-input-placeholder,
body.woocommerce-checkout textarea:-ms-input-placeholder {
  color: #878482;
}
@media screen and (max-width: 768px) {
  body.woocommerce-account input[type=text],
  body.woocommerce-account input[type=email],
  body.woocommerce-account input[type=tel],
  body.woocommerce-account input[type=password],
  body.woocommerce-account textarea,
  body.woocommerce-checkout input[type=text],
  body.woocommerce-checkout input[type=email],
  body.woocommerce-checkout input[type=tel],
  body.woocommerce-checkout input[type=password],
  body.woocommerce-checkout textarea {
    height: 40px;
    padding: 15px;
    font-size: 14px;
  }
}
body.woocommerce-account textarea,
body.woocommerce-checkout textarea {
  height: 200px;
  resize: none;
}
body.woocommerce-account .select2-container,
body.woocommerce-checkout .select2-container {
  position: relative;
  width: 300px !important;
}
body.woocommerce-account .select2-container .select2-selection,
body.woocommerce-checkout .select2-container .select2-selection {
  width: 100%;
  height: 60px;
  border: 1px solid #c8b9ad;
  border-radius: 4px;
  background-color: #fff;
  font-size: 15px;
  line-height: 1.6;
}
body.woocommerce-account .select2-container .select2-selection .select2-selection__rendered,
body.woocommerce-checkout .select2-container .select2-selection .select2-selection__rendered {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  height: 100%;
}
body.woocommerce-account .select2-container .select2-selection .select2-selection__arrow,
body.woocommerce-checkout .select2-container .select2-selection .select2-selection__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
body.woocommerce-account .woocommerce-pagination,
body.woocommerce-checkout .woocommerce-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 20px;
}
body.woocommerce-account .woocommerce-pagination a,
body.woocommerce-checkout .woocommerce-pagination a {
  width: 150px;
}
@media screen and (max-width: 768px) {
  body.woocommerce-account .woocommerce-pagination a,
  body.woocommerce-checkout .woocommerce-pagination a {
    width: 100px;
  }
}
body.woocommerce-account .woocommerce-Button,
body.woocommerce-checkout .woocommerce-Button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  border-radius: 0;
  display: inline-block;
  width: 320px;
  height: 60px;
  border: solid 1px #443733;
  border-radius: 60px;
  background-color: #fafaf9;
  font-size: 16px;
  color: #3f3836;
  margin-top: 50px;
  transition: 0.3s;
}
body.woocommerce-account .woocommerce-Button:focus,
body.woocommerce-checkout .woocommerce-Button:focus {
  cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
  body.woocommerce-account .woocommerce-Button:hover,
  body.woocommerce-checkout .woocommerce-Button:hover {
    cursor: pointer;
  }
}
body.woocommerce-account .woocommerce-Button:focus,
body.woocommerce-checkout .woocommerce-Button:focus {
  background-color: rgba(0, 0, 0, 0.1);
}
@media (hover: hover) and (pointer: fine) {
  body.woocommerce-account .woocommerce-Button:hover,
  body.woocommerce-checkout .woocommerce-Button:hover {
    background-color: rgba(0, 0, 0, 0.1);
  }
}
@media screen and (max-width: 768px) {
  body.woocommerce-account .woocommerce-Button,
  body.woocommerce-checkout .woocommerce-Button {
    width: 200px;
    max-width: 100%;
    height: 50px;
    margin-top: 30px;
    border-radius: 50px;
    font-size: 15px;
  }
}
body.woocommerce-account a.woocommerce-Button,
body.woocommerce-checkout a.woocommerce-Button {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  text-decoration: none;
}
body.woocommerce-account p,
body.woocommerce-checkout p {
  line-height: 1.5;
}
body.woocommerce-account .woocommerce-error,
body.woocommerce-checkout .woocommerce-error {
  display: flex;
  flex-direction: column;
  gap: 5px 0;
  color: red;
}
body.woocommerce-account .woocommerce-error strong,
body.woocommerce-checkout .woocommerce-error strong {
  font-weight: normal;
}
body.woocommerce-account .woocommerce-password-strength,
body.woocommerce-checkout .woocommerce-password-strength {
  margin-top: 5px;
}

body.woocommerce-edit-address .sub-title {
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  body.woocommerce-edit-address .sub-title {
    margin-bottom: 30px;
  }
}
body.woocommerce-edit-address .woocommerce-Addresses {
  display: flex;
  flex-direction: column;
  gap: 30px 0;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  body.woocommerce-edit-address .woocommerce-Addresses {
    gap: 20px 0;
  }
}
body.woocommerce-edit-address .woocommerce-Addresses .woocommerce-Address-title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
}
body.woocommerce-edit-address .woocommerce-Addresses .woocommerce-Address-title h3 {
  width: 120px;
}
@media screen and (max-width: 768px) {
  body.woocommerce-edit-address .woocommerce-Addresses .woocommerce-Address-title h3 {
    width: 90px;
    font-size: 12px;
  }
}
body.woocommerce-edit-address .woocommerce-Addresses .woocommerce-Address-title .normal-btn a {
  width: 150px;
  height: 40px;
  border-radius: 40px;
}
@media screen and (max-width: 768px) {
  body.woocommerce-edit-address .woocommerce-Addresses .woocommerce-Address-title .normal-btn a {
    width: 120px;
    height: 30px;
    border-radius: 30px;
    font-size: 12px;
  }
}
body.woocommerce-edit-address .woocommerce-Addresses address {
  margin-top: 10px;
  padding: 10px;
  line-height: 1.5;
  border: 1px solid #ccc;
}

.woocommerce-address-fields .woocommerce-address-fields__field-wrapper,
.woocommerce-address-fields .woocommerce-billing-fields__field-wrapper,
.woocommerce-address-fields .woocommerce-shipping-fields__field-wrapper,
.woocommerce-address-fields .woocommerce-additional-fields__field-wrapper,
.woocommerce-billing-fields .woocommerce-address-fields__field-wrapper,
.woocommerce-billing-fields .woocommerce-billing-fields__field-wrapper,
.woocommerce-billing-fields .woocommerce-shipping-fields__field-wrapper,
.woocommerce-billing-fields .woocommerce-additional-fields__field-wrapper,
.woocommerce-shipping-fields .woocommerce-address-fields__field-wrapper,
.woocommerce-shipping-fields .woocommerce-billing-fields__field-wrapper,
.woocommerce-shipping-fields .woocommerce-shipping-fields__field-wrapper,
.woocommerce-shipping-fields .woocommerce-additional-fields__field-wrapper,
.woocommerce-additional-fields .woocommerce-address-fields__field-wrapper,
.woocommerce-additional-fields .woocommerce-billing-fields__field-wrapper,
.woocommerce-additional-fields .woocommerce-shipping-fields__field-wrapper,
.woocommerce-additional-fields .woocommerce-additional-fields__field-wrapper {
  display: flex;
  flex-direction: column;
  gap: 27px 0;
}
.woocommerce-address-fields .woocommerce-address-fields__field-wrapper label,
.woocommerce-address-fields .woocommerce-billing-fields__field-wrapper label,
.woocommerce-address-fields .woocommerce-shipping-fields__field-wrapper label,
.woocommerce-address-fields .woocommerce-additional-fields__field-wrapper label,
.woocommerce-billing-fields .woocommerce-address-fields__field-wrapper label,
.woocommerce-billing-fields .woocommerce-billing-fields__field-wrapper label,
.woocommerce-billing-fields .woocommerce-shipping-fields__field-wrapper label,
.woocommerce-billing-fields .woocommerce-additional-fields__field-wrapper label,
.woocommerce-shipping-fields .woocommerce-address-fields__field-wrapper label,
.woocommerce-shipping-fields .woocommerce-billing-fields__field-wrapper label,
.woocommerce-shipping-fields .woocommerce-shipping-fields__field-wrapper label,
.woocommerce-shipping-fields .woocommerce-additional-fields__field-wrapper label,
.woocommerce-additional-fields .woocommerce-address-fields__field-wrapper label,
.woocommerce-additional-fields .woocommerce-billing-fields__field-wrapper label,
.woocommerce-additional-fields .woocommerce-shipping-fields__field-wrapper label,
.woocommerce-additional-fields .woocommerce-additional-fields__field-wrapper label {
  display: block;
  margin-bottom: 18px;
  font-size: 16px;
  font-weight: 500;
}
.woocommerce-address-fields .woocommerce-address-fields__field-wrapper label:has(.required),
.woocommerce-address-fields .woocommerce-billing-fields__field-wrapper label:has(.required),
.woocommerce-address-fields .woocommerce-shipping-fields__field-wrapper label:has(.required),
.woocommerce-address-fields .woocommerce-additional-fields__field-wrapper label:has(.required),
.woocommerce-billing-fields .woocommerce-address-fields__field-wrapper label:has(.required),
.woocommerce-billing-fields .woocommerce-billing-fields__field-wrapper label:has(.required),
.woocommerce-billing-fields .woocommerce-shipping-fields__field-wrapper label:has(.required),
.woocommerce-billing-fields .woocommerce-additional-fields__field-wrapper label:has(.required),
.woocommerce-shipping-fields .woocommerce-address-fields__field-wrapper label:has(.required),
.woocommerce-shipping-fields .woocommerce-billing-fields__field-wrapper label:has(.required),
.woocommerce-shipping-fields .woocommerce-shipping-fields__field-wrapper label:has(.required),
.woocommerce-shipping-fields .woocommerce-additional-fields__field-wrapper label:has(.required),
.woocommerce-additional-fields .woocommerce-address-fields__field-wrapper label:has(.required),
.woocommerce-additional-fields .woocommerce-billing-fields__field-wrapper label:has(.required),
.woocommerce-additional-fields .woocommerce-shipping-fields__field-wrapper label:has(.required),
.woocommerce-additional-fields .woocommerce-additional-fields__field-wrapper label:has(.required) {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 25px;
}
.woocommerce-address-fields .woocommerce-address-fields__field-wrapper label:has(.required)::after,
.woocommerce-address-fields .woocommerce-billing-fields__field-wrapper label:has(.required)::after,
.woocommerce-address-fields .woocommerce-shipping-fields__field-wrapper label:has(.required)::after,
.woocommerce-address-fields .woocommerce-additional-fields__field-wrapper label:has(.required)::after,
.woocommerce-billing-fields .woocommerce-address-fields__field-wrapper label:has(.required)::after,
.woocommerce-billing-fields .woocommerce-billing-fields__field-wrapper label:has(.required)::after,
.woocommerce-billing-fields .woocommerce-shipping-fields__field-wrapper label:has(.required)::after,
.woocommerce-billing-fields .woocommerce-additional-fields__field-wrapper label:has(.required)::after,
.woocommerce-shipping-fields .woocommerce-address-fields__field-wrapper label:has(.required)::after,
.woocommerce-shipping-fields .woocommerce-billing-fields__field-wrapper label:has(.required)::after,
.woocommerce-shipping-fields .woocommerce-shipping-fields__field-wrapper label:has(.required)::after,
.woocommerce-shipping-fields .woocommerce-additional-fields__field-wrapper label:has(.required)::after,
.woocommerce-additional-fields .woocommerce-address-fields__field-wrapper label:has(.required)::after,
.woocommerce-additional-fields .woocommerce-billing-fields__field-wrapper label:has(.required)::after,
.woocommerce-additional-fields .woocommerce-shipping-fields__field-wrapper label:has(.required)::after,
.woocommerce-additional-fields .woocommerce-additional-fields__field-wrapper label:has(.required)::after {
  content: "必須";
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  width: 50px;
  height: 20px;
  background-color: #db7156;
  border-radius: 20px;
  color: #fff;
  font-size: 12px;
}
.woocommerce-address-fields .woocommerce-address-fields__field-wrapper label abbr,
.woocommerce-address-fields .woocommerce-billing-fields__field-wrapper label abbr,
.woocommerce-address-fields .woocommerce-shipping-fields__field-wrapper label abbr,
.woocommerce-address-fields .woocommerce-additional-fields__field-wrapper label abbr,
.woocommerce-billing-fields .woocommerce-address-fields__field-wrapper label abbr,
.woocommerce-billing-fields .woocommerce-billing-fields__field-wrapper label abbr,
.woocommerce-billing-fields .woocommerce-shipping-fields__field-wrapper label abbr,
.woocommerce-billing-fields .woocommerce-additional-fields__field-wrapper label abbr,
.woocommerce-shipping-fields .woocommerce-address-fields__field-wrapper label abbr,
.woocommerce-shipping-fields .woocommerce-billing-fields__field-wrapper label abbr,
.woocommerce-shipping-fields .woocommerce-shipping-fields__field-wrapper label abbr,
.woocommerce-shipping-fields .woocommerce-additional-fields__field-wrapper label abbr,
.woocommerce-additional-fields .woocommerce-address-fields__field-wrapper label abbr,
.woocommerce-additional-fields .woocommerce-billing-fields__field-wrapper label abbr,
.woocommerce-additional-fields .woocommerce-shipping-fields__field-wrapper label abbr,
.woocommerce-additional-fields .woocommerce-additional-fields__field-wrapper label abbr {
  display: none;
}

body.woocommerce-orders .orders-list {
  display: flex;
  flex-direction: column;
  gap: 40px 0;
  margin-top: 70px;
}
body.woocommerce-orders .orders-list .orders-item {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  height: 140px;
  padding: 0 110px 0 60px;
  border: solid 1px #dad7c9;
  border-left: 5px solid #cbb397;
  background: url("../images/common/icon-arrow-right-brown.svg") no-repeat calc(100% - 30px) center;
  background-color: #fff;
  transition: 0.3s;
}
body.woocommerce-orders .orders-list .orders-item:focus {
  filter: brightness(0.9);
}
@media (hover: hover) and (pointer: fine) {
  body.woocommerce-orders .orders-list .orders-item:hover {
    filter: brightness(0.9);
  }
}
@media screen and (max-width: 1000px) {
  body.woocommerce-orders .orders-list .orders-item {
    padding: 0 80px 0 40px;
  }
}
@media screen and (max-width: 768px) {
  body.woocommerce-orders .orders-list .orders-item {
    height: auto;
    padding: 20px 40px 20px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px 0;
  }
}
body.woocommerce-orders .orders-list .orders-item > a {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
body.woocommerce-orders .orders-list .orders-item > div {
  flex-shrink: 0;
}
body.woocommerce-orders .orders-list .orders-item > div.order-number, body.woocommerce-orders .orders-list .orders-item > div.order-amount {
  margin-left: 100px;
}
@media screen and (max-width: 1000px) {
  body.woocommerce-orders .orders-list .orders-item > div.order-number, body.woocommerce-orders .orders-list .orders-item > div.order-amount {
    margin-left: 50px;
  }
}
@media screen and (max-width: 768px) {
  body.woocommerce-orders .orders-list .orders-item > div.order-number, body.woocommerce-orders .orders-list .orders-item > div.order-amount {
    margin-left: 0;
  }
}
body.woocommerce-orders .orders-list .orders-item > div .headline {
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  body.woocommerce-orders .orders-list .orders-item > div .headline {
    font-size: 14px;
  }
}
body.woocommerce-orders .orders-list .orders-item > div .content {
  margin-top: 15px;
  font-size: 16px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  body.woocommerce-orders .orders-list .orders-item > div .content {
    margin-top: 10px;
    font-size: 14px;
  }
}
body.woocommerce-orders .orders-list .orders-item > div.order-status {
  flex-grow: 1;
  text-align: right;
  font-size: 16px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  body.woocommerce-orders .orders-list .orders-item > div.order-status {
    font-size: 15px;
  }
}

@media screen and (max-width: 500px) {
  body.woocommerce-view-order .list-table table tr,
  body.woocommerce-view-order .list-table table th,
  body.woocommerce-view-order .list-table table td,
  body.woocommerce-checkout .list-table table tr,
  body.woocommerce-checkout .list-table table th,
  body.woocommerce-checkout .list-table table td {
    display: block;
    width: 100% !important;
  }
  body.woocommerce-view-order .list-table table tr:nth-of-type(1) th,
  body.woocommerce-checkout .list-table table tr:nth-of-type(1) th {
    border-top-color: #dad7c9;
  }
}
body.woocommerce-view-order .list-table table th,
body.woocommerce-checkout .list-table table th {
  width: 180px;
}
@media screen and (max-width: 500px) {
  body.woocommerce-view-order .list-table table th,
  body.woocommerce-checkout .list-table table th {
    font-weight: bold;
  }
}
body.woocommerce-view-order .list-table table tr.order-product th,
body.woocommerce-view-order .list-table table tr.order-product td,
body.woocommerce-checkout .list-table table tr.order-product th,
body.woocommerce-checkout .list-table table tr.order-product td {
  vertical-align: top;
}
body.woocommerce-view-order .list-table table tr.order-product th,
body.woocommerce-checkout .list-table table tr.order-product th {
  border-bottom: 1px solid #dad7c9;
}
body.woocommerce-view-order .list-table table tr.order-product td,
body.woocommerce-checkout .list-table table tr.order-product td {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
}
body.woocommerce-view-order .order-product-list .order-product-item,
body.woocommerce-checkout .order-product-list .order-product-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  padding: 35px 0 35px 50px;
  border-bottom: 1px solid #dad7c9;
}
@media screen and (max-width: 1000px) {
  body.woocommerce-view-order .order-product-list .order-product-item,
  body.woocommerce-checkout .order-product-list .order-product-item {
    flex-wrap: wrap;
    padding: 20px 0 20px 50px;
  }
}
@media screen and (max-width: 768px) {
  body.woocommerce-view-order .order-product-list .order-product-item,
  body.woocommerce-checkout .order-product-list .order-product-item {
    padding-left: 20px;
  }
}
@media screen and (max-width: 500px) {
  body.woocommerce-view-order .order-product-list .order-product-item,
  body.woocommerce-checkout .order-product-list .order-product-item {
    padding-left: 0;
    padding-top: 0;
  }
}
body.woocommerce-view-order .order-product-list .order-product-item:last-child,
body.woocommerce-checkout .order-product-list .order-product-item:last-child {
  border-bottom: none;
}
body.woocommerce-view-order .order-product-list .left-col,
body.woocommerce-checkout .order-product-list .left-col {
  width: 280px;
}
@media screen and (max-width: 1000px) {
  body.woocommerce-view-order .order-product-list .left-col,
  body.woocommerce-checkout .order-product-list .left-col {
    width: 100%;
  }
}
body.woocommerce-view-order .order-product-list .left-col .product-name,
body.woocommerce-checkout .order-product-list .left-col .product-name {
  font-size: 15px;
  font-weight: 500;
  color: #3f3836;
  line-height: 1.4;
}
@media screen and (min-width: 1001px) {
  body.woocommerce-view-order .order-product-list .left-col .product-name,
  body.woocommerce-checkout .order-product-list .left-col .product-name {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
  }
}
body.woocommerce-view-order .order-product-list .left-col .left-footer,
body.woocommerce-checkout .order-product-list .left-col .left-footer {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: wrap;
  gap: 0 55px;
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  body.woocommerce-view-order .order-product-list .left-col .left-footer,
  body.woocommerce-checkout .order-product-list .left-col .left-footer {
    gap: 10px 20px;
  }
}
body.woocommerce-view-order .order-product-list .left-col .left-footer .product-price,
body.woocommerce-checkout .order-product-list .left-col .left-footer .product-price {
  font-size: 15px;
  font-weight: 500;
}
body.woocommerce-view-order .order-product-list .left-col .left-footer .buy-btn a,
body.woocommerce-checkout .order-product-list .left-col .left-footer .buy-btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  width: 170px;
  height: 35px;
  border-radius: 35px;
  font-size: 15px;
  color: #3f3836;
  text-decoration: none;
  background-color: #ede5db;
}
@media screen and (max-width: 768px) {
  body.woocommerce-view-order .order-product-list .left-col .left-footer .buy-btn a,
  body.woocommerce-checkout .order-product-list .left-col .left-footer .buy-btn a {
    width: 120px;
    font-size: 13px;
  }
}
body.woocommerce-view-order .order-product-list .right-col,
body.woocommerce-checkout .order-product-list .right-col {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 50px;
}
@media screen and (max-width: 1000px) {
  body.woocommerce-view-order .order-product-list .right-col,
  body.woocommerce-checkout .order-product-list .right-col {
    width: 100%;
    gap: 0 20px;
    margin-top: 20px;
  }
}
body.woocommerce-view-order .order-product-list .right-col .product-amount,
body.woocommerce-checkout .order-product-list .right-col .product-amount {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 20px;
  font-size: 15px;
}
body.woocommerce-view-order .order-product-list .right-col .product-total,
body.woocommerce-checkout .order-product-list .right-col .product-total {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 25px;
  font-size: 15px;
}
body.woocommerce-view-order .order-product-list .right-col .product-total span,
body.woocommerce-checkout .order-product-list .right-col .product-total span {
  font-weight: 500;
}
body.woocommerce-view-order .normal-btn,
body.woocommerce-checkout .normal-btn {
  margin-top: 60px;
}
body.woocommerce-view-order .normal-btn a,
body.woocommerce-checkout .normal-btn a {
  margin: 0 auto;
}

body.woocommerce-cart .update-btn,
body.woocommerce-checkout .update-btn {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #dad7c9;
  text-align: right;
}
body.woocommerce-cart .update-btn button,
body.woocommerce-checkout .update-btn button {
  width: 200px;
  height: 40px;
  border-radius: 40px;
  border: solid 1px #443733;
  font-size: 16px;
  font-weight: 400;
  color: #3f3836;
  text-decoration: none;
}
body.woocommerce-cart .update-btn button:not(:disabled):focus,
body.woocommerce-checkout .update-btn button:not(:disabled):focus {
  cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
  body.woocommerce-cart .update-btn button:not(:disabled):hover,
  body.woocommerce-checkout .update-btn button:not(:disabled):hover {
    cursor: pointer;
  }
}
body.woocommerce-cart .update-btn button:disabled,
body.woocommerce-checkout .update-btn button:disabled {
  background-color: #eee;
  border-color: #eee;
  color: #ccc;
}
@media screen and (max-width: 768px) {
  body.woocommerce-cart .update-btn button,
  body.woocommerce-checkout .update-btn button {
    width: 150px;
    height: 35px;
    border-radius: 35px;
    font-size: 12px;
  }
}
body.woocommerce-cart .cart-collaterals,
body.woocommerce-checkout .cart-collaterals {
  margin-top: 15px;
  border-top: 1px solid #dad7c9;
}
body.woocommerce-cart .cart-total-list.checkout,
body.woocommerce-checkout .cart-total-list.checkout {
  padding-top: 15px;
  border-top: 1px solid #dad7c9;
}
body.woocommerce-cart .cart-total-list .total-item,
body.woocommerce-checkout .cart-total-list .total-item {
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  font-size: 15px;
  color: #3f3836;
}
@media screen and (max-width: 768px) {
  body.woocommerce-cart .cart-total-list .total-item,
  body.woocommerce-checkout .cart-total-list .total-item {
    font-size: 12px;
  }
}
body.woocommerce-cart .cart-total-list .total-item.shipping,
body.woocommerce-checkout .cart-total-list .total-item.shipping {
  display: flex;
  justify-content: space-between;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
}
body.woocommerce-cart .cart-total-list .total-item.shipping .woocommerce-shipping-destination,
body.woocommerce-checkout .cart-total-list .total-item.shipping .woocommerce-shipping-destination {
  display: none;
}
body.woocommerce-cart .cart-total-list .total-item.shipping .item-content,
body.woocommerce-checkout .cart-total-list .total-item.shipping .item-content {
  text-align: right;
}
body.woocommerce-cart .cart-total-list .total-item.shipping .item-content .shipping-calculator-button,
body.woocommerce-checkout .cart-total-list .total-item.shipping .item-content .shipping-calculator-button {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  width: 120px;
  height: 30px;
  margin: 10px 0 0 auto;
  border-radius: 30px;
  border: solid 1px #443733;
  font-size: 14px;
  font-weight: 400;
  color: #3f3836;
  text-decoration: none;
}
body.woocommerce-cart .cart-total-list .total-item.shipping .item-content .shipping-calculator-form,
body.woocommerce-checkout .cart-total-list .total-item.shipping .item-content .shipping-calculator-form {
  display: flex;
  flex-direction: column;
  gap: 10px 0;
  margin-top: 20px;
}
body.woocommerce-cart .cart-total-list .total-item.shipping .item-content button[name=calc_shipping],
body.woocommerce-checkout .cart-total-list .total-item.shipping .item-content button[name=calc_shipping] {
  width: 80px;
  height: 30px;
  margin: 0 0 0 auto;
  border-radius: 30px;
  border: solid 1px #443733;
  font-size: 14px;
  font-weight: 400;
  color: #3f3836;
  text-decoration: none;
  background-color: #fff;
}
body.woocommerce-cart .cart-total-list .total-item.shipping .item-content button[name=calc_shipping]:focus,
body.woocommerce-checkout .cart-total-list .total-item.shipping .item-content button[name=calc_shipping]:focus {
  cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
  body.woocommerce-cart .cart-total-list .total-item.shipping .item-content button[name=calc_shipping]:hover,
  body.woocommerce-checkout .cart-total-list .total-item.shipping .item-content button[name=calc_shipping]:hover {
    cursor: pointer;
  }
}
body.woocommerce-cart .cart-total-list .total-item.total,
body.woocommerce-checkout .cart-total-list .total-item.total {
  margin-top: 15px;
  padding: 20px 0;
  border-top: 1px solid #dad7c9;
  border-bottom: 1px solid #dad7c9;
  font-size: 16px;
  font-weight: 500;
}
body.woocommerce-cart .cart-total-list .total-item.total .item-content .includes_tax,
body.woocommerce-checkout .cart-total-list .total-item.total .item-content .includes_tax {
  display: none;
}
body.woocommerce-cart .cart-total-list .total-item .item-content,
body.woocommerce-checkout .cart-total-list .total-item .item-content {
  padding-right: 25px;
}
@media screen and (max-width: 768px) {
  body.woocommerce-cart .cart-total-list .total-item .item-content,
  body.woocommerce-checkout .cart-total-list .total-item .item-content {
    padding-right: 0;
  }
}
body.woocommerce-cart .goto-checkout a,
body.woocommerce-checkout .goto-checkout a {
  background-color: #db7156;
  color: #fff;
  border-color: #db7156;
}

body.woocommerce-checkout .woocommerce-checkout-payment {
  padding: 20px 0;
}
body.woocommerce-checkout .woocommerce-checkout-payment ul {
  display: flex;
  flex-direction: column;
  gap: 20px 0;
}
body.woocommerce-checkout .woocommerce-checkout-payment ul li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: wrap;
  gap: 5px;
}
body.woocommerce-checkout .woocommerce-checkout-payment ul li div {
  display: block !important;
  width: 100%;
  line-height: 1.3;
}
body.woocommerce-checkout .place-order {
  margin-top: 50px;
  text-align: center;
}
body.woocommerce-checkout .place-order button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  border-radius: 0;
  width: 320px;
  height: 60px;
  border-radius: 60px;
  margin-top: 20px;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  color: #fff;
  background-color: #db7156;
}
body.woocommerce-checkout .place-order button:focus {
  cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
  body.woocommerce-checkout .place-order button:hover {
    cursor: pointer;
  }
}
@media screen and (max-width: 768px) {
  body.woocommerce-checkout .place-order button {
    width: 65.1041666667vw;
    max-width: 100%;
    height: 13.0208333333vw;
    border-radius: 13.0208333333vw;
    font-size: 3.90625vw;
  }
}
body.woocommerce-checkout .col-2 {
  margin-top: 50px;
}
body.woocommerce-checkout .col-2 .shipping_address {
  margin-top: 20px;
}
body.woocommerce-checkout .woocommerce-additional-fields {
  margin-top: 50px;
}
body.woocommerce-checkout .woocommerce-checkout-review-order {
  margin-top: 120px;
}
body.woocommerce-checkout .woocommerce-thankyou-order-received {
  margin-bottom: 50px;
}
body.woocommerce-checkout #order_wc4jp_delivery_date_field,
body.woocommerce-checkout #order_wc4jp_delivery_time_field {
  margin: 15px 0 0;
}
body.woocommerce-checkout #order_wc4jp_delivery_date_field label,
body.woocommerce-checkout #order_wc4jp_delivery_time_field label {
  display: block;
  margin-bottom: 10px;
}
body.woocommerce-checkout #wc4jp_delivery_date,
body.woocommerce-checkout #wc4jp_delivery_time_zone {
  cursor: pointer;
  appearance: none;
  padding: 0 20px;
  width: 300px;
  height: 60px;
  border: 1px solid #c8b9ad;
  border-radius: 4px;
  background-image: url("../images/common/icon-arrow-btm.svg");
  background-repeat: no-repeat;
  background-size: 12px auto; /* 画像のサイズ（幅 高さ）*/
  background-position: right 12px center; /* 画像の位置 */
}
body.woocommerce-checkout .woocommerce-additional-fields__field-wrapper .notes {
  margin-top: 30px;
}

.cart-list {
  border-top: 1px solid #a28467;
}
.cart-list .cart-head {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 120px;
  height: 80px;
}
@media screen and (max-width: 1000px) {
  .cart-list .cart-head {
    gap: 0 50px;
  }
}
@media screen and (max-width: 900px) {
  .cart-list .cart-head {
    gap: 0 20px;
  }
}
@media screen and (max-width: 768px) {
  .cart-list .cart-head {
    height: 50px;
  }
}
.cart-list .cart-head > div {
  font-size: 16px;
  font-weight: 500;
  color: #3f3836;
}
.cart-list .cart-head > div:nth-of-type(1) {
  flex-grow: 1;
}
.cart-list .cart-head > div:nth-of-type(2) {
  flex-shrink: 0;
  width: 100px;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .cart-list .cart-head > div:nth-of-type(2) {
    width: 80px;
  }
}
.cart-list .cart-head > div:nth-of-type(3) {
  flex-shrink: 0;
  width: 100px;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .cart-list .cart-head > div:nth-of-type(3) {
    width: 80px;
  }
}
.cart-list .cart-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 120px;
  padding: 30px 0;
  border-top: 1px solid #dad7c9;
}
@media screen and (max-width: 1000px) {
  .cart-list .cart-item {
    gap: 0 50px;
  }
}
@media screen and (max-width: 900px) {
  .cart-list .cart-item {
    gap: 0 20px;
  }
}
@media screen and (max-width: 768px) {
  .cart-list .cart-item {
    padding: 15px 0;
  }
}
@media screen and (max-width: 600px) {
  .cart-list .cart-item {
    gap: 0 10px;
  }
}
.cart-list .cart-item .product-information {
  flex-grow: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 35px;
}
@media screen and (max-width: 768px) {
  .cart-list .cart-item .product-information {
    gap: 0 15px;
  }
}
@media screen and (max-width: 600px) {
  .cart-list .cart-item .product-information {
    gap: 0 10px;
  }
}
@media screen and (max-width: 600px) {
  .cart-list .cart-item .product-information {
    flex-wrap: wrap;
    gap: 10px 0;
  }
}
.cart-list .cart-item .product-information .product-information-left {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  position: relative;
  background-color: transparent;
}
.cart-list .cart-item .product-information .product-information-left::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.cart-list .cart-item .product-information .product-information-left img,
.cart-list .cart-item .product-information .product-information-left iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .cart-list .cart-item .product-information .product-information-left {
    width: 80px;
    max-width: 100%;
  }
}
.cart-list .cart-item .product-information .product-information-right {
  display: flex;
  flex-direction: column;
  gap: 15px 0;
  font-size: 16px;
  font-weight: 500;
  color: #3f3836;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .cart-list .cart-item .product-information .product-information-right {
    font-size: 14px;
    gap: 10px 0;
  }
}
@media screen and (max-width: 600px) {
  .cart-list .cart-item .product-information .product-information-right {
    width: 100%;
    font-size: 12px;
  }
}
.cart-list .cart-item .product-quantity {
  flex-shrink: 0;
  width: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 20px;
}
@media screen and (max-width: 600px) {
  .cart-list .cart-item .product-quantity {
    width: 80px;
    gap: 0 10px;
  }
}
.cart-list .cart-item .product-quantity input {
  width: 60px;
  height: 40px;
  padding-left: 15px;
  font-size: 16px;
  border-radius: 4px;
  border: solid 1px #c0b9ac;
  background-color: #fff;
}
@media screen and (max-width: 600px) {
  .cart-list .cart-item .product-quantity input {
    width: 40px;
    font-size: 14px;
    padding-left: 10px;
  }
}
.cart-list .cart-item .product-quantity .product-remove a {
  display: block;
  width: 15px;
  height: 18px;
  background: url("../images/common/icon-dust.svg") no-repeat;
  background-size: 100% 100%;
}
.cart-list .cart-item .product-subtotal {
  flex-shrink: 0;
  width: 100px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
}
@media screen and (max-width: 600px) {
  .cart-list .cart-item .product-subtotal {
    width: 80px;
  }
}

.woocommerce-MyAccount-navigation {
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  .woocommerce-MyAccount-navigation {
    margin-bottom: 30px;
  }
}
.woocommerce-MyAccount-navigation ul {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 25px;
}
@media screen and (max-width: 900px) {
  .woocommerce-MyAccount-navigation ul {
    gap: 0 15px;
  }
}
@media screen and (max-width: 768px) {
  .woocommerce-MyAccount-navigation ul {
    flex-wrap: wrap;
    gap: 15px 4%;
  }
}
.woocommerce-MyAccount-navigation ul li {
  width: 260px;
}
@media screen and (max-width: 768px) {
  .woocommerce-MyAccount-navigation ul li {
    width: 48%;
  }
}
.woocommerce-MyAccount-navigation ul li.edit-account a span {
  background: url("../images/common/icon-mypage01.svg") no-repeat left center;
  background-size: 16px 18px;
}
.woocommerce-MyAccount-navigation ul li.orders a span {
  background: url("../images/common/icon-mypage02.svg") no-repeat left center;
  background-size: 16px 18px;
}
.woocommerce-MyAccount-navigation ul li.favorite a span {
  background: url("../images/common/icon-mypage03.svg") no-repeat left center;
  background-size: 16px 18px;
}
.woocommerce-MyAccount-navigation ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  width: 100%;
  height: 60px;
  border-radius: 60px;
  background-color: #cbb397;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s;
}
.woocommerce-MyAccount-navigation ul li a:hover {
  filter: brightness(0.9);
}
@media screen and (max-width: 900px) {
  .woocommerce-MyAccount-navigation ul li a {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .woocommerce-MyAccount-navigation ul li a {
    height: 50px;
    border-radius: 50px;
    font-size: 12px;
  }
}
.woocommerce-MyAccount-navigation ul li a span {
  margin-left: -20px;
  padding: 5px 0 5px 35px;
}
@media screen and (max-width: 768px) {
  .woocommerce-MyAccount-navigation ul li a span {
    margin-left: -10px;
    padding-left: 20px;
  }
}

.mypage-login-box .contact-form {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}
.mypage-login-box .registration-box {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  margin-top: 100px;
}
.mypage-login-box .registration-box .sub-title {
  margin-bottom: 70px;
}
.mypage-login-box .registration-box .woocommerce-privacy-policy-text {
  margin-top: 10px;
  line-height: 1.5;
}

.mypage-lostpassword-box .contents-inner {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}
.mypage-lostpassword-box .contents-inner .contact-form {
  margin-top: 70px;
}

.woocommerce-MyAccount-content .list-table {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .woocommerce-MyAccount-content .list-table {
    margin-top: 40px;
  }
}
@media screen and (max-width: 500px) {
  .woocommerce-MyAccount-content .list-table table tr,
  .woocommerce-MyAccount-content .list-table table th,
  .woocommerce-MyAccount-content .list-table table td {
    display: block;
    width: 100%;
  }
  .woocommerce-MyAccount-content .list-table table th {
    padding-left: 0;
    padding-right: 0;
    border-bottom: none !important;
  }
  .woocommerce-MyAccount-content .list-table table td {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
    border-top: none !important;
  }
}
.woocommerce-MyAccount-content .list-table table th {
  width: 400px;
}
@media screen and (max-width: 1000px) {
  .woocommerce-MyAccount-content .list-table table th {
    width: 200px;
  }
}
@media screen and (max-width: 768px) {
  .woocommerce-MyAccount-content .list-table table th {
    width: 150px;
  }
}
@media screen and (max-width: 500px) {
  .woocommerce-MyAccount-content .list-table table th {
    width: 100%;
  }
}
.woocommerce-MyAccount-content .list-table table td input {
  width: 70%;
}
@media screen and (max-width: 1000px) {
  .woocommerce-MyAccount-content .list-table table td input {
    width: 100%;
  }
}
.woocommerce-MyAccount-content .list-table table tr:nth-of-type(1) th {
  border-top: 1px solid #a28467;
}
.woocommerce-MyAccount-content .list-table table tr:nth-of-type(1) td {
  border-top: 1px solid #dad7c9;
}
.woocommerce-MyAccount-content .title02 {
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .woocommerce-MyAccount-content .title02 {
    margin-top: 50px;
  }
}

.woocommerce-notices-wrapper {
  line-height: 1.5;
  margin-bottom: 30px;
}

.woocommerce-NoticeGroup {
  margin-bottom: 30px;
}

/*--------------------------
SUB
----------------------------*/
body.single-product #contents .contents-box {
  background-color: transparent;
}
@media screen and (max-width: 1440px) {
  body.single-product #contents .contents-box {
    padding-left: 0;
    padding-right: 0;
  }
}
body.single-product #contents .contents-box.product-c-box01 {
  padding-bottom: 0;
  margin-bottom: 100px;
}
body.single-product #contents .contents-box.product-c-box02 {
  padding-top: 0;
}

.product-c-box01 .contents-inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1040px) {
  .product-c-box01 .contents-inner {
    padding-left: 0;
    padding-right: 0;
  }
}
.product-c-box01 .contents-inner .product-box {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 10%;
}
@media screen and (max-width: 1100px) {
  .product-c-box01 .contents-inner .product-box {
    gap: 0 5%;
  }
}
@media screen and (max-width: 900px) {
  .product-c-box01 .contents-inner .product-box {
    flex-wrap: wrap;
    gap: 30px 0;
  }
}
.product-c-box01 .contents-inner .product-col-left {
  flex-shrink: 0;
  width: 50%;
  max-width: 600px;
}
@media screen and (max-width: 900px) {
  .product-c-box01 .contents-inner .product-col-left {
    width: 100%;
    margin: 0 auto;
  }
}
.product-c-box01 .contents-inner .product-col-left .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
}
.product-c-box01 .contents-inner .product-col-left .swiper-slide img {
  max-width: 100%;
  max-height: 100%;
}
.product-c-box01 .contents-inner .product-col-left .product-imgs-thumb {
  width: 70%;
  margin: 40px auto 0;
}
.product-c-box01 .contents-inner .product-col-left .product-imgs-thumb .swiper-slide {
  width: 60px;
}
@media screen and (max-width: 900px) {
  .product-c-box01 .contents-inner .product-col-right {
    width: 100%;
    max-width: 100%;
  }
}
.product-c-box01 .contents-inner .product-col-right .product-badge {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 5px;
}
.product-c-box01 .contents-inner .product-col-right .product-badge span {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  width: fit-content;
  height: 28px;
  padding: 0 15px;
  color: #fff;
  font-size: 14px;
}
.product-c-box01 .contents-inner .product-col-right .product-badge span.popular {
  background-color: #a03d86;
}
.product-c-box01 .contents-inner .product-col-right .product-name {
  margin-top: 15px;
  font-size: 26px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .product-c-box01 .contents-inner .product-col-right .product-name {
    font-size: 20px;
  }
}
.product-c-box01 .contents-inner .product-col-right .product-tag {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 20px;
}
.product-c-box01 .contents-inner .product-col-right .product-tag a,
.product-c-box01 .contents-inner .product-col-right .product-tag span {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  width: fit-content;
  height: 22px;
  padding: 0 10px;
  border-radius: 22px;
  font-size: 12px;
  text-decoration: none;
  color: #221815;
  border: solid 1px #cbbcae;
  background-color: #f5f4ef;
}
@media screen and (max-width: 768px) {
  .product-c-box01 .contents-inner .product-col-right .product-tag a,
  .product-c-box01 .contents-inner .product-col-right .product-tag span {
    font-size: 10px;
  }
}
.product-c-box01 .contents-inner .product-col-right .product-description {
  margin-top: 20px;
}
.product-c-box01 .contents-inner .product-col-right .product-description p {
  font-size: 15px;
  line-height: 1.5;
  color: #403735;
}
.product-c-box01 .contents-inner .product-col-right .product-description p + p {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .product-c-box01 .contents-inner .product-col-right .product-description p {
    font-size: 14px;
  }
}
.product-c-box01 .contents-inner .product-col-right .product-price {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .product-c-box01 .contents-inner .product-col-right .product-price {
    margin-top: 20px;
  }
}
.product-c-box01 .contents-inner .product-col-right .product-price .woocommerce-Price-amount {
  font-size: 22px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .product-c-box01 .contents-inner .product-col-right .product-price .woocommerce-Price-amount {
    font-size: 18px;
  }
}
.product-c-box01 .contents-inner .product-col-right .product-price .tax {
  font-size: 12px;
  font-weight: 400;
}
.product-c-box01 .contents-inner .product-col-right .product-cart-fav form {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: wrap;
  gap: 25px 30px;
  margin-top: 25px;
}
@media screen and (max-width: 768px) {
  .product-c-box01 .contents-inner .product-col-right .product-cart-fav form {
    gap: 20px;
    margin-top: 20px;
  }
}
.product-c-box01 .contents-inner .product-col-right .product-cart-fav .quantity {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 8px;
}
.product-c-box01 .contents-inner .product-col-right .product-cart-fav .quantity span {
  flex-shrink: 0;
  font-size: 15px;
  color: #000;
}
@media screen and (max-width: 768px) {
  .product-c-box01 .contents-inner .product-col-right .product-cart-fav .quantity span {
    font-size: 14px;
  }
}
.product-c-box01 .contents-inner .product-col-right .product-cart-fav .quantity input {
  width: 90px;
  height: 48px;
  padding-left: 35px;
  border-radius: 4px;
  border: solid 1px #c0b9ac;
  background-color: #fff;
  font-size: 16px;
  color: #000;
}
@media screen and (max-width: 500px) {
  .product-c-box01 .contents-inner .product-col-right .product-cart-fav .quantity input {
    width: 60px;
    font-size: 14px;
    padding-left: 20px;
  }
}
@media screen and (max-width: 500px) {
  .product-c-box01 .contents-inner .product-col-right .product-cart-fav .favorite-btn {
    flex-grow: 1;
  }
}
.product-c-box01 .contents-inner .product-col-right .product-cart-fav .favorite-btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  width: 200px;
  height: 50px;
  border-radius: 4px;
  border: solid 1px #c0b9ac;
  font-size: 14px;
  color: #000;
  text-decoration: none;
}
@media screen and (max-width: 500px) {
  .product-c-box01 .contents-inner .product-col-right .product-cart-fav .favorite-btn a {
    width: 100%;
    font-size: 12px;
  }
}
.product-c-box01 .contents-inner .product-col-right .product-cart-fav .favorite-btn a.active span {
  background: url("../images/common/icon-fav-fill.svg") no-repeat left center;
}
.product-c-box01 .contents-inner .product-col-right .product-cart-fav .favorite-btn a span {
  padding: 5px 0 5px 25px;
  background: url("../images/common/icon-fav.svg") no-repeat left center;
  background-size: 18px 16px !important;
}
.product-c-box01 .contents-inner .product-col-right .product-cart-fav .add-cart {
  width: 100%;
}
.product-c-box01 .contents-inner .product-col-right .product-cart-fav .add-cart button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  border-radius: 0;
  width: 100%;
  height: 60px;
  border-radius: 4px;
  background-color: #c39e77;
}
.product-c-box01 .contents-inner .product-col-right .product-cart-fav .add-cart button:focus {
  cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
  .product-c-box01 .contents-inner .product-col-right .product-cart-fav .add-cart button:hover {
    cursor: pointer;
  }
}
.product-c-box01 .contents-inner .product-col-right .product-cart-fav .add-cart button span {
  padding-left: 40px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  background: url("../images/common/icon-cart-white.svg") no-repeat left center;
  background-size: 22px 19px;
}
.product-c-box01 .contents-inner .product-col-right .product-information {
  margin-top: 40px;
  border-top: 1px solid #dcd6d3;
}
@media screen and (max-width: 768px) {
  .product-c-box01 .contents-inner .product-col-right .product-information {
    margin-top: 20px;
  }
}
.product-c-box01 .contents-inner .product-col-right .product-information ul li {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  display: -webkit-flex;
  flex-wrap: nowrap;
  padding: 15px 0;
  border-bottom: 1px solid #dcd6d3;
  line-height: 1.3;
}
.product-c-box01 .contents-inner .product-col-right .product-information ul li .title {
  flex-shrink: 0;
  width: 150px;
  font-size: 15px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .product-c-box01 .contents-inner .product-col-right .product-information ul li .title {
    width: 120px;
    font-size: 14px;
  }
}
.product-c-box01 .contents-inner .product-col-right .product-information ul li .content {
  flex-grow: 1;
  font-size: 15px;
  color: #403735;
}
@media screen and (max-width: 768px) {
  .product-c-box01 .contents-inner .product-col-right .product-information ul li .content {
    font-size: 14px;
  }
}

.wp-block[data-type="core/widget-area"] {
  max-width: 1200px;
}

div[data-widget-area-id=sidebar] {
  max-width: 330px !important;
  margin: 0 auto !important;
}

html :where(.wp-block) {
  max-width: 880px;
}

.blocks-widgets-container .editor-styles-wrapper {
  max-width: 100%;
}

.block-editor-block-list__block:not(.is-selected) > .block-editor-block-list__block > .block-list-appender:only-child:after {
  border: 1px dashed !important;
}

.editor-styles-wrapper a {
  color: #000;
}
@media screen and (min-width: 769px) {
  .editor-styles-wrapper a:hover {
    color: #000;
  }
}
.editor-styles-wrapper .has-customcolor-01-color {
  color: #6599a3;
}
.editor-styles-wrapper .has-customcolor-01-backgroud-color {
  color: #6599a3;
}
.editor-styles-wrapper .has-customcolor-01-border-color {
  color: #6599a3;
}
.editor-styles-wrapper .is-style-clear {
  display: flow-root;
}
.editor-styles-wrapper .has-text-align-right {
  text-align: right;
}
.editor-styles-wrapper .has-text-align-center {
  text-align: center;
}
.editor-styles-wrapper .alignnone {
  margin: 15px 0;
}
.editor-styles-wrapper .aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.editor-styles-wrapper .clearfix {
  clear: both;
}
.editor-styles-wrapper .alignright {
  float: right;
}
.editor-styles-wrapper .alignleft {
  float: left;
}
.editor-styles-wrapper iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 628/350;
}
.editor-styles-wrapper .wp-block-columns {
  margin-top: 60px;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .editor-styles-wrapper .wp-block-columns {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
.editor-styles-wrapper .wp-block-group {
  margin-top: 70px;
}
@media screen and (max-width: 768px) {
  .editor-styles-wrapper .wp-block-group {
    margin-top: 30px;
  }
}
.editor-styles-wrapper .wp-block-group.is-style-border {
  margin-top: 40px;
  margin-bottom: 40px;
  padding: 30px;
  border: 1px solid #cecfd1;
}
@media screen and (max-width: 768px) {
  .editor-styles-wrapper .wp-block-group.is-style-border {
    margin: 30px 0;
    padding: 30px 25px;
  }
}
.editor-styles-wrapper .wp-block-group.is-style-border ul {
  margin: 10px 0 0;
}
.editor-styles-wrapper .wp-block-group.is-style-border * + p {
  margin-top: 30px;
}
.editor-styles-wrapper .wp-block-image {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .editor-styles-wrapper .wp-block-image {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
.editor-styles-wrapper .wp-block-image img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .editor-styles-wrapper .wp-block-image img {
    width: 100%;
  }
}
.editor-styles-wrapper h2 {
  position: relative;
  margin-top: 80px;
  margin-bottom: 40px;
  padding: 0 0 25px 25px;
  font-size: 24px;
  line-height: 1.4;
  font-weight: normal;
  border-bottom: 1px solid #b8aba7;
}
@media screen and (max-width: 768px) {
  .editor-styles-wrapper h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 20px;
    padding: 0 0 15px 15px;
  }
}
.editor-styles-wrapper h2::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 0;
  width: 5px;
  height: calc(100% - 10px);
  background-color: #bc9c7a;
}
@media screen and (max-width: 768px) {
  .editor-styles-wrapper h2::before {
    top: -3px;
    width: 3px;
  }
}
.editor-styles-wrapper h3 {
  margin-top: 80px;
  margin-bottom: 40px;
  padding: 20px;
  font-size: 22px;
  line-height: 1.4;
  font-weight: normal;
  background-color: #ede6dd;
}
@media screen and (max-width: 768px) {
  .editor-styles-wrapper h3 {
    margin-top: 40px;
    margin-bottom: 20px;
    padding: 15px;
    font-size: 18px;
  }
}
.editor-styles-wrapper h4 {
  margin-top: 80px;
  margin-bottom: 40px;
  padding: 20px 0;
  border-top: 1px solid #b8aba7;
  border-bottom: 1px solid #b8aba7;
  font-size: 20px;
  line-height: 1.4;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .editor-styles-wrapper h4 {
    margin-top: 40px;
    margin-bottom: 20px;
    padding: 15px 0;
    font-size: 16px;
  }
}
.editor-styles-wrapper h5 {
  position: relative;
  margin-top: 80px;
  margin-bottom: 40px;
  padding-left: 60px;
  line-height: 1.4;
  font-size: 18px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .editor-styles-wrapper h5 {
    margin-top: 40px;
    margin-bottom: 20px;
    padding-left: 40px;
    font-size: 14px;
  }
}
.editor-styles-wrapper h5::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: #bc9c7a;
}
@media screen and (max-width: 768px) {
  .editor-styles-wrapper h5::before {
    top: 8px;
    width: 20px;
  }
}
.editor-styles-wrapper h6 {
  padding-bottom: 15px;
  line-height: 1.4;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid #b8aba7;
}
@media screen and (max-width: 768px) {
  .editor-styles-wrapper h6 {
    font-size: 14px;
  }
}
.editor-styles-wrapper p {
  margin-top: 30px;
  line-height: 2;
}
.editor-styles-wrapper p::before {
  content: "";
  display: block;
  height: 0;
  width: 0;
  margin-top: calc((1 - 2) * 0.5em);
}
@media screen and (max-width: 768px) {
  .editor-styles-wrapper p {
    margin-top: 20px;
    line-height: 2;
  }
  .editor-styles-wrapper p::before {
    content: "";
    display: block;
    height: 0;
    width: 0;
    margin-top: calc((1 - 2) * 0.5em);
  }
}
.editor-styles-wrapper p + p {
  margin-top: 20px;
}
.editor-styles-wrapper strong {
  font-weight: bold;
}
.editor-styles-wrapper ul,
.editor-styles-wrapper ol {
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 768px) {
  .editor-styles-wrapper ul,
  .editor-styles-wrapper ol {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}
.editor-styles-wrapper ul li,
.editor-styles-wrapper ol li {
  font-size: 15px;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .editor-styles-wrapper ul li,
  .editor-styles-wrapper ol li {
    font-size: 14px;
  }
}
.editor-styles-wrapper ul li:not(:nth-of-type(1)),
.editor-styles-wrapper ol li:not(:nth-of-type(1)) {
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .editor-styles-wrapper ul li:not(:nth-of-type(1)),
  .editor-styles-wrapper ol li:not(:nth-of-type(1)) {
    margin-top: 10px;
  }
}
.editor-styles-wrapper .is-style-bg-gray {
  margin-top: 60px;
  margin-bottom: 60px;
  padding: 40px 40px 35px;
  background-color: #ede6dd;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .editor-styles-wrapper .is-style-bg-gray {
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 25px;
    border-radius: 5px;
  }
}
.editor-styles-wrapper .is-style-bg-gray p:nth-of-type(1) {
  margin-top: 0;
}
.editor-styles-wrapper .is-style-arrow-btn a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  display: -webkit-flex;
  flex-wrap: nowrap;
  gap: 0 20px;
  font-size: 15px;
  color: #221815;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .editor-styles-wrapper .is-style-arrow-btn a {
    gap: 0 10px;
    font-size: 13px;
  }
}
.editor-styles-wrapper .is-style-arrow-btn a::before {
  content: "";
  width: 60px;
  height: 60px;
  border-radius: 60px;
  background: url("../images/common/icon-arrow-right-white.svg") no-repeat center center;
  background-size: 17px 14px;
  background-color: #bc9c7a;
}
@media screen and (max-width: 768px) {
  .editor-styles-wrapper .is-style-arrow-btn a::before {
    width: 40px;
    height: 40px;
    border-radius: 40px;
    background-size: 10px auto;
  }
}
.editor-styles-wrapper .is-style-dot-list li {
  position: relative;
  padding-left: 20px;
  color: #403735;
}
.editor-styles-wrapper .is-style-dot-list li:not(:nth-of-type(1)) {
  margin-top: 10px;
}
.editor-styles-wrapper .is-style-dot-list li:before {
  position: absolute;
  content: "";
  background: #bc9c7a;
  width: 10px;
  height: 10px;
  left: 0;
  top: 5px;
  border-radius: 10px;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .editor-styles-wrapper .is-style-dot-list li:before {
    left: 10px;
    width: 5px;
    height: 5px;
  }
}
.editor-styles-wrapper .is-style-postnumber {
  margin: 60px 0;
  counter-reset: count 0;
}
@media screen and (max-width: 768px) {
  .editor-styles-wrapper .is-style-postnumber {
    margin: 30px 0px;
  }
}
.editor-styles-wrapper .is-style-postnumber li {
  border-bottom: 1px #a2a3a3 solid;
  padding: 16px 10px 16px 45px;
  line-height: 2.25;
  position: relative;
}
@media screen and (max-width: 768px) {
  .editor-styles-wrapper .is-style-postnumber li {
    padding: 20px 10px 20px 35px;
  }
}
.editor-styles-wrapper .is-style-postnumber li::before {
  content: counter(count);
  counter-increment: count 1;
  position: absolute;
  left: 15px;
  top: 27px;
  width: 22px;
  color: #fff;
  height: 22px;
  background: #182636;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 500;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .editor-styles-wrapper .is-style-postnumber li::before {
    top: 28px;
    left: 8px;
    width: 15px;
    height: 15px;
    border-radius: 15px;
    font-size: 10px;
  }
}