@charset "UTF-8";
/* CSS Document */
/* 基本設定-------------------------------------------*/
a {
  text-decoration: none;
  transition: all 0.3s;
  color: #3C3C3C;
  outline: none;
  position: relative;
  display: inline-block;
}

@media (min-width: 769px) {
  a:hover {
    opacity: 0.7;
  }
}
a img,
a svg {
  text-decoration: none;
  transition: all 0.3s;
  color: #3C3C3C;
  outline: none;
}

div {
  outline: none;
  word-break: break-word;
}

img {
  max-width: 100%;
  height: auto;
  outline: none;
}

svg {
  backface-visibility: hidden;
  transform: translateZ(0);
}

div,
li,
header,
footer,
dt,
dd,
section {
  box-sizing: border-box;
}

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

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

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

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

.pc-view {
  display: none !important;
}

.sp-view {
  display: block !important;
}

@media screen and (min-width: 769px) {
  .pc-view {
    display: block !important;
  }
  .sp-view {
    display: none !important;
  }
}
/*-- Base --*/
html {
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  height: -webkit-fill-available;
}

body {
  color: #3C3C3C;
  background: #fff;
  line-height: 1.5;
  font-family: "Noto Sans JP", "ヒラギノ角ゴシック", "Hiragino Kaku Gothic", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  font-size: 14px;
  width: 100%;
  word-wrap: break-word;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
  min-height: -webkit-fill-available;
}

@media screen and (min-width: 769px) {
  body {
    font-size: 16px;
  }
  a[href*="tel:"] {
    text-decoration: none;
  }
}
/*-- HTML5 elements --*/
article,
aside,
details,
figcaption,
figure,
footer,
header,
nav,
section,
summary {
  display: block;
  margin: 0;
  padding: 0;
}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

.clearfix {
  min-height: 1px;
}

* html .clearfix {
  height: 1px;
  /*\*/ /*/
height: auto;
overflow: hidden;
/**/
}

strong {
  font-weight: bold;
}

section,
article {
  position: relative;
}

.nolink {
  pointer-events: none;
}
.nolink:hover {
  opacity: 1;
}

[data-aos=fade-up] {
  transform: translate3d(0, 30px, 0);
}

.svg-box {
  width: 0;
  height: 0;
}

/* 細かいパーツ-------------------------------------------*/
#page {
  position: relative;
  padding-top: 60px;
  overflow: hidden;
}

@media screen and (min-width: 769px) {
  #page {
    padding-top: 100px;
  }
}
.flex-wrapper {
  display: flex;
}

.box-inner {
  padding: 0 15px;
  position: relative;
}

@media screen and (min-width: 769px) {
  .box-inner {
    margin: 0 auto;
    padding: 0 20px;
    max-width: 1160px;
  }
  .pc-flex {
    display: flex;
  }
}
.font-en {
  font-family: "Barlow Semi Condensed", sans-serif;
}

.icon-svg {
  position: absolute;
  width: 0;
  height: 0;
}

.icon-arrow01 {
  transition: all 0.3s ease;
  position: relative;
}
.icon-arrow01:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  transition: all 0.3s ease;
}

.font-s {
  font-size: 10px;
}

@media screen and (min-width: 769px) {
  .font-s {
    font-size: 12px;
  }
}
.noinfo {
  font-size: 16px;
  text-align: center;
  padding: 15px 0 2px;
  font-weight: bold;
  position: relative;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .noinfo {
    padding-bottom: 5px;
    font-size: 18px;
  }
}
.noinfo::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 1px;
  background: #3c3c3c;
}

.bg-image-clip {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 230px;
  clip-path: inset(0);
  z-index: 0;
}

.bg-image-fixed {
  position: absolute;
  top: 0;
  width: 100%;
  height: calc(100% + 200px);
  background-size: cover;
  background-position: center;
}

