@charset "UTF-8";
:root {
  --base_font: "BIZ UD Gothic", sans-serif;
  --sub_font: "Noto Sans JP", sans-serif;
  --en_font: "Poppins", sans-serif;
  --mc: #442405;
  --sc: #894b14;
  --fc: #333;
  --bc: #f5f7f5;
  --red: #b10000;
  --hd_mt: 90px;
}
@media screen and (min-width: 768px) {
  :root {
    --hd_mt: 140px;
  }
}

/*リセットCSS
----------------------------------------------------------------*/
/* 要素 フォントサイズ・マージン・パディングをリセット */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font-weight: normal;
  vertical-align: baseline;
  background: transparent;
}

/* 行の高=フォントサイズ */
body {
  line-height: 1;
}

/* 新規追加要素をブロック要素化 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

/* ulのマーカー非表示 */
ol,
ul {
  list-style: none;
}

/* 引用符の非表示 */
blockquote,
q {
  quotes: none;
}

/* blockquote要素、q要素の前後にコンテンツ非表示 */
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

/* フォントサイズ　リセット フォントの縦方向 ベースライン揃え 点線削除 */
a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  outline: none;
}

/* ins要素 デフォルトセット 色を変える場合はここで変更 */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* mark要素 デフォルトセット 色やフォントスタイルを変える場合はここで変更 */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

/* テキスト 打ち消し線 */
del {
  text-decoration: line-through;
}

/* IE　デフォルトで点線を下線表示設定　下線設定 マウスオーバー時 ヘルプカーソル表示可 */
abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

/*　隣接するセルのボーダーを重ねて表示　*/
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* 水平罫線デフォルトリセット */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

/* 縦方向の揃え 中央揃え */
input,
select {
  vertical-align: middle;
}

/* 画像を縦に並べた時に余白0 */
img {
  vertical-align: top;
  font-size: 0;
  line-height: 0;
}

/*box-sizingを全ブラウザに対応*/
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

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

br {
  line-height: inherit;
}

/*【共通】パーツ
----------------------------------------------------------------*/
/* リンク */
a,
a * {
  -webkit-transition: opacity 0.6s ease;
  -moz-transition: opacity 0.6s ease;
  -o-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
  text-decoration: none;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  font-family: inherit;
  -webkit-backface-visibility: hidden;
  /* 追加 */
  backface-visibility: hidden;
  /* 追加 */
}

a:hover,
a:active {
  text-decoration: none;
  opacity: 0.8;
  filter: alpha(opacity=80);
  transition: 0.3s ease-in-out;
  color: inherit;
}

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

html {
  box-sizing: border-box;
  font-size: 62.5%;
}

body {
  position: relative;
  color: var(--fc);
  font-size: 1.4rem;
  font-family: var(--base_font);
  letter-spacing: 0.05em;
  line-height: 1.875;
  -webkit-text-size-adjust: 100%;
}
@media all and (-ms-high-contrast: none) {
  body {
    font-family: var(--base_font);
  }
}
@media screen and (min-width: 768px) {
  body {
    font-size: 1.6rem;
  }
}

body.fix {
  position: fixed;
  width: 100%;
}

body {
  width: 100%;
  overflow-x: hidden;
}

*:focus {
  outline: none;
}

/*-----line-hight-----*/
p,
li,
dl,
tr {
  line-height: 1.875;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.66;
}

strong {
  font-weight: 700;
}

/* リンク */
a,
a * {
  box-sizing: border-box;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-decoration: none;
  backface-visibility: hidden;
  transition: opacity 0.6s ease;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}

a:hover,
a:active {
  text-decoration: none;
  opacity: 0.7;
  filter: alpha(opacity=70);
}

