@charset "UTF-8";
/* font $size
====================================== */
/* font family
====================================== */
/* colors 色管理
====================================== */
/* border ボーダー管理
====================================== */
/* breakpoint ブレイクポイント
====================================== */
html,
body {
  height: 100%;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  overflow-wrap: anywhere;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Sawarabi Gothic", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.8;
  color: #333;
  background: #f5f3ed;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Sawarabi Gothic", "Yu Gothic", "Meiryo", sans-serif;
  color: #333;
  font-weight: 500;
}

ol,
li {
  list-style: none;
}

a {
  color: #333;
  text-decoration: none;
}
a:hover {
  opacity: 0.8;
}

@media screen and (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
@media screen and (max-width: 1280px) {
  img {
    image-rendering: -webkit-optimize-contrast;
  }
}
/*----------------------------------------------------
    LAYOUT
----------------------------------------------------*/
main {
  padding-top: 127px;
}
@media screen and (max-width: 1280px) {
  main {
    padding-top: 65px;
  }
}

.column {
  padding: 120px 0;
}
@media screen and (max-width: 820px) {
  .column {
    padding: 80px 0;
  }
}
@media screen and (max-width: 767px) {
  .column {
    padding: 60px 0;
  }
}

.column-page {
  padding: 0 0 120px 0;
}
@media screen and (max-width: 820px) {
  .column-page {
    padding: 0 0 80px 0;
  }
}
@media screen and (max-width: 767px) {
  .column-page {
    padding: 0 0 60px 0;
  }
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.mt10 {
  margin-top: 10px;
}

.mt30 {
  margin-top: 30px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.pb15 {
  padding-bottom: 15px;
}

.pb30 {
  padding-bottom: 30px;
}

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

.wide-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 15px;
}
@media screen and (max-width: 1280px) {
  .wide-inner {
    width: 100%;
  }
}

.inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
@media screen and (max-width: 1280px) {
  .inner {
    width: 100%;
  }
}

.medium-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 15px;
}
@media screen and (max-width: 1280px) {
  .medium-inner {
    width: 100%;
  }
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
}

.text-line {
  text-decoration: underline;
}

.notion, .notion2 {
  color: #df5d5d;
  background: #f4eeb8;
  display: inline-block;
}
.notion .text-line, .notion2 .text-line {
  color: #df5d5d;
}

.notion2 {
  padding-left: 1em;
  text-indent: -1em;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  .notion2 {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.marker-yellow {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(40%, transparent), color-stop(40%, #f4eeb8));
  background: linear-gradient(transparent 40%, #f4eeb8 40%);
  font-weight: 600;
}

/*----------------------------------------------------
    BUTTON
----------------------------------------------------*/
.btn {
  background: #3b473f;
  text-align: center;
  color: #fff;
  padding: 20px 0;
  display: block;
  margin: 0 auto;
  border-radius: 5px;
  max-width: 220px;
}

.com-btn-01 a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 60px;
  letter-spacing: 0.1em;
  line-height: 2.2;
}
@media screen and (max-width: 820px) {
  .com-btn-01 a {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .com-btn-01 a {
    margin: 0 20px;
  }
}
.com-btn-01 a:hover {
  color: #355641;
}
.com-btn-01 a:hover .btn-about {
  color: #355641;
}
.com-btn-01 a:hover .circle-btn {
  border: 2px solid #355641;
}
.com-btn-01 a:hover .circle-btn:after {
  border-top: 2px solid #355641;
  border-right: 2px solid #355641;
}
.com-btn-01 .circle-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #444;
  background: transparent;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.com-btn-01 .circle-btn:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 47%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.com-btn-01 .btn-about {
  color: #888585;
  font-size: 13px;
  font-size: 1.3rem;
  letter-spacing: 0.2em;
}
.com-btn-01 .btn-about .en {
  font-size: 13px;
  font-size: 1.3rem;
}
.com-btn-01 .en {
  font-weight: 600;
  font-size: 20px;
  font-size: 2rem;
}

.com-btn-02 a {
  font-family: "Lato", sans-serif;
  background: #333;
  color: #fff;
  max-width: 350px;
  width: 100%;
  padding: 25px 0;
  text-align: center;
  position: relative;
  display: block;
  margin: 0 auto;
  font-weight: 600;
  letter-spacing: 0.3em;
}
@media screen and (max-width: 767px) {
  .com-btn-02 a {
    padding: 15px 0;
    max-width: 280px;
  }
}
.com-btn-02 a .circle-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #fff;
  position: absolute;
  right: 35px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .com-btn-02 a .circle-btn {
    width: 30px;
    height: 30px;
  }
}
.com-btn-02 a .circle-btn:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 33%;
  width: 8px;
  height: 8px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
@media screen and (max-width: 767px) {
  .com-btn-02 a .circle-btn:after {
    width: 5px;
    height: 5px;
  }
}
.com-btn-02 a:hover {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: #355641;
}

.com-btn-03 {
  position: absolute;
  bottom: 0;
}
.com-btn-03 a {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  border: 2px solid #000;
  width: 120px;
  display: block;
  padding: 5px 0;
  border-radius: 60px;
  color: #000;
  text-align: center;
  font-size: 13px;
  font-size: 1.3rem;
}
@media screen and (max-width: 767px) {
  .com-btn-03 a {
    font-size: 12px;
    font-size: 1.2rem;
    width: 100px;
  }
}
.com-btn-03 a:hover {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: #355641;
  border: 2px solid #2f4537;
  color: #fff;
}

.com-btn-04 a {
  font-family: "Lato", sans-serif;
  font-weight: 900;
  border: 2px solid #000;
  width: 160px;
  display: block;
  padding: 8px 0;
  border-radius: 60px;
  color: #fff;
  background: #000;
  text-align: center;
  font-size: 13px;
  font-size: 1.3rem;
}
@media screen and (max-width: 767px) {
  .com-btn-04 a {
    width: 140px;
    font-size: 12px;
    font-size: 1.2rem;
    padding: 5px 0;
    width: 120px;
  }
}
.com-btn-04 a:hover {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: #355641;
  border: 2px solid #253b2b;
  color: #fff;
}

.com-btn-05, .com-btn-08 {
  color: #fff;
  background: #7c8174;
  border: 1px solid #6e7662;
  width: 100%;
  padding: 15px 0;
  text-align: center;
  letter-spacing: 0.2em;
  font-weight: 500;
  margin-top: 15px;
  cursor: pointer;
}
.com-btn-05:hover, .com-btn-08:hover {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: #333;
  color: #fff;
  border: 1px solid #333;
}

/* カートボタン */
.woocommerce div.product form.cart .button.com-btn-05, .woocommerce div.product form.cart .button.com-btn-08 {
  color: #fff !important;
  background: #7c8174 !important;
  border: 1px solid #6e7662 !important;
  width: 100%;
  padding: 18px 0;
  text-align: center;
  letter-spacing: 0.2em;
  font-weight: 500;
  margin-top: 15px;
}
.woocommerce div.product form.cart .button.com-btn-05:hover, .woocommerce div.product form.cart .button.com-btn-08:hover {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: #333 !important;
  color: #fff;
  border: 1px solid #333 !important;
}

/* 関連商品のカートボタン 商品一覧 */
.related .product .com-btn-05, .related .product .com-btn-08,
.archive .products .com-btn-05,
.archive .products .com-btn-08 {
  border: 1px solid #6e7662;
  letter-spacing: 0.1em;
  font-size: 14px;
  font-size: 1.4rem;
  color: #6e7662;
  background: #f5f3ed;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .related .product .com-btn-05, .related .product .com-btn-08,
  .archive .products .com-btn-05,
  .archive .products .com-btn-08 {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
.related .product .com-btn-05:hover, .related .product .com-btn-08:hover,
.archive .products .com-btn-05:hover,
.archive .products .com-btn-08:hover {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #fff;
  background: #6e7662;
}

.com-btn-06 {
  border: 1px solid #6e7662;
  margin-top: 15px;
  text-align: center;
  color: #6e7662;
  min-height: 3em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .com-btn-06 {
    margin-top: 10px;
  }
}
.com-btn-06:hover {
  color: #fff;
  background: #333;
  border: 1px solid #333;
}

.com-btn-07 a {
  color: #fff;
  border: 1px solid #6e7662;
  background: #6e7662;
  text-align: center;
  padding: 8px 0;
  border-radius: 60px;
  width: 180px;
  display: block;
}
@media screen and (max-width: 767px) {
  .com-btn-07 a {
    width: 130px;
    font-size: 13px;
    font-size: 1.3rem;
    padding: 3px 0;
  }
}
.com-btn-07:hover a {
  color: #fff;
  background: #333;
  border: 1px solid #333;
}

.com-btn-08 {
  background: #333;
  border: 1px solid #333;
}
.com-btn-08:hover {
  background: #6e7662;
  border: 1px solid #6e7662;
}

/*----------------------------------------------------
    OTHER
----------------------------------------------------*/
.breadcrumbs {
  font-size: 1.2rem;
}

.en {
  font-family: "Lato", sans-serif;
}

.cura {
  font-family: "League Spartan", sans-serif !important;
  letter-spacing: 0.8rem !important;
  font-weight: 400 !important;
}

/*----------------------------------------------------
    HEADER
----------------------------------------------------*/
.top-header {
  text-align: center;
  padding: 5px 0;
  font-weight: 500;
  background: #333;
}
@media screen and (max-width: 1280px) {
  .top-header {
    line-height: 1.2;
    text-align: left;
    height: 65px;
    padding: 0 80px 0 15px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .top-header {
    padding: 15px 80px 15px 15px;
  }
}
.top-header a {
  color: #fff;
  letter-spacing: 0.1em;
  font-size: 13px;
  font-size: 1.3rem;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .top-header a {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.head_belt {
  font-weight: 600;
  border-bottom: 1px solid #d0ccc1;
  background: #f5f3ed;
  position: fixed;
  z-index: 9999;
  width: 100%;
}
.head_belt.fixed {
  width: 100%;
  position: fixed;
  background: #fff;
  z-index: 1000;
  -webkit-animation: DownAnime 0.5s forwards;
          animation: DownAnime 0.5s forwards;
}
.head_belt .wide-inner {
  height: 90px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media screen and (max-width: 1280px) {
  .head_belt .wide-inner {
    height: 65px;
  }
}

@-webkit-keyframes DownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes DownAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.logo_area {
  padding: 10px 0;
  font-size: inherit;
  position: relative;
  z-index: 300;
}
.logo_area img {
  width: 150px;
}
@media screen and (max-width: 767px) {
  .logo_area img {
    width: 126px;
  }
}
.logo_area a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.sub_tit_brand {
  font-weight: 500;
  margin-bottom: 5px;
  font-size: 12px;
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  .sub_tit_brand {
    font-size: 10px;
    font-size: 1rem;
  }
}

.head_r {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
@media screen and (max-width: 1385px) {
  .head_r {
    gap: 10px;
  }
}
@media screen and (max-width: 1280px) {
  .head_r {
    margin: 0 80px 0 0;
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .head_r {
    margin: 0 65px 0 0;
  }
}

.shop-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  z-index: 300;
}
.shop-icon img {
  width: 28px;
}
@media screen and (max-width: 767px) {
  .shop-icon img {
    width: 24px;
  }
}
@media screen and (max-width: 767px) {
  .shop-icon a {
    font-size: 12px;
    font-size: 1.2rem;
    font-weight: 400;
  }
}
.shop-icon .my-page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.shop-icon .cart_icon {
  width: 27px;
}
@media screen and (max-width: 767px) {
  .shop-icon .cart_icon {
    width: 20px;
  }
}

.login-text {
  display: block;
  font-weight: 500;
  font-size: 11px;
  font-size: 1.1rem;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .login-text {
    font-size: 10px;
    font-size: 1rem;
  }
}

@media screen and (max-width: 1280px) {
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    background: #f7f6f3;
    opacity: 0;
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
    -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
    transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
    transition: opacity 0.6s ease, transform 0.6s ease;
    transition: opacity 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
    padding: 100px 40px 120px 40px;
    pointer-events: none;
    height: 100vh;
    overflow-y: auto;
  }
}
.nav.is-active {
  opacity: 1;
  z-index: 200;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  height: 100vh;
  pointer-events: auto;
}

.nav_item {
  color: #6e7662;
  letter-spacing: 0.15em;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0;
  font-size: 11px;
  font-size: 1.1rem;
}
@media screen and (max-width: 1280px) {
  .nav_item {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 100%;
    display: block;
    font-weight: 500;
    padding: 12px 10px;
    border-bottom: 1px solid #8c9382;
  }
}
.nav_item a {
  color: #6e7662;
  letter-spacing: 0.15em;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0;
  font-size: 11px;
  font-size: 1.1rem;
}
@media screen and (max-width: 1280px) {
  .nav_item a {
    display: block;
  }
}
.nav_item .en {
  display: block;
  font-size: 15px;
  font-size: 1.5rem;
  color: #6e7662;
  letter-spacing: 0.1em;
  font-weight: 600;
}
@media screen and (max-width: 1385px) {
  .nav_item .en {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 1280px) {
  .nav_item .en {
    font-size: 15px;
    font-size: 1.5rem;
  }
}
.nav_item .sub_nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #f5f3ed;
  width: 180px;
  text-align: center;
  z-index: 1000;
  border: 1px solid #d0ccc1;
}
@media screen and (max-width: 1280px) {
  .nav_item .sub_nav {
    width: 100%;
    position: relative;
    background: none;
    border: none;
    text-align: left;
    margin-top: 10px;
  }
}
.nav_item .sub_nav li {
  border-bottom: 1px solid #d0ccc1;
}
.nav_item .sub_nav li:last-child {
  border-bottom: none;
}
.nav_item .sub_nav li a {
  display: block;
  padding: 10px 5px;
  font-size: 13px;
  font-size: 1.3rem;
}
@media screen and (max-width: 1280px) {
  .nav_item .sub_nav li a {
    padding: 10px 5px 10px 0;
  }
}
.nav_item.has-sub {
  position: relative;
}
@media screen and (max-width: 1280px) {
  .nav_item.has-sub:after {
    content: "";
    position: absolute;
    top: 35px;
    right: 0;
    width: 8px;
    height: 8px;
    border-top: 2px solid #6e7662;
    border-right: 2px solid #6e7662;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
            transform: translate(-50%, -50%) rotate(45deg);
  }
}
.nav_item.has-sub:after:hover .sub_nav {
  display: block;
}

.nav_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
}
@media screen and (max-width: 1280px) {
  .nav_list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: inherit;
        -ms-flex-align: inherit;
            align-items: inherit;
    gap: 0;
  }
}

body.nav-open .logo_area,
body.nav-open .shop-icon {
  display: none;
}

.sub-bottom-nav {
  margin: 30px 0;
  font-weight: 500;
  font-size: 11px;
  font-size: 1.1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.sub-bottom-nav a {
  color: #6e7662;
}

/* hamburger */
@media screen and (max-width: 1280px) {
  .hamburger {
    position: absolute;
    right: 0;
    top: 0;
    width: 65px;
    height: 65px;
    cursor: pointer;
    z-index: 300;
    background: #6e7662;
  }
  .hamburger .hamburger_border {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 30px;
    height: 1px;
    background-color: #fff;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
  }
  .hamburger .hamburger_border_top {
    top: 21px;
  }
  .hamburger .hamburger_border_center {
    top: 32px;
  }
  .hamburger .hamburger_border_bottom {
    top: 43px;
  }
  .hamburger .hamburger_text {
    display: inline;
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    text-align: center;
    margin: auto;
    font-size: 1.3rem;
    color: #fff;
  }
  .black_bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    z-index: 150;
    background-color: #333;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    cursor: pointer;
  }
  /* 表示された時用のCSS */
  .nav-open .nav {
    right: 0;
  }
  .nav-open .black_bg {
    opacity: 0.8;
    visibility: visible;
  }
  .nav-open .hamburger_border_top {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    top: 30px;
  }
  .nav-open .hamburger_border_center {
    width: 0;
    left: 50%;
  }
  .nav-open .hamburger_border_bottom {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    top: 30px;
  }
}
@media screen and (min-width: 1281px) {
  .hamburger_text {
    display: none;
  }
}
/* 検索ボタン */
.searchform > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
.searchform input[type=text] {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 185px;
  height: 35px;
  font-weight: 500;
  color: #7c8174;
  padding-left: 8px;
}
.searchform input[type=submit] {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

@media screen and (max-width: 1280px) {
  .search-btn {
    margin-bottom: 30px;
  }
}
.search-btn input {
  border-radius: 5px;
  border: 1px solid #c9c8c2;
}
.search-btn #searchsubmit {
  cursor: pointer;
  font-weight: 500;
  background: none;
  color: #7c8174;
  font-size: 14px;
  font-size: 1.4rem;
  font-family: "Sawarabi Gothic", "Yu Gothic", "Meiryo", sans-serif;
  letter-spacing: 0.2em;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  height: 35px;
}
@media screen and (max-width: 767px) {
  .search-btn #searchsubmit {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
.search-btn #searchsubmit:hover {
  background: #333;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 1px solid #c9c8c2;
}

/*----------------------------------------------------
    アニメーション
----------------------------------------------------*/
.float-fade {
  -webkit-animation: float 3s ease-in-out 1 forwards;
          animation: float 3s ease-in-out 1 forwards;
  will-change: transform;
}

@-webkit-keyframes float {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
}

@keyframes float {
  0%, 100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
}
/* 最初は透明で少し下に配置 */
.fade-item {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out, -webkit-transform 0.8s ease-out;
}

/* 画面に入ったら表示 */
.fade-item.is-active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* 時間差をつけるための汎用クラス */
.delay-1 {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}

.delay-2 {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}

.delay-3 {
  -webkit-transition-delay: 0.6s;
          transition-delay: 0.6s;
}

.delay-4 {
  -webkit-transition-delay: 0.8s;
          transition-delay: 0.8s;
}

.delay-5 {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}

/* 窓枠：指定の600px */
.img-wrap {
  position: relative;
  width: 100%;
  height: 700px;
  overflow: hidden;
}
@media screen and (max-width: 1280px) {
  .img-wrap {
    height: 600px;
  }
}
@media screen and (max-width: 767px) {
  .img-wrap {
    height: 350px;
  }
}

/* 中の画像：拡大させない設定 */
.js-scroll_element {
  position: absolute;
  top: 50%;
  left: 50%;
  min-height: 850px;
  width: auto;
  min-width: 100%;
}
@media screen and (max-width: 1280px) {
  .js-scroll_element {
    min-height: 800px;
  }
}
@media screen and (max-width: 767px) {
  .js-scroll_element {
    height: 120% !important; /* SPは比率で指定して拡大を最小限に */
    width: 100%;
    min-height: auto;
  }
}
.js-scroll_element {
  /* 中央配置の初期化 */
  -webkit-transform: translate3d(-50%, -50%, 0);
          transform: translate3d(-50%, -50%, 0);
  -o-object-fit: cover;
     object-fit: cover;
  /* 描画の滑らかさ */
  will-change: transform;
  /* ★「ふわっ」の核心：少し長めの余韻 */
  -webkit-transition: -webkit-transform 1.2s cubic-bezier(0.1, 1, 0.3, 1);
  transition: -webkit-transform 1.2s cubic-bezier(0.1, 1, 0.3, 1);
  transition: transform 1.2s cubic-bezier(0.1, 1, 0.3, 1);
  transition: transform 1.2s cubic-bezier(0.1, 1, 0.3, 1), -webkit-transform 1.2s cubic-bezier(0.1, 1, 0.3, 1);
}

/*----------------------------------------------------
    TITLE
----------------------------------------------------*/
.com-tit-01 {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 600;
  font-family: "Lato", sans-serif;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .com-tit-01 {
    margin-bottom: 30px;
    font-size: 20px;
    font-size: 2rem;
  }
}

.com-tit-02 {
  font-size: 75px;
  font-size: 7.5rem;
  font-weight: 500;
  line-height: 0.8;
  letter-spacing: 0.8rem;
  color: #251e1c;
  font-family: "League Spartan", sans-serif;
}
@media screen and (max-width: 1280px) {
  .com-tit-02 {
    font-size: 3Epx;
    font-size: 0.3Erem;
  }
}
@media screen and (max-width: 767px) {
  .com-tit-02 {
    font-size: 35px;
    font-size: 3.5rem;
  }
}

/* 商品一覧　下層タイトル */
.com-tit-03,
.woocommerce-products-header__title {
  text-align: center;
  font-size: 24px;
  font-size: 2.4rem;
  padding: 30px 0;
  margin-bottom: 30px;
  color: #4e4f4d;
  font-weight: 500;
  border-top: 1px solid #d0ccc1;
  border-bottom: 1px solid #d0ccc1;
}
@media screen and (max-width: 820px) {
  .com-tit-03,
  .woocommerce-products-header__title {
    font-size: 15rempx;
    font-size: 1.5remrem;
  }
}
@media screen and (max-width: 767px) {
  .com-tit-03,
  .woocommerce-products-header__title {
    font-size: 17px;
    font-size: 1.7rem;
    padding: 20px 0;
    margin-bottom: 25px;
  }
}

.com-tit-04, .com-tit-07 {
  font-size: 18px;
  font-size: 1.8rem;
  color: #2c383f;
  font-weight: 500;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .com-tit-04, .com-tit-07 {
    font-size: 12px;
    font-size: 1.2rem;
    margin-bottom: 5px;
  }
}
.com-tit-04 .en, .com-tit-07 .en {
  display: block;
  font-weight: 600;
  font-size: 65px;
  font-size: 6.5rem;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 767px) {
  .com-tit-04 .en, .com-tit-07 .en {
    font-size: 35px;
    font-size: 3.5rem;
  }
}
.com-tit-04 .cura, .com-tit-07 .cura {
  font-weight: 500;
}

.com-tit-05 {
  font-size: 22px;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.4;
  color: #6e7662;
  border-bottom: 1px solid #e2ded4;
  padding-bottom: 30px;
  margin-bottom: 40px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .com-tit-05 {
    padding-bottom: 20px;
    font-size: 15px;
    font-size: 1.5rem;
    text-align: left;
    margin-bottom: 30px;
  }
}

.com-tit-06 {
  font-size: 34px;
  font-size: 3.4rem;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px dashed #d3ccb4;
  font-family: "Shippori Mincho", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  margin: 20px 0 30px 0;
  line-height: 1.8;
  padding-bottom: 15px;
}
@media screen and (max-width: 820px) {
  .com-tit-06 {
    font-size: 24px;
    font-size: 2.4rem;
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .com-tit-06 {
    font-size: 25px;
    font-size: 2.5rem;
    line-height: 1.4;
  }
}
.com-tit-06 .border-tit {
  background: #3b473f;
  padding: 5px 20px;
  border-radius: 60px;
  margin-right: 20px;
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-size: 1.4rem;
}
@media screen and (max-width: 820px) {
  .com-tit-06 .border-tit {
    font-size: 12px;
    font-size: 1.2rem;
    padding: 5px 15px;
  }
}
@media screen and (max-width: 767px) {
  .com-tit-06 .border-tit {
    margin-right: 10px;
    padding: 3px 10px;
  }
}
.com-tit-06 .sub-tit {
  width: 100%;
  font-size: 22px;
  font-size: 2.2rem;
}
@media screen and (max-width: 767px) {
  .com-tit-06 .sub-tit {
    margin-bottom: 5px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.com-tit-07 {
  padding-left: 20px;
  border-left: 2px solid;
  margin-bottom: 30px;
  color: #6e7662;
}
@media screen and (max-width: 767px) {
  .com-tit-07 {
    font-size: 15px;
    font-size: 1.5rem;
    padding-left: 10px;
  }
}

.com-tit-08 {
  font-size: 25px;
  font-size: 2.5rem;
  font-family: "Shippori Mincho", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  line-height: 1.8;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .com-tit-08 {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
.com-tit-08 span {
  font-size: 45px;
  font-size: 4.5rem;
  font-family: "League Spartan", sans-serif;
  display: block;
}
@media screen and (max-width: 820px) {
  .com-tit-08 span {
    font-size: 42px;
    font-size: 4.2rem;
  }
}
@media screen and (max-width: 767px) {
  .com-tit-08 span {
    font-size: 28px;
    font-size: 2.8rem;
  }
}

.com-tit-09 {
  font-family: "Lato", sans-serif;
  font-size: 39px;
  font-size: 3.9rem;
  font-weight: 600;
  margin: 0 0 30px 0;
  line-height: 1.4;
  position: relative;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .com-tit-09 {
    font-size: 26px;
    font-size: 2.6rem;
  }
}
.com-tit-09 span {
  display: table;
  font-family: "Sawarabi Gothic", "Yu Gothic", "Meiryo", sans-serif;
  background: #333;
  text-align: center;
  color: #fff;
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 500;
  padding: 3px 20px;
}
@media screen and (max-width: 767px) {
  .com-tit-09 span {
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.com-tit-10 {
  font-size: 32px;
  font-size: 3.2rem;
  font-family: "Shippori Mincho", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1.1;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .com-tit-10 {
    font-size: 26px;
    font-size: 2.6rem;
  }
}
.com-tit-10 span {
  font-size: 13px;
  font-size: 1.3rem;
}
@media screen and (max-width: 767px) {
  .com-tit-10 span {
    font-size: 11px;
    font-size: 1.1rem;
  }
}

.com-tit-11 {
  font-size: 18px;
  font-size: 1.8rem;
  font-family: "Lato", sans-serif;
  text-align: center;
  border: 1px solid;
  border-radius: 60px;
  font-weight: 600;
  display: inline-block;
  padding: 5px 40px;
  margin-bottom: 10px;
  color: #6e7662;
}
@media screen and (max-width: 767px) {
  .com-tit-11 {
    font-size: 15px;
    font-size: 1.5rem;
    padding: 0 25px;
  }
}

.com-tit-12 {
  font-size: 20px;
  font-size: 2rem;
  margin: 30px 0 20px 0;
}
@media screen and (max-width: 767px) {
  .com-tit-12 {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.com-tit-13 {
  font-size: 17px;
  font-size: 1.7rem;
  margin-bottom: 10px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .com-tit-13 {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

.com-tit-14 {
  font-size: 15px;
  font-size: 1.5rem;
  background: #f5f3ed;
  display: block;
  margin: 0 auto 10px auto;
  border-radius: 60px;
  text-align: center;
  color: #6e7662;
}
@media screen and (max-width: 767px) {
  .com-tit-14 {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

/*----------------------------------------------------
    FOOTER
----------------------------------------------------*/
body:not(.home) #footer {
  border-top: 1px solid #d0ccc1;
}

#footer {
  font-size: 14px;
  font-size: 1.4rem;
  padding-bottom: 60px;
}
@media screen and (max-width: 1280px) {
  #footer {
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 767px) {
  #footer {
    font-size: 13px;
    font-size: 1.3rem;
    padding-bottom: 120px;
  }
}
#footer .logo_area img {
  width: 200px;
}
@media screen and (max-width: 1280px) {
  #footer .logo_area img {
    width: 150px;
  }
}

.foot-top {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 440px;
  border-bottom: 1px solid #d0ccc1;
  padding-bottom: 80px;
}
@media screen and (max-width: 1280px) {
  .foot-top {
    gap: 40px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media screen and (max-width: 820px) {
  .foot-top {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.footer-right {
  gap: 150px;
}
@media screen and (max-width: 820px) {
  .footer-right {
    gap: 50px;
  }
}
.footer-right > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.footer-right > ul a {
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .footer-right > ul a {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
.footer-right > ul li > span {
  letter-spacing: 0.1em;
}

.footer-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 10px 0 0 15px;
  font-weight: 500;
}
.footer-child li:before {
  content: "-";
  margin-right: 8px;
}
@media screen and (max-width: 767px) {
  .footer-child li a {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.foot-top {
  margin: 30px 0 60px 0;
}

.foot-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .foot-bottom {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    gap: 40px;
  }
}
.foot-bottom a {
  font-size: 13px;
  font-size: 1.3rem;
}

@media screen and (max-width: 767px) {
  .bottom-nav {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 5px 20px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media screen and (max-width: 767px) {
  .bottom-nav li a {
    font-size: 12px;
    font-size: 1.2rem;
  }
}

/* SNS アイコン */
.sns_icon {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .sns_icon {
    margin-top: 20px;
    gap: 20px;
  }
}

.custom-icon {
  display: inline-block;
  vertical-align: middle;
  width: 1.9em;
  height: 1.9em;
  margin-right: 0.3em;
}
@media screen and (max-width: 767px) {
  .custom-icon {
    width: 1.7em;
    height: 1.7em;
  }
}

.custom-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* インスタ公式のグラデーション風 */
.icon-instagram {
  color: #504d4d;
}

/* YouTubeの公式レッド */
.icon-youtube {
  color: #504d4d;
}

.copy {
  font-size: 12px;
  font-size: 1.2rem;
  font-family: "Lato", sans-serif;
}

/*----------------------------------------------------
    フローティングバナー
----------------------------------------------------*/
/* SP */
#fl-banner {
  display: none;
}

.bottom-float {
  z-index: 100;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  text-align: center;
  padding: 15px 0;
  font-weight: 500;
  background: #333;
  line-height: 1.2;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .bottom-float {
    padding: 12px 0;
  }
}
.bottom-float a {
  color: #fff;
  letter-spacing: 0.1em;
  font-size: 13px;
  font-size: 1.3rem;
}
@media screen and (max-width: 767px) {
  .bottom-float a {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.4;
  }
}

/*----------------------------------------------------
    404
----------------------------------------------------*/
.error-404 {
  text-align: center;
  padding: 80px 0;
  color: #5c5c5c;
  font-weight: 600;
  border-bottom: 1px solid #d0ccc1;
}
@media screen and (max-width: 820px) {
  .error-404 {
    padding: 70px 0 80px;
  }
}
.error-404 .btn {
  margin-top: 50px;
}
.error-404 .icon_404 {
  font-size: 90px;
  font-size: 9rem;
  text-align: center;
  letter-spacing: 1px;
}
@media screen and (max-width: 820px) {
  .error-404 .icon_404 {
    font-size: 7rem;
  }
}

/*----------------------------------------------------
    #pageTop
----------------------------------------------------*/
#pagetop {
  position: fixed;
  z-index: 100;
  bottom: 120px;
  right: 150px;
  display: none;
}
@media screen and (max-width: 1280px) {
  #pagetop {
    right: 50px;
  }
}
@media screen and (max-width: 820px) {
  #pagetop {
    right: 10px;
    bottom: 80px;
  }
}
#pagetop a {
  font-size: 14px;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  position: relative;
  letter-spacing: 2px;
  display: block;
  width: 50px;
  height: 50px;
  background: #6e7662;
  border-radius: 50%;
}
@media screen and (max-width: 820px) {
  #pagetop a {
    width: 48px;
    height: 48px;
  }
}
#pagetop a:after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  margin-left: -6px;
  margin-top: -5px;
  top: 50%;
  width: 11px;
  height: 11px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
}
@media screen and (max-width: 820px) {
  #pagetop a:after {
    width: 10px;
    height: 10px;
    margin-left: -5px;
    margin-top: -5px;
  }
}

/*----------------------------------------------------
    SET
----------------------------------------------------*/
@media screen and (min-width: 1281px) {
  .pc_hide {
    display: none !important;
  }
}

@media screen and (min-width: 768px) and (max-width: 1280px) {
  .tab_hide {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .smart_hide {
    display: none !important;
  }
}