/* ヘッダー-------------------------------------------*/
.page-hd {
  position: fixed;
  height: 64px;
  background: #fff;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 11;
  transition: 0.4s;
}
@media (min-width: 769px) {
  .page-hd {
    position: fixed;
    height: 100px;
    transition: 0.3s;
    transform: translateY(0);
    transition: transform 0.4s ease, opacity 0.4s ease;
  }
  .page-hd.hide {
    transform: translateY(-100%);
    opacity: 0;
    height: 72px;
    position: fixed;
  }
  .page-hd.fixed {
    height: 72px;
    transform: translateY(0%);
    position: fixed;
    opacity: 1;
    transition: 0.4s;
  }
  .page-hd.fixed .top-logo a img {
    width: 137px !important;
  }
}
.page-hd .lang-nav {
  font-size: 12px;
  font-family: "Barlow Semi Condensed", sans-serif;
  position: relative;
}
.page-hd .lang-nav .lang-now {
  cursor: pointer;
}
.page-hd .lang-nav .lang-now .icon-arrow01 {
  margin-left: 4px;
  vertical-align: initial;
}
.page-hd .lang-nav .lang-now .icon-arrow01::before {
  border-color: #000;
  transform: rotate(135deg);
  width: 6px;
  height: 6px;
}
.page-hd .lang-nav .lang-now:hover {
  color: #866d3e;
}
.page-hd .lang-nav .lang-now:hover .icon-arrow01::before {
  border-color: #866d3e;
}
.page-hd .lang-nav .lang-list {
  position: absolute;
  left: -40px;
  top: 31px;
  width: 78px;
}
@media (max-width: 768px) {
  .page-hd .lang-nav .lang-list {
    left: -49px;
  }
}
.page-hd .lang-nav .lang-list li {
  text-align: center;
  background: #938976;
  font-size: 12px;
  border-bottom: 1px solid #AAA08D;
}
.page-hd .lang-nav .lang-list li:last-child {
  border-bottom: none;
}
.page-hd .lang-nav .lang-list li a {
  color: #fff;
  display: block;
  padding: 6px 0;
}
.page-hd .btn-menu {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 769px) {
  .page-hd .btn-menu {
    height: 40px;
  }
}
.page-hd .btn-menu .hbg-wrapper {
  text-align: center;
  width: 32px;
  height: 7px;
  position: relative;
  cursor: pointer;
}
@media (min-width: 769px) {
  .page-hd .btn-menu .hbg-wrapper {
    width: 48px;
    height: 10px;
  }
}
.page-hd .btn-menu .hbg-wrapper span {
  position: absolute;
  right: auto;
  left: 0;
  margin: 0 auto;
  height: 1px;
  width: 100%;
  background-color: #242424;
  display: inline-block;
  box-sizing: border-box;
  transition: all 0.3s ease;
}
@media (min-width: 769px) {
  .page-hd .btn-menu .hbg-wrapper span {
    height: 2px;
    transform: scaleY(0.5);
  }
}
.page-hd .btn-menu .hbg-wrapper span:nth-of-type(1) {
  top: 0;
}
.page-hd .btn-menu .hbg-wrapper span:nth-of-type(2) {
  bottom: 0;
  width: 22px;
}
@media (min-width: 769px) {
  .page-hd .btn-menu .hbg-wrapper span:nth-of-type(2) {
    width: 28px;
  }
}
@media (max-width: 768px) {
  .page-hd .btn-menu.open .hbg-wrapper span:nth-of-type(1) {
    transform: translateY(0px) rotate(158deg);
  }
  .page-hd .btn-menu.open .hbg-wrapper span:nth-of-type(2) {
    transform: translateY(-6px) rotate(22deg);
    width: 100%;
  }
}
.page-hd .hd-inner {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 22px 0 16px;
  position: relative;
  z-index: 5;
}
@media (min-width: 769px) {
  .page-hd .hd-inner {
    padding: 0 33px 0 38px;
  }
}
@media (max-width: 768px) {
  .page-hd .hd-inner .top-logo {
    padding-left: min(10.1333333333vw, 44px);
    transition: 0.2s;
  }
  .page-hd .hd-inner .top-logo.open {
    opacity: 0;
  }
}
@media (min-width: 769px) {
  .page-hd .hd-inner .top-logo {
    padding-left: min(10.4166666667vw, 90px);
  }
}
.page-hd .hd-inner .top-logo a img {
  width: 119px;
}
@media (min-width: 769px) {
  .page-hd .hd-inner .top-logo a img {
    width: 181px;
  }
}
.page-hd .hd-inner .sns-list {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (max-width: 768px) {
  .page-hd .hd-inner .sns-list {
    display: none;
  }
}
.page-hd .hd-inner .sns-list li a img {
  vertical-align: middle;
}
.page-hd .hd-inner .sns-list li.sns-x {
  width: 16px;
}
.page-hd .hd-inner .sns-list li.sns-insta {
  width: 17px;
}
.page-hd .hd-inner .box-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (min-width: 769px) {
  .page-hd .hd-inner .box-right {
    gap: 16px;
  }
}
.page-hd .hd-inner .hour-link {
  font-size: 10px;
  font-weight: 500;
}
.page-hd .hd-inner .hour-link a img {
  width: 17px;
}

/* グローバルナビ-------------------------------------------*/
#gnav {
  position: fixed;
  background: #fff;
  left: 0;
  z-index: 4;
  overflow: auto;
}
@media (max-width: 768px) {
  #gnav {
    width: 100%;
    height: 100dvh;
    top: 64px;
    padding-bottom: 100px;
  }
}
@media (min-width: 769px) {
  #gnav {
    top: 0;
    width: 720px;
    height: 100vh;
    padding-top: 100px;
    z-index: 6;
    padding-bottom: 80px;
  }
}
@media (max-width: 768px) {
  #gnav .gnav-inner {
    padding: 20px;
  }
}
@media (min-width: 769px) {
  #gnav .gnav-inner {
    padding: 0 85px;
  }
}
@media (max-width: 768px) {
  #gnav .gnav-inner .gnav-hd {
    display: none;
  }
}
@media (min-width: 769px) {
  #gnav .gnav-inner .gnav-hd .btn-menu {
    position: absolute;
    top: 30px;
    left: 35px;
  }
}
#gnav .gnav-inner .gnav-hd .hbg-wrapper span:nth-of-type(1) {
  transform: translateY(0px) rotate(158deg);
}
@media (min-width: 769px) {
  #gnav .gnav-inner .gnav-hd .hbg-wrapper span:nth-of-type(1) {
    height: 2px;
    transform: translateY(0px) rotate(158deg) scaleY(0.5);
  }
}
#gnav .gnav-inner .gnav-hd .hbg-wrapper span:nth-of-type(2) {
  transform: translateY(-8px) rotate(22deg);
  width: 100%;
}
@media (min-width: 769px) {
  #gnav .gnav-inner .gnav-hd .hbg-wrapper span:nth-of-type(2) {
    height: 2px;
    transform: translateY(-8px) rotate(22deg) scaleY(0.5);
  }
}
#gnav .gnav-inner .gnav-hd .link-r {
  display: flex;
  align-items: center;
  position: absolute;
  right: 84px;
  top: 162px;
}
#gnav .gnav-inner .gnav-hd .link-r .hour-link {
  font-size: 12px;
}
#gnav .gnav-inner .gnav-hd .hour-link a img {
  width: 26px;
}
#gnav .gnav-inner .gnav-hd .lang-nav {
  margin-left: 15px;
}
#gnav .gnav-inner .gnav-hd .lang-nav .lang-now {
  font-size: 16px;
}
#gnav .gnav-inner .gnav-hd .lang-nav .lang-now .arrow {
  margin-left: 4px;
  vertical-align: initial;
}
#gnav .gnav-inner .top-logo {
  text-align: center;
}
@media (max-width: 768px) {
  #gnav .gnav-inner .top-logo {
    margin-bottom: 30px;
  }
}
@media (min-width: 769px) {
  #gnav .gnav-inner .top-logo {
    margin: 48px 0 40px;
  }
}
@media (max-width: 768px) {
  #gnav .gnav-inner .top-logo a img {
    width: 163px;
  }
}
@media (min-width: 769px) {
  #gnav .gnav-inner .top-logo a img {
    width: 202px;
  }
}
#gnav .gnav-inner .sns-list {
  display: flex;
  justify-content: center;
  gap: 16px;
}
#gnav .gnav-inner .sns-list li a img {
  width: 16px;
}
#gnav .gnav-inner .icon-nav {
  border-top: 1px solid #E0E0E0;
  border-bottom: 1px solid #E0E0E0;
}
@media (max-width: 768px) {
  #gnav .gnav-inner .icon-nav {
    margin: 45px auto;
    padding: 18px 0;
  }
}
@media (min-width: 769px) {
  #gnav .gnav-inner .icon-nav {
    margin: 52px auto 47px;
    padding: 32px 0 28px;
  }
}
#gnav .gnav-inner .icon-nav .nav-list {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 769px) {
  #gnav .gnav-inner .icon-nav .nav-list {
    justify-content: center;
  }
}
#gnav .gnav-inner .icon-nav .nav-list li {
  border-right: 1px solid #E0E0E0;
  border-bottom: 1px solid #E0E0E0;
}
@media (max-width: 768px) {
  #gnav .gnav-inner .icon-nav .nav-list li {
    width: 50%;
  }
  #gnav .gnav-inner .icon-nav .nav-list li:nth-child(2n) {
    border-right: none;
  }
  #gnav .gnav-inner .icon-nav .nav-list li:nth-child(1) a, #gnav .gnav-inner .icon-nav .nav-list li:nth-child(2) a {
    padding-top: 14px;
  }
  #gnav .gnav-inner .icon-nav .nav-list li:nth-child(5), #gnav .gnav-inner .icon-nav .nav-list li:nth-child(6) {
    border-bottom: none;
  }
  #gnav .gnav-inner .icon-nav .nav-list li:nth-child(5) a, #gnav .gnav-inner .icon-nav .nav-list li:nth-child(6) a {
    padding-bottom: 14px;
  }
}
@media (min-width: 769px) {
  #gnav .gnav-inner .icon-nav .nav-list li {
    position: relative;
    width: 33.3333333333%;
  }
  #gnav .gnav-inner .icon-nav .nav-list li:nth-child(3n) {
    border-right: none;
  }
  #gnav .gnav-inner .icon-nav .nav-list li:nth-child(4), #gnav .gnav-inner .icon-nav .nav-list li:nth-child(5), #gnav .gnav-inner .icon-nav .nav-list li:nth-child(6) {
    border-bottom: none;
  }
}
#gnav .gnav-inner .icon-nav .nav-list li a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 24px 0 20px;
}
@media (min-width: 769px) {
  #gnav .gnav-inner .icon-nav .nav-list li a .nav-img img {
    width: 74px;
  }
}
#gnav .gnav-inner .icon-nav .nav-list li a .nav-txt {
  font-size: 12px;
  color: #866d3e;
  margin-top: 2px;
}
@media (min-width: 769px) {
  #gnav .gnav-inner .icon-nav .nav-list li a .nav-txt {
    font-size: 14px;
    margin-top: 4px;
  }
}
#gnav .gnav-inner .ganv-ft-box .gnav-ft-link {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 12px 32px;
  width: max-content;
  margin: 0 auto;
  justify-content: center;
  justify-items: start;
}
@media (min-width: 769px) {
  #gnav .gnav-inner .ganv-ft-box .gnav-ft-link {
    grid-template-columns: repeat(3, auto);
    gap: 12px 40px;
  }
}
#gnav .gnav-inner .ganv-ft-box .gnav-ft-link li {
  font-size: 12px;
}
.gnav-bg {
  background-color: rgba(60, 60, 60, 0.6);
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  right: 0;
  z-index: 5;
}
@media (max-width: 768px) {
  .gnav-bg {
    display: none !important;
  }
}