/*phone*/
@media screen and (min-width: 1024px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/*class*/
.cmn-wrap {
  max-width: 1280px;
  width: 100%;
  padding-inline: 15px;
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .cmn-wrap {
    padding-inline: 40px;
  }
}
.cmn {
  /*display:none*/
}
.cmn-display__pcl--block {
  display: none !important;
}
@media screen and (min-width: 1800px) {
  .cmn-display__pcl--block {
    display: block !important;
  }
}
@media screen and (min-width: 1800px) {
  .cmn-display__pcl--none {
    display: none;
  }
}
.cmn-display__pc--block {
  display: none !important;
}
@media screen and (min-width: 1024px) {
  .cmn-display__pc--block {
    display: block !important;
  }
}
@media screen and (min-width: 1024px) {
  .cmn-display__pc--none {
    display: none;
  }
}
.cmn-display__pc-tb--block {
  display: none;
}
@media screen and (min-width: 768px) {
  .cmn-display__pc-tb--block {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .cmn-display__pc-tb--none {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .cmn-display__sp--block {
    display: none;
  }
}
.cmn-display__sp--none {
  display: none;
}
@media screen and (min-width: 768px) {
  .cmn-display__sp--none {
    display: block;
  }
}

/*============================================*/
body {
  background-color: #faf9f9;
}

.subhd {
  position: relative;
  overflow: hidden;
}
.subhd__ttl-inr {
  position: absolute;
  top: 55%;
  right: max(50% - 50vw, -150px);
  z-index: 2;
}
.subhd__ttl-txt-en {
  font-family: var(--en_font);
  color: #42321c;
  font-size: 6rem;
}
@media screen and (min-width: 768px) {
  .subhd__ttl-txt-en {
    width: 470px;
    font-size: 8rem;
  }
}
.subhd__ttl-txt-jp {
  font-family: var(--sub_font);
  font-size: 1.6rem;
  color: #b9a171;
  letter-spacing: 0.05em;
  font-weight: 500;
  position: absolute;
  top: 86%;
}
@media screen and (min-width: 768px) {
  .subhd__ttl-txt-jp {
    font-size: 1.8rem;
  }
}
.subhd__ttl-img {
  max-width: max-content;
  width: 85%;
  position: absolute;
  top: 47%;
  right: max(50% - 50vw, -174px);
  z-index: 1;
}
.subhd__bg {
  max-width: 1180px;
  max-height: 540px;
  height: 80vw; /*ここが効いてない*/
  margin-right: 15px;
}
@media screen and (min-width: 768px) {
  .subhd__bg {
    height: 540px;
    margin-right: 40px;
  }
}
@media screen and (min-width: 1280px) {
  .subhd__bg {
    margin-right: 0;
  }
}
.subhd__bg-img {
  height: 100%;
  object-fit: cover;
  border-bottom-right-radius: 200px;
}

.cmn-wrap {
  max-width: 1280px;
  width: 100%;
  padding-inline: 15px;
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .cmn-wrap {
    padding-inline: 40px;
  }
}
.cmn-sub__ttl-en {
  font-family: var(--en_font);
  color: #42321c;
  font-size: 3.6rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .cmn-sub__ttl-en {
    font-size: 5rem;
  }
}
.cmn-sub__ttl-jp {
  font-family: var(--sub_font);
  color: #b9a171;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  text-align: center;
  font-weight: 500;
  margin-bottom: clamp(4.5rem, 2.6rem + 5.09vw, 6.5rem); /*clampで可変させたい*/
}
@media screen and (min-width: 768px) {
  .cmn-sub__ttl-jp {
    font-size: 1.8rem;
  }
}
.cmn-table__tr {
  border-top: solid 1px #ccc;
  padding: 10px 0; /*仮*/
}
@media screen and (min-width: 768px) {
  .cmn-table__tr {
    display: flex;
    flex-wrap: wrap;
    padding: 20px 0; /*仮*/
  }
}
.cmn-table__tr:last-of-type {
  border-bottom: solid 1px #ccc;
}
.cmn-table__th {
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .cmn-table__th {
    width: 180px;
    padding: 0 50px;
  }
}
.cmn-table-st {
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .cmn-table-st {
    font-size: 1.6rem;
  }
}
.cmn-table__td {
  flex: 1;
}
.cmn-table__td-st {
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .cmn-table__td-st {
    font-size: 1.6rem;
  }
}

.store-catch {
  padding-top: clamp(8rem, 1.3rem + 17.81vw, 15rem); /*padding-block: clampで自動可変させたい*/
  position: relative;
}
.store-catch::before {
  content: "";
  width: 100%;
  height: 633px;
  background: url(/system_panel/uploads/images/img_store-catch-bg.jpg);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  position: absolute;
  z-index: -1;
  top: 0;
}
.store-catch__cont {
  position: relative;
}
.store-catch__cont-icon-08 {
  max-width: max-content;
  position: absolute;
  z-index: -2;
  width: 30%;
  top: 53%; /*calcで可変させたい*/
  left: -13%; /*clampで可変させたい*/
}
.store-catch__ttl-jp {
  font-family: var(--sub_font);
  font-size: 2.6rem;
  color: #42321c;
  text-align: center;
  letter-spacing: 0.05em;
  font-weight: 700;
  margin-bottom: clamp(4.8rem, 2.9rem + 5.09vw, 6.8rem); /*clampで可変させたい*/
}
@media screen and (min-width: 768px) {
  .store-catch__ttl-jp {
    font-size: 4rem;
  }
}
.store-catch__ttl-en {
  font-family: var(--en_font);
  font-size: 1.4rem;
  color: #b9a171;
  text-align: center;
  letter-spacing: 0.05em;
  margin-bottom: clamp(4.8rem, 2.9rem + 5.09vw, 6.8rem); /*clampで可変させたい*/
}
@media screen and (min-width: 768px) {
  .store-catch__ttl-en {
    font-size: 1.6rem;
  }
}
.store-catch__txt {
  color: #42321c;
  letter-spacing: 0.05rem;
  font-size: 1.6rem;
}
.store-catch__txt strong {
  font-weight: 400;
}
.store-catch__txt strong br {
  display: none;
}
@media screen and (min-width: 768px) {
  .store-catch__txt strong br {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .store-catch__txt {
    font-size: 1.8rem;
    text-align: center;
  }
}
.store-catch__box-item-media {
  padding-top: clamp(6rem, 1.2rem + 12.72vw, 11rem); /*clampで可変させたい*/
  text-align: center;
}
.store-catch__box-item-media-img {
  border-radius: 30px;
}

.store-overview {
  padding-top: clamp(10rem, 6.2rem + 10.18vw, 14rem); /*padding-block: clampで自動可変させたい*/
}
.store-overview__cont {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}
@media screen and (min-width: 1024px) {
  .store-overview__cont {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: stretch; /*同じ高さに揃える*/
    gap: 80px;
  }
}
.store-overview__cont-media {
  max-width: 570px;
  width: 80%; /*仮*/
}
@media screen and (min-width: 1024px) {
  .store-overview__cont-media {
    width: 50%; /*仮*/
  }
}
.store-overview__cont-media-img {
  border-radius: 30px;
}
.store-overview__cont-info {
  max-width: 550px;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .store-overview__cont-info {
    flex: 1;
    width: auto;
  }
}
.store-overview__cont-icon {
  max-width: max-content;
}
.store-overview__cont-icon-01 {
  position: absolute;
  z-index: -1;
  width: 30%;
  top: -12%; /*calcで可変させたい*/
  left: 1%; /*clampで可変させたい*/
}
.store-overview__cont-icon-02 {
  position: absolute;
  z-index: -1;
  width: 26%;
  top: -26%; /*calcで可変させたい*/
  right: max(50% - 50vw, -240px); /*clampで可変させたい*/
}
.store-overview__cont-icon-03 {
  position: absolute;
  z-index: -1;
  width: 30%;
  top: 46%; /*calcで可変させたい*/
  left: -18%; /*clampで可変させたい*/
}

.store-introduction__cont {
  padding-top: clamp(10rem, 6.2rem + 10.18vw, 14rem); /*padding-block: clampで自動可変させたい*/
  position: relative;
}
.store-introduction__cont-item {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  max-width: 1000px;
  margin-bottom: clamp(4.5rem, 2.6rem + 5.09vw, 6.5rem);
}
@media screen and (min-width: 1024px) {
  .store-introduction__cont-item {
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: stretch; /*同じ高さに揃える*/
    margin-inline: auto;
    gap: 80px;
  }
  .store-introduction__cont-item:nth-of-type(2n) {
    flex-direction: row;
  }
}
.store-introduction__cont-item:nth-of-type(2n + 1) .store-introduction__cont-item-set {
  flex-direction: row-reverse;
}
.store-introduction__cont-item-info {
  position: relative; /*?*/
  padding-top: 0;
}
@media screen and (min-width: 1024px) {
  .store-introduction__cont-item-info {
    padding-top: 68px;
    max-width: 380px;
    flex: 1;
  }
}
.store-introduction__cont-item-info-ttl {
  font-size: 1.9rem;
  letter-spacing: 0.05em;
  font-weight: 700;
  margin-bottom: clamp(3rem, 1.1rem + 5.09vw, 5rem);
}
@media screen and (min-width: 768px) {
  .store-introduction__cont-item-info-ttl {
    font-size: 2.1rem;
  }
}
.store-introduction__cont-item-info-txt {
  font-size: 1.4rem;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .store-introduction__cont-item-info-txt {
    font-size: 1.6rem;
  }
}
.store-introduction__cont-item-set {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.store-introduction__cont-item-set-img-01 {
  max-width: 500px;
  width: 100%; /*仮*/
  border-radius: 30px;
}
.store-introduction__cont-item-set-img-02 {
  max-width: 500px;
  width: 100%; /*仮*/
  border-radius: 30px;
}
.store-introduction__cont-item-set-label {
  font-family: var(--en_font);
  font-size: 1.8rem;
  writing-mode: vertical-lr;
}
.store-introduction__cont-icon {
  max-width: max-content;
}
.store-introduction__cont-icon-04 {
  position: absolute;
  z-index: -1;
  width: 15%;
  top: 4%;
  right: max(50% - 50vw, -220px);
}
.store-introduction__cont-icon-05 {
  position: absolute;
  z-index: -1;
  width: 30%;
  top: 29%;
  right: max(50% - 50vw, -318px);
}
.store-introduction__cont-icon-06 {
  position: absolute;
  z-index: -1;
  width: 15%;
  top: 61%;
  left: -8%;
}
.store-introduction__box-list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding-bottom: clamp(9rem, 3.3rem + 15.27vw, 15rem);
}
@media screen and (min-width: 768px) {
  .store-introduction__box-list {
    flex-direction: row;
    justify-content: center;
  }
}
.store-introduction__box-item-media {
  max-width: 400px;
}
@media screen and (min-width: 768px) {
  .store-introduction__box-item-media {
    width: calc((100% - 30px) / 2);
  }
}
@media screen and (min-width: 1024px) {
  .store-introduction__box-item-media {
    width: calc((100% - 60px) / 3);
  }
}
.store-introduction__box-item-media-img {
  border-radius: 30px;
}