#gnav,
.gnav-bg,
.page-hd .lang-nav .lang-list {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

#gnav.is-visible,
.gnav-bg.is-visible,
.page-hd .lang-nav .lang-list.is-visible {
  opacity: 1;
  pointer-events: auto;
}

/* 下層タイトル-------------------------------------------*/
.ttl-area {
  height: 200px;
  background: #dedad1;
  margin-bottom: 48px;
}
@media (min-width: 769px) {
  .ttl-area {
    margin-bottom: 80px;
    height: 240px;
  }
}
.ttl-area .box-inner {
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.ttl-area .box-inner .txt-en {
  font-size: 40px;
  font-weight: 300;
  font-family: "Barlow Semi Condensed", sans-serif;
  display: block;
}
@media (min-width: 769px) {
  .ttl-area .box-inner .txt-en {
    font-size: 56px;
  }
}
.ttl-area .box-inner .txt-jp {
  font-size: 14px;
  font-weight: 500;
  display: block;
  font-family: "Noto Sans JP", "ヒラギノ角ゴシック", "Hiragino Kaku Gothic", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
}
@media (min-width: 769px) {
  .ttl-area .box-inner .txt-jp {
    font-size: 16px;
    margin-top: -2px;
  }
}

/* 記事リストパーツ-------------------------------------------*/
.article-list:not(.home-list) {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 11px;
}
@media (min-width: 769px) {
  .article-list:not(.home-list) {
    gap: min(3.1944444444vw, 46px) min(3.6805555556vw, 53px);
  }
}
.article-list:not(.home-list) .article {
  width: calc(50% - 6px);
}
@media (min-width: 769px) {
  .article-list:not(.home-list) .article {
    width: calc(25% - min(2.7777777778vw, 40px));
  }
}
.article-list:not(.home-list) .article .txt-box .mds {
  color: #866d3e;
  font-weight: 500;
  font-size: 14px;
}
@media (min-width: 769px) {
  .article-list:not(.home-list) .article .txt-box .mds {
    font-size: 16px;
  }
}
@media (min-width: 769px) {
  .article-list:not(.home-list) .article .txt-box .shopname {
    font-size: 12px;
  }
}
@media (min-width: 769px) {
  .article-list {
    display: flex;
    flex-wrap: wrap;
    gap: 32px 16px;
  }
}
.article-list .article {
  background: #fff;
}
.article-list .article a .img-box {
  aspect-ratio: 1/1;
  position: relative;
  background-color: #fff;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}
.article-list .article a .img-box .bg-box {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  filter: blur(30px);
  transform: scale(1.2);
  background-size: cover;
  background-position: center;
}
.article-list .article a .img-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  z-index: 1;
  position: relative;
}
.article-list .article a .img-box .icon-new {
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  background: #938976;
  font-size: 14px;
  width: 50px;
  height: 24px;
  font-family: "Barlow Semi Condensed", sans-serif;
  text-align: center;
  font-weight: 300;
  z-index: 1;
  padding-top: 1px;
}
@media (min-width: 769px) {
  .article-list .article a .img-box .icon-new {
    width: 56px;
  }
}
.article-list .article a .txt-box {
  padding: 15px 0 0;
  display: flex;
  flex-direction: column;
}
.article-list .article a .txt-box .category {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 300;
  text-decoration: underline;
  font-size: 14px;
  color: #866d3e;
  margin-bottom: 4px;
}
@media (min-width: 769px) {
  .article-list .article a .txt-box .category {
    font-size: 16px;
  }
}
.article-list .article a .txt-box .shopname {
  font-size: 10px;
  font-weight: 500;
  margin-bottom: 8px;
}
.article-list .article a .txt-box .mds {
  margin-bottom: 4px;
  font-size: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: 500;
}
.article-list .article a .txt-box .date-box {
  margin-top: auto;
}
.article-list .article a .txt-box .date-box .date {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 300;
  font-size: 10px;
  margin-bottom: 8px;
}
@media (min-width: 769px) {
  .article-list .article a .txt-box .date-box .date {
    font-size: 12px;
  }
}
.article-list.shopblog .article a .txt-box {
  padding-top: 26px;
  padding-bottom: 26px;
}
@media (min-width: 769px) {
  .article-list.shopblog .article a .txt-box {
    padding-top: 19px;
    padding-bottom: 12px;
  }
}

/* ボタン-------------------------------------------*/
.btn-base {
  text-align: center;
  width: 73.3333333333vw;
  margin: 0 auto;
  font-size: 16px;
  background: #fff;
}
@media (min-width: 769px) {
  .btn-base {
    width: 300px;
  }
}
.btn-base a {
  display: block;
  position: relative;
  background: #938976;
  padding: 12px 0;
  color: #fff;
  isolation: isolate;
}
.btn-base a::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: -30px;
  margin: auto;
  width: 60px;
  height: 1px;
  background: #938976;
  mix-blend-mode: color-dodge;
  z-index: 1;
}
.btn-base a::after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: scale(0, 1);
  background: #AFA592;
  content: "";
  transition: transform linear 0.3s;
  transform-origin: right top;
}
.btn-base a:hover {
  opacity: 1;
}
.btn-base a:hover::after {
  transform: scale(1, 1);
  transform-origin: left top;
}
.btn-base a > span {
  position: relative;
  z-index: 2;
}
.btn-base.btn-more {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 18px;
  font-weight: 300;
}
@media (min-width: 769px) {
  .btn-base.btn-more {
    font-size: 24px;
  }
}
.btn-base.btn-more a {
  padding: 10px 0;
}
@media (min-width: 769px) {
  .btn-base.btn-more a {
    padding: 7px 0;
  }
}
.btn-base.with-arrow a::before {
  content: none;
}
.btn-base.with-arrow a .icon-arrow01 {
  position: absolute;
  z-index: 2;
  top: -3px;
  bottom: 0;
  left: auto;
  right: 22px;
}
@media (min-width: 769px) {
  .btn-base.with-arrow a .icon-arrow01 {
    right: 25px;
  }
}
.btn-base.with-arrow a .icon-arrow01::before {
  border-color: #fff;
  transform: rotate(135deg);
  width: 8px;
  height: 8px;
}

/* ページャー-------------------------------------------*/
.pager-box {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px auto 0;
  width: 85%;
}
@media screen and (min-width: 769px) {
  .pager-box {
    margin-top: 50px;
    max-width: 300px;
  }
}
.pager-box li {
  position: relative;
  padding: 0 10px;
}
.pager-box li.current a {
  color: #866D3E;
}
.pager-box li a {
  color: #938888;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-weight: 500;
  display: block;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.pager-box li .icon-arrow01 {
  position: absolute;
  width: 30px;
  height: 30px;
}
.pager-box li .icon-arrow01 .svg-arrow {
  stroke: #866D3E;
  width: 30px;
  height: 30px;
}
.pager-box .btn-back {
  border: none;
  width: 30px;
  height: 30px;
  margin-right: auto;
}
.pager-box .btn-back .icon-arrow01 {
  transform: scale(-1, 1);
}
.pager-box .btn-next {
  border: none;
  width: 30px;
  height: 30px;
  margin-left: auto;
}
.pager-box .disable {
  opacity: 0.3;
  pointer-events: none;
}

/* WYSIWYG共通パーツ-------------------------------------------*/
/* WYSIWYG-------------------------------------------*/
.wysiwyg {
  font-size: inherit;
  line-height: 1.8;
  word-break: break-all;
}

.wysiwyg h1,
.wysiwyg h2,
.wysiwyg h3,
.wysiwyg h4,
.wysiwyg h5,
.wysiwyg h6 {
  font-weight: bold;
}

.wysiwyg h1 {
  font-size: 200%;
}

.wysiwyg h2 {
  font-size: 180%;
}

.wysiwyg h3 {
  font-size: 160%;
}

.wysiwyg h4 {
  font-size: 140%;
}

.wysiwyg h5 {
  font-size: 120%;
}

.wysiwyg h6 {
  font-size: 100%;
}

.wysiwyg img {
  max-width: 100%;
  height: auto;
}

.wysiwyg a {
  text-decoration: underline;
}

.wysiwyg a:hover {
  text-decoration: none;
}

.wysiwyg strong,
.wysiwyg b {
  font-weight: bold;
}

.wysiwyg em {
  font-style: italic;
}

.wysiwyg sup {
  vertical-align: super;
  font-size: smaller;
}

.wysiwyg sub {
  vertical-align: sub;
  font-size: smaller;
}

.wysiwyg code {
  display: block;
  padding: 20px;
  background: #eee;
}

.wysiwyg ul,
.wysiwyg ol {
  padding-left: 1.5em;
}

.wysiwyg ul {
  list-style: disc;
}

.wysiwyg ol {
  list-style: decimal;
}

.wysiwyg table {
  width: 100% !important;
  font-size: inherit;
}

@media screen and (max-width: 768px) {
  .wysiwyg .table-wrap {
    overflow: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  .wysiwyg .table-wrap::-webkit-scrollbar {
    height: 15px;
  }
  .wysiwyg .table-wrap::-webkit-scrollbar-track {
    background: #f1f1f1;
  }
  .wysiwyg .table-wrap::-webkit-scrollbar-thumb {
    background: #bbb;
  }
}
/* SNSシェア-------------------------------------------*/
/* パンくず-------------------------------------------*/
.breadcrumb-area {
  background: #F7F5F2;
  display: block;
  margin: 0 auto;
  padding: 12px 16px;
  width: 100%;
  border-bottom: 1px solid #866D3E;
}
@media screen and (min-width: 769px) {
  .breadcrumb-area {
    padding: 14px 16px;
  }
}
.breadcrumb-area .breadcrumb {
  font-size: 12px;
}
@media screen and (min-width: 769px) {
  .breadcrumb-area .breadcrumb {
    max-width: 1160px;
    margin: 0 auto;
    font-size: 14px;
  }
}
.breadcrumb-area .breadcrumb li {
  position: relative;
  padding-right: 22px;
  display: inline;
}
@media (min-width: 769px) {
  .breadcrumb-area .breadcrumb li {
    padding-right: 27px;
  }
}
.breadcrumb-area .breadcrumb li:after {
  position: absolute;
  content: "/";
  vertical-align: middle;
  left: auto;
  right: 7px;
  bottom: 0;
  top: 0;
  margin: auto;
  text-decoration: none;
  color: #866d3e;
}
.breadcrumb-area .breadcrumb li:last-child:after {
  content: none;
}
.breadcrumb-area .breadcrumb li a {
  color: #866d3e;
}
.breadcrumb-area .breadcrumb li.current a {
  text-decoration: none;
  color: #3C3C3C;
}

/* フッター-------------------------------------------*/
.page-ft {
  background: #dedad1;
  background-size: contain;
  color: #fff;
}
@media (min-width: 769px) {
  .page-ft .ft-top {
    height: 640px;
    display: flex;
  }
}
.page-ft .ft-top .ft-box01 {
  padding: 80px 0 70px;
  text-align: center;
  position: relative;
}
@media (min-width: 769px) {
  .page-ft .ft-top .ft-box01 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    align-items: flex-end;
    padding-right: min(8.3333333333vw, 120px);
  }
}
@media (max-width: 768px) {
  .page-ft .ft-top .ft-box01 .bg-image-fixed {
    background: url(../images/common/ftbg_sp.jpg) no-repeat;
    background-size: cover;
    background-position: center;
  }
}
@media (min-width: 769px) {
  .page-ft .ft-top .ft-box01 .bg-image-fixed {
    background: url(../images/common/ftbg_pc.jpg) no-repeat;
    background-size: cover;
    background-position: center;
  }
}
.page-ft .ft-top .ft-box01 .ft-logo {
  margin-bottom: 20px;
}
@media (min-width: 769px) {
  .page-ft .ft-top .ft-box01 .ft-logo {
    margin-bottom: 32px;
  }
}
.page-ft .ft-top .ft-box01 .ft-logo a img {
  width: 53.8666666667vw;
}
@media (min-width: 769px) {
  .page-ft .ft-top .ft-box01 .ft-logo a img {
    width: 292px;
  }
}
.page-ft .ft-top .ft-box01 .address-txt {
  line-height: 2;
  margin-bottom: 12px;
  z-index: 1;
  position: relative;
}
@media (min-width: 769px) {
  .page-ft .ft-top .ft-box01 .address-txt {
    font-size: 14px;
    margin-bottom: 32px;
  }
}
@media (min-width: 769px) {
  .page-ft .ft-top .ft-box02 {
    width: min(37.5vw, 540px);
  }
}
.page-ft .ft-top .ft-box02 iframe {
  width: 100%;
  height: 73.0666666667vw;
}
@media (min-width: 769px) {
  .page-ft .ft-top .ft-box02 iframe {
    height: 100%;
  }
}
.page-ft .ft-btm {
  padding: 70px 35px;
  background: #242424;
}
@media (min-width: 769px) {
  .page-ft .ft-btm {
    padding: 93px 20px 120px;
    max-width: initial;
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }
}
.page-ft .ft-btm .ft-logo {
  text-align: center;
  margin-bottom: 32px;
}
@media (min-width: 769px) {
  .page-ft .ft-btm .ft-logo {
    margin-bottom: 0;
    margin-right: min(8.3333333333vw, 120px);
    padding-left: min(4.1666666667vw, 60px);
  }
}
.page-ft .ft-btm .ft-logo img {
  width: 51.2vw;
}
@media (min-width: 769px) {
  .page-ft .ft-btm .ft-logo img {
    width: 192px;
  }
}
.page-ft .ft-btm .sns-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
@media (min-width: 769px) {
  .page-ft .ft-btm .sns-list {
    display: none;
  }
}
.page-ft .ft-btm .sns-list .sns-x {
  width: 18px;
}
.page-ft .ft-btm .sns-list .sns-insta {
  width: 20px;
}
@media (max-width: 768px) {
  .page-ft .ft-btm .ft-txt-link {
    padding-top: 33px;
    margin-top: 30px;
    margin-bottom: 65px;
    border-top: 1px solid #404040;
    gap: 10px 13.3333333333vw;
    display: flex;
    flex-wrap: wrap;
  }
}
@media (min-width: 769px) {
  .page-ft .ft-btm .ft-txt-link {
    margin-right: min(10.2777777778vw, 148px);
    height: 45px;
    display: flex;
    gap: 12px 0;
    width: 600px;
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  .page-ft .ft-btm .ft-txt-link li {
    font-size: 12px;
    font-weight: 500;
  }
  .page-ft .ft-btm .ft-txt-link li:nth-child(2n-1) {
    width: 29.3333333333vw;
  }
}
@media (min-width: 769px) {
  .page-ft .ft-btm .ft-txt-link li {
    font-size: 12px;
    width: min(13.8888888889vw, 200px);
  }
}
.page-ft .ft-btm .ft-txt-link li a {
  color: #fff;
}
.page-ft .ft-btm .copyright {
  font-size: 10px;
  font-weight: 300;
  text-align: center;
  font-family: "Barlow Semi Condensed", sans-serif;
}

.btn-pagetop {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 10;
  background: #fff;
}
@media (min-width: 769px) {
  .btn-pagetop {
    right: 20px;
    bottom: 20px;
  }
}
@media (max-width: 768px) {
  .btn-pagetop a:hover {
    opacity: 1;
  }
}
/*# sourceMappingURL=_map/common.css.map */
