@charset "utf-8";
/* CSS Document */

/*==================================================
  CSS CUSTOM PROPERTY
==================================================*/
:root {
  --width-content: 1200px;

  --color-main: #34B9BB;
  --color-red: #FF8500;
  --color-orange: #FF8500;
  --color-yellow: #FFF133;
  --color-ygreen: #8ECC11;
  --color-green: #1E8F6B;
  --color-blue: #1E4FEF;
  --color-lightblue: #34B9BB;
  --color-navy: #153BB8;
  --color-purple: #662D90;
  --color-pink: #f72b80;
  --color-salmon: #ff9898;
  --color-black: #111;
  --color-subblack: #333;
  --color-darkgray: #555;
  --color-gray: #777;
  --color-lightgray: #999;
  --color-coolgray: #ccc;
  --color-palegray: #F5F5F5;
  --color-palegreen: #F1F9EF;
  --color-paleorange: #ffefee;
  --color-paleblue: #e5ffff;

  --gutter-supernarrow: 20px;
  --gutter-narrow: 20px;
  --gutter-medium: 30px;
  --gutter: 50px;
  --gutter-wide: 80px;
  --gutter-superwide: 120px;

  --rad-common: 5px;
  --rad-button: 100vh;
  --rad-full: 100vh;

  --font-num: "Inter", Arial, Helvetica, sans-serif;
  --font-en: "Inter", Arial, Helvetica, sans-serif;

  --shadow-button: 4px 4px 0px rgba(0, 0, 0, 0.11);
}

@media only screen and (max-width: 767px) {
  :root {
    --gutter-supernarrow: 3%;
    --gutter-narrow: 5%;
    --gutter: 8%;
    --gutter-wide: 12%;
    --gutter-superwide: 20%;
  }
}

@media (min-width: 767px) {

  /* ▼スマホサイズでのみ架電可能▼ */
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

/*==================================================
  GENERAL SETTINGS
==================================================*/
* {
  margin: 0;
  padding: 0;
}

html {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", YuGothic, "Yu Gothic medium", Meiryo, "sans-serif";
  font-size: 10px;
  line-height: 1.6;
  background: #fff;
  color: var(--color-black);
}

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

body {
  font-size: 1.6rem;
  overflow-x: hidden;
  min-height: 100vh;
  min-height: -webkit-fill-available;
}

#main {
  display: block;
  word-break: break-word;
  position: relative;
}

a {
  text-decoration: none;
}

@media (any-hover:hover) {

  a:hover,
  a:active {
    text-decoration: none;
    filter: alpha(opacity=70);
    -webkit-transition: all .3s;
    transition: all .3s;
    -moz-opacity: 0.7;
    opacity: 0.7;
  }
}

/*bodyを固定*/
body.menu-open {
  overflow: hidden;
}


/*==================================================
  COMMON PARTS
==================================================*/
/* TEL */
.common__tel a {
  color: var(--color-main);
  font-size: clamp(3.6rem, 11vw, 5.2rem);
  font-weight: bold;
  font-family: var(--font-en);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
  line-height: 1;
  letter-spacing: 0.05em;
  /* 以下「ふどうさん　　いこう」用 */
  position: relative;
  padding-top: 0.2em;
  margin-top: 0.1em;
  width: fit-content;
  line-height: 1;
}

.common__tel a::before {
  content: "";
  width: 0.63em;
  height: auto;
  aspect-ratio: 33 / 44;
  background: url(../img/common/icon_tel_maincolor_01.svg) no-repeat center / contain;
  position: relative;
  top: 2px;
}

.common__tel a::after {
  content: "ふどうさん　　いこう";
  position: absolute;
  top: 0;
  right: 0.2em;
  display: block;
  font-size: 0.3em;
}

/* 一覧ページボタン */
.btn_archive {
  text-align: center;
}

.btn_archive a {
  display: block;
  width: 90%;
  max-width: 320px;
  height: 70px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid;
  padding: 20px 0;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1;
  text-decoration: none;
  border-radius: var(--rad-full);
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: var(--shadow-button);
  overflow: hidden;
  transition: all .3s;
}

.btn_archive a::after {
  content: '';
  display: block;
  width: 1rem;
  height: 1rem;
  border-top: 1px solid;
  border-right: 1px solid;
  position: absolute;
  top: 50%;
  right: 1.2em;
  transform: translateY(-50%) rotate(45deg);
}

.btn_archive a::before {
  content: "";
  background: var(--color-black);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 200%;
  height: 500%;
  transform: skewY(-30deg) scale(1, 0);
  transform-origin: left top;
  z-index: -1;
  transition: transform .3s ease-in-out .05s;
}

/* 赤色塗り */
.btn_archive--fillRed a {
  background: var(--color-red);
  border-color: var(--color-red);
  color: #fff;
}

.btn_archive--fillRed a::after {
  border-color: #fff
}

@media (any-hover:hover) {
  .btn_archive a:hover {
    color: #fff;
    opacity: 1;
  }

  .btn_archive a:hover::before {
    transform: skewY(-30deg) scale(1, 1);
  }

  .btn_archive--fillRed a:hover {
    border-color: var(--color-black);
  }
}

/* メインカラー塗り */
.btn_archive--fillMainColor a {
  color: #fff;
  background: var(--color-main);
  border-color: var(--color-main);
}

.btn_archive--fillMainColor a::before {
  background: #fff;
}

@media (any-hover:hover) {
  .btn_archive--fillMainColor a:hover {
    color: var(--color-main);
  }

  .btn_archive--fillMainColor a:hover::after {
    filter: none;
  }
}

/* 投稿アイテム矢印アイコン */
.item__link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  position: relative;
  padding-bottom: 15px;
}

.item__link--line::after {
  content: "";
  display: block;
  width: calc(100% - 40px);
  height: 1px;
  background: var(--color-black);
  position: absolute;
  bottom: 0;
  left: 0;
  transition: .3s;
}

.item__linkBtn {
  position: absolute;
  bottom: -15px;
  right: 0;
}

.item__linkBtn--notext {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  width: 31px;
  height: 31px;
}

.item__linkBtn::before {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 31px;
  height: 31px;
  aspect-ratio: 1 / 1;
  border-radius: var(--rad-full);
  border: 1px solid var(--color-black);
  background-color: #fff;
  transition: .3s;
}

.item__linkBtn::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background: url(../img/common/icon_arrow_black_thin_01.svg) no-repeat center / contain;
  position: absolute;
  right: 10px;
  bottom: 10px;
  transition: .3s;
}

@media (any-hover:hover) {
  .item__link:hover .item__linkBtn::before {
    border-color: var(--color-main);
    background: var(--color-main);
  }

  .item__link:hover .item__linkBtn::after {
    background: url(../img/common/icon_arrow_white_thin_01.svg) no-repeat center / contain;
  }

  .item__link--line:hover::after {
    background: var(--color-main);
  }
}

/* バナー */
.bannerWrap {
  text-align: center;
  margin: var(--gutter-superwide) auto;
  width: min(90%, var(--width-content));
}


.bannerWrap a img {
  transition: 0.3s;
}

.bannerWrap a:active {
  opacity: 1;
}

.bannerWrap a:active img {
  transform: scale(1.02);
}

@media (any-hover:hover) {
  .bannerWrap a:hover {
    opacity: 1;
  }

  .bannerWrap a:hover img {
    transform: scale(1.02);
  }
}

/* 来店予約ボタンの吹き出し */
.common__campaignFukidashi {
  position: absolute;
  top: -1.5em;
  font-size: 1.2rem;
  white-space: nowrap;
  background: #fff;
  color: var(--color-main);
  border-radius: var(--rad-full);
  padding: 0.5em 1.7em 0.5em 1.2em;
  line-height: 1;
  border: 2px solid var(--color-main);
  font-feature-settings: 'palt';
  letter-spacing: 0.05em;
  animation: dokidoki 2s ease-out infinite;
}

.common__campaignFukidashi::after {
  content: "";
  display: block;
  width: 10px;
  height: 6px;
  background-color: #fff;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
}

.common__campaignFukidashi::before {
  content: "";
  display: block;
  width: 12px;
  height: 7px;
  background-color: var(--color-main);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  bottom: -7px;
  left: 50%;
  transform: translateX(-50%);
}

.common__campaignFukidashiImg {
  width: 3em;
  height: auto;
  display: block;
  position: absolute;
  right: -1.5em;
  top: 50%;
  transform: translateY(-50%);
}


/* カタログバナー */
.bnrCatalog {
  width: min(1010px, 90%);
  margin: var(--gutter-superwide) auto var(--gutter-wide);
  border: 1px solid var(--color-gray);
  background: #fff;
  padding: 35px clamp(20px, 4vw, 40px) 35px clamp(60px, 16vw, 160px);
  position: relative;
  display: block;
  transition: transform .3s ease-in-out .05s;
  box-shadow: 10px 10px 0 0 rgba(0, 0, 0, 0.15);
}

.bnrCatalog__catch {
  background-color: var(--color-orange);
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
  width: 100px;
  height: 100px;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: var(--rad-full);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 1;
}

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

.bnrCatalog__catch__body .num {
  font-size: 30px;
  font-family: var(--font-en);
}

.bnrCatalog__catch__body .txt {
  display: inline-block;
  font-size: 12px;
}

.bnrCatalog__main {
  font-size: clamp(1.8rem, 2vw, 2.4rem);
  font-weight: 800;
  line-height: 1.8;
  color: var(--color-orange);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  max-width: 70%;
}

.bnrCatalog__logo {
  height: 2.4em;
  position: relative;
}

.bnrCatalog__logo img {
  width: auto;
  height: 100%;
}

.bnrCatalog__subTxt {
  width: 60%;
  font-weight: bold;
  font-size: clamp(1.2rem, 1.5vw, 1.4rem);
  line-height: 1.8;
  margin-top: 10px;
}

.bnrCatalog__btn {
  width: max(260px, 100%);
  position: absolute;
  right: 30px;
  bottom: 30px;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
}

.bnrCatalog__btn::after {
  content: "";
  width: 340px;
  max-width: 33%;
  height: auto;
  aspect-ratio: 601 / 474;
  background: url(../img/common/img_catalog_01.webp) no-repeat center / contain;
  position: absolute;
  right: 0;
  bottom: 3px;
  z-index: -1;
}

.bnrCatalog__btnInner {
  display: block;
  width: 320px;
  max-width: 33%;
  margin: 0 0 0 auto;
  background: #fff;
  border: 1px solid;
  padding: 20px 0;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1;
  text-decoration: none;
  border-radius: var(--rad-full);
  box-shadow: var(--shadow-button);
  text-align: center;
  position: relative;
  z-index: 2;
  overflow: hidden;
  transition: .3s;
}

.bnrCatalog__btnInner::after {
  content: '';
  display: block;
  width: 1rem;
  height: 1rem;
  border-top: 1px solid;
  border-right: 1px solid;
  position: absolute;
  top: 50%;
  right: 1.2em;
  transform: translateY(-50%) rotate(45deg);
}

.bnrCatalog__btnInner::before {
  content: "";
  background: var(--color-black);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 200%;
  height: 500%;
  transform: skewY(-30deg) scale(1, 0);
  transform-origin: left top;
  z-index: -1;
  transition: transform .3s ease-in-out .05s;
}

@media (any-hover:hover) {
  .bnrCatalog:hover {
    opacity: 1;
    transform: scale(1.02);
  }

  .bnrCatalog:hover .bnrCatalog__btnInner {
    color: #fff;
    border-color: var(--color-black);
  }

  .bnrCatalog:hover .bnrCatalog__btnInner::before {
    transform: skewY(-30deg) scale(1, 1);
  }
}

/* LINE公式アカウントバナー */
.bnrLine {
  width: min(1010px, 90%);
  margin: var(--gutter-wide) auto;
  border: 5px solid var(--color-linegreen);
  border-radius: var(--rad-common);
  background: #fff;
  padding: 0 clamp(20px, 4vw, 40px) 0 clamp(20px, 2vw, 30px);
  position: relative;
  display: flex;
  align-items: center;
  gap: clamp(10px, 2vw, 30px);
  transition: transform .3s ease-in-out .05s;
}

.bnrLine::before {
  content: "";
  display: block;
  width: 167px;
  height: auto;
  aspect-ratio: 167 / 175;
  background: url(../img/common/img_lineOfficialAccount_01.webp) no-repeat center / contain;
  position: relative;
  margin-top: 22px;
}

.bnrLine__txtBox {
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.5vw, 20px);
}

.bnrLine__main {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: flex-start;
  letter-spacing: 0.05em;
}

.bnrLine__mainCaption {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.4;
}

.bnrLine__logo {
  max-height: 40px;
  height: clamp(20px, 3.5vw, 40px);
}

.bnrLine__subTxt {
  font-size: clamp(1.2rem, 3.3vw, 1.4rem);
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.05em;
}

.bnrLine__btnBox {
  position: absolute;
  right: 30px;
  bottom: 30px;
}

.bnrLine__btnCaption {
  text-align: center;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.05em;
  font-size: 1.4rem;
  margin: 0 auto 12px;
  width: fit-content;
  position: relative;
  z-index: 1;
}

.bnrLine__btnCaption::before {
  content: "";
  display: block;
  width: 17px;
  height: auto;
  aspect-ratio: 17 / 12;
  background-color: var(--color-main);
  z-index: -1;
  position: absolute;
  left: 50%;
  bottom: 0;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  transform: translate(-50%, calc(100% - 3px));
}

.bnrLine__btnCaption::after {
  content: "";
  display: block;
  width: 15px;
  height: auto;
  aspect-ratio: 17 / 12;
  background-color: #fff;
  position: absolute;
  left: 50%;
  bottom: 0;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  transform: translate(-50%, calc(100% - 4px));
  z-index: 1;
}

.bnrLine__btnCaptionInner {
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 224px;
  height: 66px;
  border: 2px solid var(--color-black);
  border-radius: 100vh;
}

.bnrLine__btnInner {
  display: block;
  width: clamp(200px, 29vw, 280px);
  height: auto;
  aspect-ratio: 280 / 60;
  margin: 0 auto;
  color: #fff;
  background: var(--color-linegreen);
  border: 2px solid var(--color-linegreen);
  font-weight: bold;
  font-size: 1.6rem;
  border-radius: var(--rad-common);
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  z-index: 2;
  padding-right: 10px;
  overflow: hidden;
  transition: color .3s ease-in-out .1s;
}

.bnrLine__btnInner::after {
  content: "";
  width: 14px;
  height: 14px;
  background: url(../img/common/icon_arrow_linegreen_normal_01.svg) no-repeat center / contain;
  filter: grayscale() saturate(0) brightness(30);
  position: absolute;
  top: 50%;
  right: 8%;
  transform: translateY(-50%);
  transition: right .3s ease-in-out .1s, filter .3s ease-in-out .1s;
}

.bnrLine__btnInner::before {
  content: "";
  background: #fff;
  display: block;
  width: calc(100% + 10px);
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0, 1);
  transform-origin: right top;
  z-index: -1;
  transition: transform .3s ease-in-out .1s;
}

@media (any-hover:hover) {
  .bnrLine:hover {
    opacity: 1;
    transform: scale(1.02);
  }

  .bnrLine:hover .bnrLine__btnInner {
    color: var(--color-linegreen);
    border-color: var(--color-linegreen);
  }

  .bnrLine:hover .bnrLine__btnInner::before {
    transform-origin: left top;
    transform: translate(-50%, -50%) scale(1, 1);
  }

  .bnrLine:hover .bnrLine__btnInner::after {
    right: 6%;
    filter: none;
  }

}

/* =========================================
  回遊コンテンツ Summary（まとめ＋スライダー＋ボタン）
========================================= */

/* まとめブロック全体 */
.summaryBox {
  margin: var(--gutter) auto;
  text-align: center;
  font-weight: bold;
}

/* 3行構成のテキストラッパー */
.summaryBox__txtWrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: clamp(2rem, 5vw, 3rem);
  width: 96%;
  margin: 0 auto;
}

/* 1行目「住まいに関することなら」 */
.summaryBox__top {
  display: inline-block;
  position: relative;
  font-size: 1em;
  background: var(--color-main);
  color: #fff;
  padding: .5em 1em;
  line-height: 1;
  margin-bottom: .5em;
}

/* 2行目・3行目 */
.summaryBox__middle {
  line-height: 1.2;
}

.summaryBox__bottom {
  font-size: 1em;
  line-height: 1.2;
}

.summaryBox__bottomBig {
  font-weight: 800;
  font-size: 1.5em;
}

/* スライダー（ロゴ画像など） */
.summary__sliderBox {
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-block: var(--gutter-narrow);
}

.summary__sliderBox .summary__sliderBox__item {
  animation: slider 45s linear 1s both infinite;
}

.summary__sliderBox .summary__sliderBox__item img {
  width: auto;
  max-width: initial;
  height: clamp(120px, 20vw, 200px);
}

/* スライドしていくアニメーション */
@keyframes slider {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

/* ボタン周り */
.summaryBox__btnWrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px 30px;
  flex-wrap: wrap;
  margin-top: var(--gutter);
}

.summaryBox__btnWrap a {
  width: 280px;
  height: 70px;
}


/*==================================================
  HEADER
==================================================*/
header {
  background: #fff;
}

header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 10000;
  animation: header-slideIn 0.5s;
}

@keyframes header-slideIn {
  0% {
    transform: translateY(-200px);
  }

  100% {
    transform: translateY(0);

  }
}

.header__inner {
  max-width: var(--width-content);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.header__logo {
  width: 350px;
  max-width: 80%;
  padding: clamp(5px, 1vw, 10px) 0;
}

.header__logo a {
  display: block;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  max-width: 350px;
  /*ロゴ画像の幅に合わせる*/
  aspect-ratio: 675 / 87;
  background: url(../img/common/logo_site_01.webp) no-repeat left center;
  background-size: contain;
}

.header__pcContactBox {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  margin: 5px 0 20px;
}

.header__pcBtnWrap {
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}

.header__pcBtn a {
  display: flex;
  width: 150px;
  text-align: center;
  justify-content: center;
  align-items: center;
  padding: 10px 10px 10px 5px;
  background: #fff;
  border: 1px solid;
  border-radius: var(--rad-full);
  text-decoration: none;
  line-height: 1;
  font-size: 12px;
  font-weight: 500;
  box-shadow: var(--shadow-button);
  position: relative;
}

.header__pcBtn a::before {
  content: "";
  width: 1.1em;
  height: 1.1em;
  display: inline-block;
  margin-right: 5px;
  background: url(../img/common/icon_mail_black_01.svg) no-repeat center / contain;
  transition: .3s;
}

.header__pcBtn a::after {
  content: '';
  display: block;
  width: .8rem;
  height: .8rem;
  border-top: 1px solid;
  border-right: 1px solid;
  position: absolute;
  top: 50%;
  right: 1.2em;
  transform: translateY(-50%) rotate(45deg);
}

@media (any-hover:hover) {
  .header__pcBtn a:hover {
    opacity: 1;
    background: var(--color-black);
    color: #fff;
  }

  .header__pcBtn a:hover::before {
    background: url(../img/common/icon_mail_white_01.svg) no-repeat center / contain;
  }
}

.header__telBox {
  font-size: clamp(1.4rem, 1.6vw, 2rem);
  padding-left: 1.8em;
  position: relative;
}

.header__telShop {
  font-weight: bold;
  font-size: .6em;
}

.header__telNum {
  font-family: var(--font-en);
  font-weight: bold;
  line-height: 1;
}

.header__telBox::before {
  content: "";
  display: block;
  width: 1.7em;
  height: 1.7em;
  background: #fff url(../img/common/icon_tel_black_01.svg) no-repeat center / 50% auto;
  border: 1px solid;
  border-radius: var(--rad-full);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

/*
  ===== globalnavigation ==========================================
  */

#navWrap {
  width: 100%;
}

.header__pcNavWrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--width-content);
  margin-inline: auto;
}

.pcNavi__list {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  font-size: clamp(1.2rem, 1.4vw, 1.4rem);
}

.pcNavi__item>a {
  display: block;
  width: 100%;
  padding: 20px clamp(5px, 1.2vw, 20px);
  text-align: center;
  font-weight: bold;
  text-decoration: none;
  white-space: nowrap;
}

@media (any-hover:hover) {

  .pcNavi__item:hover,
  .pcNavi__item>a:hover {
    color: var(--color-main);
    opacity: 1 !important;
  }
}

.pcNavi__item--parent {
  list-style: none;
  padding: 0;
  position: relative;
}

.pcNavi__childList {
  position: absolute;
  width: 100%;
  display: block;
  z-index: 999;
}

.pcNavi__childItem {
  display: block;
  overflow: hidden;
  width: 100%;
  height: 0;
  -moz-transition: .5s;
  -webkit-transition: .5s;
  -o-transition: .5s;
  -ms-transition: .5s;
  transition: .5s;
}

@media (any-hover:hover) {
  .pcNavi__item:hover .pcNavi__childItem{
    overflow: visible;
    height: 54px;
    color: #fff;
    background-color: var(--color-black);
  }

  .pcNavi__item:hover .pcNavi__childItem:not(:last-child){
    border-bottom: 1px solid #fff;
  }
}

.pcNavi__childItem>a {
  color: #fff;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  line-height: 1;
}

@media (any-hover:hover) {
  .pcNavi__childItem a:hover {
    opacity: 1;
    color: #fff;
    background: var(--color-main);
  }
}

/*btnBox*/
.pcNavi__btnBox {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4%;
}

.pcNavi__btn {
  width: clamp(150px, 24vw, 240px);
}

.pcNavi__btnLink {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  margin: 0 auto;
  background: var(--color-red);
  color: #fff;
  padding: 16px 0;
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1.3;
  text-decoration: none;
  padding-right: 1rem;
  border-radius: var(--rad-full);
  position: relative;
  box-shadow: var(--shadow-button);
}

.pcNavi__btnLink.btn_cta--shop {
  background: var(--color-main);
}

.pcNavi__btn__ico {
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  background: url(../img/common/icon_user_white_01.svg) no-repeat center / contain;
  margin-right: 1rem;
}

.pcNavi__btnLink.btn_cta--shop .pcNavi__btn__ico {
  width: 1.3em;
  height: 1.3em;
  background: url(../img/common/icon_shop_white_01.svg) no-repeat center / contain;
}

.pcNavi__btnLink::after {
  content: '';
  display: block;
  width: 1rem;
  height: 1rem;
  border-top: 1px solid;
  border-right: 1px solid;
  position: absolute;
  top: 50%;
  right: 1.2em;
  transform: translateY(-50%) rotate(45deg);
}

@media (any-hover:hover) {
  .pcNavi__btnLink:hover {
    opacity: 1;
    background: var(--color-black);
    border-color: black;
  }
}

/*
  ===== loginfixbox ==========================================
  */
.pcMemberNavi.fixed {
  position: fixed;
  top: 0;
  z-index: 10000;
  width: 100%;
}

.pcMemberNavi {
  margin: 0 auto;
  padding: 5px 10px;
  background: var(--color-palegray);
  text-align: center;
}

.pcMemberNavi__box {
  margin: 0 auto;
}

.pcMemberNavi__ttl {
  width: 160px;
  text-align: center;
  vertical-align: middle;
  font-weight: bold;
  border-right: 1px dotted var(--color-lightgray);
}

.pcMemberNavi__itemBox {
  vertical-align: middle;
  padding: 2px 20px;
  text-align: center;
}

.pcMemberNavi__inputWrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pcMemberNavi__item {
  margin-left: 10px;
  font-weight: bold;
  display: inline-block;
  vertical-align: middle;
  letter-spacing: normal;
}

.pcMemberNavi__item input[type="email"],
.pcMemberNavi__item input[type="password"] {
  text-align: left;
  font-size: 1.3rem;
  padding: 5px;
}

/*ログイン時*/
.pcMemberNavi__item--link {
  margin-left: 20px;
  padding-left: 15px;
  font-weight: bold;
  background: url(../img/common/icon01.webp) no-repeat left center;
  background-size: 8px auto;
}

.pcMemberNavi__item--link a{
  color: var(--color-red);
  text-decoration: underline;
}

input[type="submit"].pcMemberNavi__loginBtn,
input[type="submit"].pcMemberNavi__logoutBtn {
  border: none;
  padding: 8px 10px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
  background: var(--color-gray);
  border-radius: var(--rad-button);
}

/*==================================================
  FOOTER
==================================================*/
/*footFix*/
.footFix {
  width: 100%;
  position: fixed;
  bottom: 0;
  z-index: 999;
}

.footFix .ancPagetop {
  width: 40px;
  height: 40px;
  border: 2px solid;
  background: #fff;
  position: absolute;
  right: 10px;
  bottom: 10px;
  cursor: pointer;
  transition: all .3s;
}

.footFix .ancPagetop:hover {
  opacity: .6;
}

.footFix .ancPagetop__txt {
  display: block;
  width: 100%;
  height: 100%;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

.footFix .ancPagetop__txt::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-top: 2px solid;
  border-right: 2px solid;
  transform: translate(-50%, -50%) rotate(-45deg);
  position: absolute;
  top: calc(50% + 2px);
  left: 50%;
}

/*電話番号帯*/
.footerTelBox {
  background: var(--color-main);
  color: #fff;
  padding: var(--gutter-narrow) 0;
}

.footerTelBox__ttl {
  font-size: clamp(1.4rem, 2vw, 2rem);
  text-align: center;
}

.footerTelBox__ttl__icon {
  display: inline-block;
  border: 1px solid;
  border-radius: var(--rad-full);
  padding: 5px 20px;
  line-height: 1.2;
}

.footerTelBox__itemList {
  margin: var(--gutter-narrow) auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 50px;
}

.footerTelBox__name {
  display: inline-block;
  background: #fff;
  color: var(--color-main);
  padding: 5px 10px;
  font-size: clamp(1.6rem, 2vw, 2rem);
}

.footerTelBox__tel {
  font-size: clamp(2.8rem, 5vw, 5.6rem);
  font-family: var(--font-en);
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1;
  position: relative;
  margin-block: 10px;

}

.footerTelBox__tel::before {
  content: "";
  display: inline-block;
  width: clamp(2.8rem, 4.8vw, 5.6rem);
  height: clamp(2.8rem, 4.8vw, 5.6rem);
  background: #fff url(../img/common/icon_tel_maincolor_01.svg) no-repeat center / 50% auto;
  border: 1px solid;
  border-radius: var(--rad-full);
  vertical-align: middle;
}

.footerTelBox__tel a {
  vertical-align: middle;
}

.footerTelBox__time {
  line-height: 1.2;
  font-size: clamp(1.4rem, 2vw, 2rem);
}


.footer__wrap {
  display: flex;
  justify-content: space-between;
  padding: var(--gutter) 0;
}

.footerSiteInfo {
  width: 48%;
}

.footerSiteInfo__logo {
  width: 80%;
  max-width: 460px;
}

.footerSiteInfo__logo a {
  display: block;
  width: 100%;
  height: 100%;
}

.footerSiteInfo__telBox__itemList {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.footerSiteInfo__telBox__item {
  min-width: 180px;
  padding-left: 36px;
  position: relative;
}

.footerSiteInfo__telBox__name {
  font-weight: bold;
  font-size: 16px;
}

.footerSiteInfo__telBox__tel {
  font-family: var(--font-en);
  font-weight: bold;
  font-size: 28px;
  line-height: 1;
}

.footerSiteInfo__telBox__item::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background: #fff url(../img/common/icon_tel_black_01.svg) no-repeat center / 50% auto;
  border: 1px solid;
  border-radius: var(--rad-full);
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

/*不使用：フッターログインボタン*/
.footerActions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px auto 50px;
  max-width: 1080px;
}

.footerActions__btnWrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  width: 40%;
  max-width: 410px;
  margin-right: 2%;
}

.footerActions__btn {
  width: calc((100% - 10px) / 2);
  max-width: 200px;
  text-align: center;
  padding: 10px 0;
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  border-radius: 3px;
  position: relative;
}

.footerActions__btn::after {
  position: absolute;
  content: '';
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-left: 5px solid #fff;
  top: 50%;
  right: 3%;
  transform: translateY(-50%);
}

.footerActions__btn--emember {
  border: 1px solid var(--color-red);
  background-color: var(--color-red);
}

.footerActions__btn--shoprsv {
  background-color: var(--color-green);
  border: 1px solid var(--color-green);
}

.footerActions__logoutForm {
  width: 200px;
}

input[type="submit"].footerActions__logoutBtn {
  border: 1px solid var(--color-darkgray);
  background: var(--color-darkgray);
  padding: 12px;
  width: 100%;
  display: inline-block;
  color: #fff;
  font-weight: bold;
  text-align: center;
  border-radius: 3px;
}

.footerSitemap {
  display: flex;
  /* Safari */
  justify-content: space-between;
  width: 48%;
}

.footerSitemap__item {
  line-height: 1;
  font-size: clamp(1.2rem, 1.4vw, 1.4rem);
  margin-bottom: 1.5em;
}

.footerSitemap__item a {
  text-decoration: none;
}

@media (any-hover:hover) {
  .footerSitemap__item a:hover {
    text-decoration: underline;
  }
}

/* footerExLinkBox */
.footerExLinkBox {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px 20px;
  margin-bottom: var(--gutter);
  flex-wrap: wrap;
}

.footerExLinkBox__link {
  width: 270px;
  max-width: 60%;
}

/* footerGroupLinkBox */
.footerGroupLinkBox {
  width: 100%;
  padding: 20px 5px 15px;
}

.footerGroupLinkBox__innerWire {
  width: min(100%, var(--width-content));
  margin: 0 auto;
}

.footerGroupLinkBox__ttl {
  font-size: clamp(1.8rem, 2vw, 2rem);
  font-weight: bold;
  margin-bottom: 5px;
  text-align: center;
}

.footerGroupLinkBox__inner {
  display: flex;
  justify-content: center;
  gap: 0.5em 1.5em;
  font-size: 1.2rem;
  flex-wrap: wrap;
}

.footerGroupLinkBox___link {
  padding-left: 0.7em;
  position: relative;
}

.footerGroupLinkBox___link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: auto;
  height: 0.6em;
  aspect-ratio: 2 / 3;
  background-color: currentColor;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.footerCopy {
  display: block;
  width: 100%;
  padding: 20px 0 80px;
  font-style: normal;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  position: relative;
}

/* recaptcha */
.grecaptcha-badge {
  bottom: 120px !important;
  overflow: hidden;
  z-index: 1000;
}


/*sideFix*/
.sideFix {
  position: fixed;
  bottom: 120px;
  right: 0;
  z-index: 1000;
  background: #fff;
  /*display: none;*/
}

.sideFix__item {
  width: 260px;
  position: relative;
}

.sideFix__link {
  display: block;
}

.sideFix__item img {
  width: 100%;
  height: auto;
}

.sideFix__close {
  font-size: 20px;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  /*border: 1px solid var(--color-main);*/
  background: #fff;
  border-radius: 30px;
  position: absolute;
  top: -10px;
  right: 5px;
  cursor: pointer;
  transition: all .3s;
  opacity: .8;
}

.sideFix__close:hover {
  opacity: 1;
}

/*pcFooterMenu*/
.pcFooterMenu {
  position: fixed;
  bottom: 0;
  right: 60px;
  z-index: 1000;
}

.pcFooterMenu__list {
  display: flex;
  align-items: stretch;
  background: #fff;
  border-radius: 10px 10px 0 0;
  border: 1px solid #fff;
  border-bottom: none;
  width: calc(100vw - 80px);
  max-width: 640px;
  height: 60px;
}

.pcFooterMenu__item {
  width: 34%;
  height: 100%;
}

.pcFooterMenu__item:first-child {
  width: 32%;
}

.pcFooterMenu__link {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  color: #fff;
  font-weight: 600;
  background: var(--color-black);
  position: relative;
}

.pcFooterMenu__item:first-child .pcFooterMenu__link {
  border-radius: 10px 0 0 0;
}

.pcFooterMenu__item:last-child .pcFooterMenu__link {
  border-radius: 0 10px 0 0;
}

.pcFooterMenu__link--line {
  color: #06C755;
  background: #fff;
  border-top: 2px solid #06C755;
  border-left: 2px solid #06C755;
}

.pcFooterMenu__link--instagram {
  background: url(../img/common/bg_instagram_01.webp) no-repeat center / cover;
}

.pcFooterMenu__link::after {
  content: '';
  display: block;
  width: 1rem;
  height: 1rem;
  border-top: 1px solid;
  border-right: 1px solid;
  position: absolute;
  top: 50%;
  right: 1.6rem;
  transform: translateY(-50%) rotate(45deg);
}

.pcFooterMenu__link--line::before {
  content: "";
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  background: url(../img/common/icon_line.svg) no-repeat center / contain;
  margin-right: 10px;
}

.pcFooterMenu__link--instagram::before {
  content: "";
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  background: url(../img/common/icon_instagram_white.svg) no-repeat center / contain;
  margin-right: 10px;
}

.pcFooterMenu__link--shop {
  background: var(--color-main);
}

.pcFooterMenu__link--shop::before {
  content: "";
  display: inline-block;
  width: 1.2em;
  height: 1.2em;
  background: url(../img/common/icon_shop_white_01.svg) no-repeat center / contain;
  margin-right: 10px;
}

/*==================================================
  MAIN
==================================================*/
/*************** メインタイトル ****************/
.ttlWrap {
  background: #fff;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  height: 180px;
}

.mainTtl {
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  padding-bottom: 10px;
}

.mainTtl::before {
  content: "";
  display: block;
  width: 120px;
  height: 4px;
  background: var(--color-main);
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.mainTtl::after {
  content: "";
  display: block;
  width: 120px;
  height: 4px;
  background: var(--color-black);
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  clip-path: polygon(49% 100%, 51% 0, 100% 0, 100% 100%);
}

#container {
  margin: 0 auto !important;
}

/*投稿box*/
#container .page_title01 {
  text-align: center;
  font-size: 40px;
  line-height: 1.0;
  letter-spacing: 0.08em;
  font-weight: bolder;
  background: url('../img/common/page_title01_bg.webp') no-repeat top center;
}

/*--BREAD--*/
#bread {
  width: min(var(--width-content), 100%);
  margin: 0 auto;
  padding: 5px 0;
  font-size: clamp(1.2rem, 1.5vw, 1.3rem);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

#bread>span:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border-top: 1px solid #666;
  border-right: 1px solid #666;
  transform: rotate(45deg);
  margin-right: 5px;
}

#bread a {
  display: inline-block;
  margin-right: 5px;
  padding-left: 5px;
  text-decoration: underline;
}


@media (any-hover:hover) {
  #bread a:hover {
    text-decoration: none;
  }
}

/*投稿box*/
#postbox {
  width: 100%;
  margin: 0 auto;
  margin-bottom: var(--gutter);
}


/*サブタイトル*/
#main .secTtl {
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  font-weight: bold;
  padding: .5em 0;
  border-bottom: solid 2px var(--color-main);
  line-height: 1.3;
  margin-bottom: 1em;
}

#postbox input,
#postbox textarea,
#postbox select {
  margin: 0 5px;
}

#postbox .wp-caption {
  max-width: 100% !important;
}

/*(開閉タイトル)*/
.oc_bar01,
.oc_bar01_open,
.srchbox01 .selectbox01 .selectbox_ttl,
.srchbox01 .selectbox01 .selectbox_ttl_open {
  cursor: pointer;
}

.oc_bar01,
.oc_bar01_open,
.srchbox01 .selectbox01 .selectbox_ttl,
.srchbox01 .selectbox01 .selectbox_ttl_open,
.srchbox01 .selectbox01 h3 {
  cursor: pointer;
  margin: 10px 0;
  font-size: 1.6em;
  font-weight: bold;
  padding-bottom: 10px;
}

.oc_bar01_open:after,
.oc_bar01:after,
.srchbox01 .selectbox01 .selectbox_ttl_open:after,
.srchbox01 .selectbox01 .selectbox_ttl:after {
  cursor: pointer;
  line-height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  content: "＋";
  width: 1.6em;
  aspect-ratio: 1;
  float: right;
  color: #fff;
  border-radius: var(--rad-button);
  text-shadow: none !important;
  background: var(--color-main);
  transition: all .3s;
}

.oc_bar01:after,
.srchbox01 .selectbox01 .selectbox_ttl:after {
  content: "－";
  background: var(--color-lightgray);
}

.recaptcha {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

/*投稿画像*/
.noticePage img,
.gallery_renovationPage img .qaPage img .staffPage img .columnPage img {
  max-width: 100%;
  height: auto;
}


/*==================================================
  slick
==================================================*/
.slick-track {
  display: flex !important;
}

.slick-slide {
  height: auto !important;
}

/*arrow*/
.slick-arrow::before {
  content: "" !important;
  position: absolute;
  top: 0;
  width: 50px;
  height: 50px;
}

.slick-arrow.slick-prev,
.slick-arrow.slick-prev::before {
  left: 0 !important;
}

.slick-arrow.slick-next,
.slick-arrow.slick-next::before {
  right: 0 !important;
}

.slick-next,
.slick-prev {
  z-index: 99 !important;
  width: 50px !important;
  height: 50px !important;
}

.slick-next::before {
  background: url(../img/common/arrow_right.svg) no-repeat center !important;
  background-size: contain !important;
}

.slick-prev::before {
  background: url(../img/common/arrow_left.svg) no-repeat center !important;
  background-size: contain !important;
}

.slick-dots li,
.slick-dots li button {
  width: 16px !important;
  height: 16px !important;
}

.slick-dots li button:before {
  content: "" !important;
  width: 13px !important;
  height: 13px !important;
  background: #fff;
  border: 1px solid var(--color-gray);
  border-radius: 8px;
  opacity: 1 !important;
}

.slick-dots li.slick-active button:before {
  background: var(--color-black);
  border-color: var(--color-black);
}

.slick-dotted.slick-slider {
  margin-bottom: 0 !important;
}

/*==================================================
  shopInfoBox
==================================================*/
.shopInfoBox__ttl {
  width: 100%;
  max-width: var(--width-content);
  margin: var(--gutter) auto;
  font-size: clamp(2rem, 4.2vw, 4rem);
  font-weight: bold;
  background: var(--color-main);
  color: #fff;
  padding: .5em;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.4;
}

.shopInfoBox__ttl--sub {
  font-size: .8em;
}

.shopInfoBox__inner {
  width: 100%;
  margin: 0 auto var(--gutter-superwide);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.shopInfoBox__imgBox {
  width: 50%;
}

.shopInfoBox__imgList {
  position: relative;
}

.shopInfoBox__img {
  text-align: center;
}

.shopInfoBox .slick-list.draggable {
  width: 100%;
  overflow: hidden;
}

/*-- 店舗画像slick サムネイル--*/
.shopInfoBox .slick-slider {
  height: auto !important;
  -webkit-backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
}

.shopInfoBox .thumImages .slick-track {
  transform: unset !important;
}

.shopInfoBox .thumImages {
  position: relative;
  overflow: hidden;
}

.shopInfoBox .thumImages .slick-arrow::before {
  top: 20%;
  width: 15px;
}

.shopInfoBox .thumImages .shopThumImage {
  margin: 10px 2px;
  width: 25%;
  overflow: hidden;
}

.shopInfoBox .thumImages .shopThumImage:hover {
  cursor: pointer;
}

.shopInfoBox .thumImages .shopThumImage img {
  opacity: .5;
}

.shopInfoBox .thumImages .shopThumImage.slick-current img {
  opacity: 1;
}

.shopInfoBox__dataBox {
  width: 50%;
  padding-left: 30px;
  font-size: clamp(1.3rem, 1.4vw, 1.6rem);
}

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

.shopInfoBox__shopName {
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  font-weight: bold;
  padding-left: .5em;
  border-left: 5px solid var(--color-main);
}

.shopInfoBox__dataWrap {
  display: flex;
  align-items: center;
  border-bottom: dotted 1px #CCC;
}

.shopInfoBox__dataTtl {
  max-width: 180px;
  width: 40%;
  text-align: center;
  font-weight: bold;
  padding: 1em 1.6em;
  flex-shrink: 0;
}

.shopInfoBox__data {
  flex-grow: 1;
  padding: 1em 1.6em;
}

.shopInfoBox__snsList {
  display: flex;
  margin-left: 1em;
}

.shopInfoBox__snsList a {
  display: block;
  width: 32px;
  margin: 10px 5px;
}

.shopInfoBox__shopCommentBox {
  width: 100%;
  margin-top: var(--gutter-narrow);
  background: var(--color-palegray);
  padding: 1em;
  font-size: clamp(1.3rem, 1.4vw, 1.5rem);
}

.shopInfoBox__map {
  width: 100%;
  height: 250px;
  margin-top: var(--gutter);
}

/*==================================================
  indexShopBox
==================================================*/
.indexShopBox {
  padding-bottom: 0;
}

.indexShopBox__inner {
  width: min(100%, 1200px);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}

.indexShopBox__imgBox {
  width: min(100%, 600px);
  max-width: 60%;
  height: auto;
  aspect-ratio: 600 / 490;
  flex-shrink: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.indexShopBox__imgBox--empty {
  font-family: var(--font-en);
  font-weight: 500;
  font-size: clamp(3rem, 10vw, 6rem);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(0, 0, 0, 0.3);
  background: url(../img/index/bg_shopinfo_noimage_01.webp) no-repeat center / cover;
}

.indexShopBox__img {
  width: calc((100% - 10px) / 2);
  height: auto;
  aspect-ratio: 295 / 240;
  text-align: center;
  background: var(--color-lightgray);
}

.indexShopBox__img--empty {
  background: var(--color-lightgray);
}

.indexShopBox__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.indexShopBox__infoBox {
  width: 100%;
  padding-left: clamp(20px, 3vw, 40px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.indexShopBox__ttl {
  margin-bottom: 20px;
  font-size: clamp(1.4rem, 1.3vw, 1.6rem);
}

.indexShopBox__ttlEn {
  color: var(--color-main);
  font-weight: bold;
  font-size: 3.1em;
  filter: drop-shadow(5px 5px 0 #eee);
  margin-right: 5px;
  font-family: var(--font-en);
  line-height: 1;
}

.indexShopBox__ttlJa {
  font-weight: bold;
  vertical-align: text-bottom;
  display: inline-block;
}

.indexShopBox__item:not(:first-child) {
  margin-top: var(--gutter);
}

.indexShopBox__itemTtlWrap {
  font-size: 2rem;
  display: flex;
  align-items: center;
  margin-bottom: 1.25em;
  line-height: 1.2;
}

.indexShopBox__itemTtl {
  font-weight: bold;
}

.indexShopBox__snsList {
  display: flex;
  margin-left: 15px;
  gap: 10px;
}

.indexShopBox__snsList a {
  width: 20px;
}

.indexShopBox__itemDataIcon {
  height: 1.14em;
  width: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  margin-right: 8px;
  margin-top: 2px;
}

.indexShopBox__itemData {
  font-size: 1.4rem;
  margin-bottom: 15px;
  line-height: 1.4;
  font-weight: 500;
  display: flex;
  letter-spacing: 0;
}

.indexShopBox__itemData--comment {
  line-height: 1.5;
  letter-spacing: 0;
  background: var(--color-palegray);
  border: 10px solid var(--color-palegray);
}

.indexShopBox__itemData--commentOmit {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 3em;
}

.indexShopBox__linkList {
  display: flex;
  justify-content: center;
  gap: 2%;
  width: 100%;
  margin-block: var(--gutter);
}

.indexShopBox__shopBtnWrap {
  width: 100%;
  margin-top: 2rem;
}

.indexShopBox__shopBtnWrap .indexShopBox__shopBtn{
  margin-left: 0;
}

.indexShopBox__shopBtnWrap .indexShopBox__shopBtn--reserve {
  background: var(--color-main);
  border-color: var(--color-main);
  color: #fff;
}

.indexShopBox__shopBtnWrap .indexShopBox__shopBtn--reserve:hover {
  border-color: var(--color-black);
}

.indexShopBox__link {
  width: 32%;
}

.indexShopBox__link a{
  width: 100%;
  max-width: 100%;
}


/*==================================================
  コンポーネント-先取りリスト
==================================================*/
.c-sakidoriList {
  display: flex;
  justify-content: center;
  gap: 40px 30px;
  flex-wrap: wrap;
  position: relative;
}

.c-sakidoriList__item {
  width: calc((100% - (35px * 2)) / 3);
}

.c-sakidoriList__itemLink {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  width: 100%;
  height: 100%;
  border: 1px solid var(--color-gray);
  background: #fff;
  position: relative;
  padding: 20px 20px 40px;
  min-height: 180px;
  gap: 20px;
  transition: transform .2s, outline 0s;
  box-shadow: 10px 10px 0px rgba(0, 0, 0, 0.1);
}

.c-sakidoriList__total {
  font-size: clamp(1.6rem, 3vw, 1.8rem);
  line-height: 1.4;
  color: #fff;
  font-weight: bold;
  padding: 5px 15px;
  background: var(--color-main);
  border-radius: var(--rad-common);
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

.c-sakidoriList__infoWrap {
  width: 100%;
}

.c-sakidoriList__itemTtl {
  font-size: clamp(1.9rem, 2.7vw, 2.4rem);
  font-weight: bold;
  margin-bottom: 5px;
  padding-bottom: 5px;
  border-bottom: 2px solid var(--color-main);
}

.c-sakidoriList__comment {
  font-size: clamp(1.3rem, 2vw, 1.4rem);
}

.c-sakidoriList .item__linkBtn {
  font-size: 12px;
  padding-right: 36px;
  padding-bottom: 7px;
  bottom: 10px;
  right: 10px;
}

.c-sakidoriList .item__linkBtn::before {
  width: 28px;
  height: 28px;
}

.c-sakidoriList .item__linkBtn::after {
  right: 7px;
  bottom: 8px;
}

@media (any-hover:hover) {
  .c-sakidoriList__itemLink:hover {
    opacity: 1;
    border-color: var(--color-main);
    background: var(--color-paleblue);
  }
}

/*==================================================
  PC SETTINGS : Min768px
==================================================*/
@media screen and (min-width: 768px) {

  /*==================================================
  PC HEADER
==================================================*/

  .header__left {
    width: 50%;
  }

  .header__right {}

  /*fixed*/
  header.fixed {
    filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.3));
  }

  header.fixed .header__inner {
    max-width: none;
    padding: 10px 10px 0;
    align-items: center;
  }

  header.fixed .header__left {
    width: 70%;
    display: flex;
  }

  header.fixed .header__pcContactBox {
    height: 0;
    overflow: hidden;
    display: none;
  }

  header.fixed #navWrap {
    width: 74%;
    margin-left: 1rem;
  }

  header.fixed .pcNavi__btn {
    width: clamp(120px, 15vw, 160px);
  }

  header.fixed .pcNavi__btnLink {
    font-size: clamp(1.2rem, 1.2vw, 1.3rem);
    padding: .8em 0;
  }

  header.fixed .pcNavi__btn__ico {
    display: none;
  }

  header.fixed .pcNavi__btnLink::after {
    content: none;
  }

  header.fixed .common__campaignFukidashi {
    font-size: 1rem;
    border-width: 1px;
  }


  /*==================================================
  indexShopBox PC
==================================================*/
  .indexShopBox__shopBtnWrap a.indexShopBox__link {
    margin-left: 0;
  }

}

/*==================================================
  tablet SETTINGS : Min768px Max1200px
==================================================*/
@media screen and (min-width: 768px) and (max-width: 1200px) {

  /*==================================================
    HEADER PC/TABLET
  ==================================================*/
  .header__inner {
    width: 98%;
    margin: 0 auto;
  }

  .pcMemberNavi__box {
    width: 100%;
  }

  .pcMemberNavi__ttl {
    width: 16%;
    padding-right: 10px;
  }

  .pcMemberNavi__itemBox {
    padding: 2px 0 2px 10px;
  }

  .pcMemberNavi__item--input {
    width: 22%;
  }

  .pcMemberNavi__item--input input {
    width: 100%;
  }

  /*==================================================
    FOOTER PC/TABLET
  ==================================================*/

  .footerSiteInfo {
    padding: 30px 10px;
  }

  .footerActions {
    padding: 0 10px;
  }

  .footerActions__btnWrap {
    flex-direction: column;
  }

  .footerActions__btn {
    width: 100%;
    max-width: 270px;
  }

  .footerActions__logoutForm {
    width: 100%;
    max-width: 270px;
  }

  .footerActions_logoutBtn {
    max-width: unset;
  }

  .footerSitemap {
    padding: 0 10px;
    width: 98%;
    overflow: hidden;
  }

  /*==================================================
    shopInfoBox PC/TABLET
  ==================================================*/
  .shopInfoBox__inner {
    padding: 5%;
  }

}

/*==================================================
  SP SETTINGS : Max767px
==================================================*/
@media screen and (max-width: 767px) {
  body {
    min-width: 300px;
  }

  .slick-dots li button:before {
    width: 10px !important;
    height: 10px !important;
  }


  /*==================================================
  common parts
  ==================================================*/
  /* indexTtl */
  .indexTtl__main {
    font-size: 3.2em;
  }

  /* カタログバナー */
  .bnrCatalog {
    margin-top: var(--gutter);
    padding: 15px;
  }

  .bnrCatalog__catch {
    top: -20px;
    transform: none;
  }

  .bnrCatalog__btnInner {
    width: 200px;
    max-width: 90%;
    margin: 0 1rem 0 auto;
  }

  .bnrCatalog__main {
    max-width: 100%;
    font-size: clamp(1.6rem, 4.7vw, 2rem);
    max-width: 100%;
    line-height: 1.4;
    padding-left: 120px;
  }

  .bnrCatalog__subTxt {
    width: 80%;
    font-size: clamp(1.1rem, 3.4vw, 1.4rem);
    margin: 20px auto 10px 0;
    position: relative;
    z-index: 5;
  }

  .bnrCatalog__btn {
    position: relative;
    right: 0;
    bottom: 0;
  }

  .bnrCatalog__btn::after {
    width: 160px;
    max-width: 50%;
    right: -5px;
    left: auto;
    bottom: 40px;
  }

  /*==================================================
    HEADER SP
  ==================================================*/
  /*SPでヘッダー固定*/
  header {
    position: fixed;
    /*SPではヘッダーを常時固定*/
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 50px;
    z-index: 10000;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
  }

  .header.sphidden {
    transform: translateY(-200%);
    overflow: hidden;
  }

  .header__inner {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 5px;
    align-items: center;
  }

  .header__left {
    width: 70%;
    max-width: 260px;
  }

  .header__logo {
    width: 96%;
    max-width: 260px;
    padding: 0.7em 0;
  }

  .header__logo a {
    height: 100%;
    max-height: 34px;
    /*ロゴ画像の幅に合わせて調整*/
  }

  /*ヘッダーボタン*/
  .header__spBtnWrap {
    display: flex;
    display: -webkit-flex;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
  }

  .header__spBtn {
    background: #fff;
  }

  .header__spBtn i {
    font-size: 16px;
  }

  .header__spBtnTtl {
    text-align: center;
    font-size: 10px;
    font-weight: 500;
  }

  .header__spNaviBtn,
  .header__spBtn--emember {
    margin-left: 2.5%;
  }

  .header__spNaviBtn {
    position: relative;
    width: 40px;
    height: 43px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    font-size: 10px;
    font-weight: 500;
    padding: 5px;
    line-height: 1.2;
  }

  .header__spNaviBtn span {
    width: 70%;
    height: 2px;
    background-color: var(--color-black);
    display: block;
    position: absolute;
    transition: .3s;
    transform-origin: center;
  }

  .header__spNaviBtn span:first-of-type {
    top: 6px;
  }

  .header__spNaviBtn span:nth-of-type(2) {
    top: 13px;
  }

  .header__spNaviBtn span:nth-of-type(3) {
    top: 20px;
  }

  .header__spNaviBtn.active span:nth-of-type(1) {
    transform: rotate(-45deg) translate(-5px, 5px)
  }

  .header__spNaviBtn.active span:nth-of-type(2) {
    opacity: 0;
  }

  .header__spNaviBtn.active span:nth-of-type(3) {
    transform: rotate(45deg) translate(-5px, -5px)
  }

  .header__spBtn--emember a {
    display: block;
    border: 1px solid var(--color-red);
    color: var(--color-red);
    width: 45px;
    height: 43px;
    text-align: center;
    white-space: nowrap;
    padding: 7px 0;
    line-height: 1.2;
  }

  .header__spBtn--login a {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
    width: 80px;
    height: 36px;
    margin: 2px auto;
    background: var(--color-red);
    color: #fff;
    font-size: 1.3rem;
    font-weight: bold;
    line-height: 1.2;
    text-decoration: none;
    border-radius: var(--rad-full);
    position: relative;
    box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.11);
  }

   .header__spBtn--member a {
    color: var(--color-red);
    border:1px solid;
    background: #fff;
   }

  /*ドロップダウンメニュー*/
  /* ハンバーガーメニュー用のスクロール制御 */
  body.hamburger-menu-open {
    overflow: hidden;
  }

  .spNavi {
    display: none;
    height: calc(100dvh - 50px);
    background: #fff;
    overflow-y: scroll;
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    z-index: 10000;
    font-size: clamp(13px, 1.4vw, 14px);
  }

  .spNavi__btnList {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 3rem 1rem 1rem;
  }

  .spNavi__btn {
    width: calc((100% - 10px) / 2);
    height: 40px;
  }

  .spNavi__btn a {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
    width: 100%;
    height: 40px;
    margin: 0 auto;
    background: var(--color-red);
    color: #fff;
    font-weight: bold;
    line-height: 1.2;
    text-decoration: none;
    border-radius: var(--rad-full);
    position: relative;
    box-shadow: var(--shadow-button);
  }

  .spNavi__btn--shop a {
    background: var(--color-main);
  }

  .spNavi__btn a::before {
    content: "";
    display: inline-block;
    width: 1.3em;
    height: 1.3em;
    background: url(../img/common/icon_heart_white.svg) no-repeat center / contain;
    margin-right: 1rem;
  }

  .spNavi__btn--shop a::before {
    background: url(../img/common/icon_shop_white_01.svg) no-repeat center / contain;
  }

  .spNavi__listWrap {
    margin: 2rem;
  }

  .spNavi__listTtl {
    font-weight: bold;
    margin-bottom: 1rem;
  }

  .spNavi__list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 5px;
    margin-bottom: 20px;
  }

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

  .spNavi__item a {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 5px 10px 5px 20px;
    position: relative;
  }

  .spNavi__item a::before {
    position: absolute;
    content: '';
    width: 10px;
    height: 0;
    border-top: 1px solid var(--color-gray);
    transform: translateY(-50%);
    top: 50%;
    left: 5px;
  }

  .spNavi__logout {
    padding: 30px 0;
  }

  .spNavi__logout__head {
    text-align: center;
    margin-bottom: 1em;
  }

  .spNavi__logout .spNavi__logoutBtn {
    border-radius: var(--rad-button);
    padding: 1em;
    width: 60%;
    max-width: 240px;
  }

  /* 会員ログイン後　ボタンとモーダルの内部 */
  .header__spMemberBtn {
    width: 40px;
    border: 1px solid var(--color-red);
    font-size: 10px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
    color: var(--color-red);
    font-weight: bold;
    padding: 0 7px;
  }

  .memberModal {
    font-size: 12px;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.8);
    width: 100%;
    border-radius: 4px;
  }

  .memberModal__ttl {
    margin-bottom: 10px;
    padding: 10px 0;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background-color: var(--color-red);
  }

  .memberModal__menu {
    margin: 0 auto 10px;
    padding: 0 10px 15px;
    border-bottom: 1px solid #CCC;
  }

  .memberModal__menuItem a {
    font-weight: bold;
    background: #fff;
    background-size: auto 10px;
    border: 1px solid #E6E6E6;
    display: block;
    border-radius: 4px;
    width: 100%;
    padding: 20px 10px;
    margin: 0 auto 5px;
    font-size: 14px;
    position: relative;
  }

  .memberModal__menuItem a::after {
    position: absolute;
    content: '';
    width: 7px;
    height: 7px;
    border-top: 1px solid #999;
    border-right: 1px solid #999;
    transform: rotate(45deg) translateY(-50%);
    top: 50%;
    right: 8%;
  }

  input[type="submit"].memberModal__logoutBtn {
    width: 60%;
    font-size: 1.1em;
    color: #fff;
    margin: 0 auto;
    font-weight: bold;
    border-radius: 5px;
    padding: 15px 0;
  }

  .memberModal__closeWrap {
    padding-bottom: 20px;
  }

  .memberModal__closeBtn {
    background: #999999;
    padding: 8px 0px;
    width: 80px;
    display: block;
    color: #FFF;
    border-radius: 4px;
    text-align: center;
    margin: 0 auto;
  }

  /* モーダル */
  /* 会員モーダル用のスクロール制御 */
  body.member-modal-open {
    overflow: hidden;
  }

  /* ハンバーガーメニューとモーダル両方が同時に適用(オープン)されることはないが、念のため */
  body.hamburger-menu-open,
  body.member-modal-open {
    overflow: hidden;
  }

  .memberModal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    background: rgba(0, 0, 0, 50%);
    padding: 40px 20px;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 100;
  }

  .memberModal:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 100%;
  }

  .memberModal.active {
    opacity: 1;
    visibility: visible;
  }

  .memberModal__body {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    max-width: 290px;
    width: 98%;
    background: #F6F5EF;
  }

  /*==================================================
    FOOTER SP
  ==================================================*/
  /*footFix*/
  .footFix {
    bottom: 70px;
  }

  .footFix .ancPagetop {
    bottom: 0;
  }

  /*電話番号帯*/
  .footerTelBox__itemList {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .footerTelBox__item {
    width: 90%;
    text-align: center;
  }

  .footerTelBox__name {
    display: block;
  }


  .footerSiteInfo__inner {
    flex-direction: column;
  }

  .footerSiteInfo {
    width: 100%;
  }

  .footerSiteInfo__logo {
    margin: 0 auto;
  }

  .footerSiteInfo__logo a {
    text-align: center;
  }

  .footerActions {
    flex-direction: column;
    margin: 20px auto;
    width: 98%;
    overflow: hidden;
  }

  .footerActions__btnWrap {
    flex-direction: column;
    width: 100%;
    margin: 0;
  }

  .footerActions__btn {
    width: 80%;
    max-width: 220px;
  }

  .footerActions__logoutForm {
    width: 80%;
    max-width: 220px;
  }

  .footerActions__telWrap {
    width: 100%;
  }

  .footerActions__spTel {
    width: 80%;
    margin: 2.5% auto;
  }

  .footerActions__spTel a {
    background-color: #333;
    color: #fff;
    display: block;
    padding: 10px;
    border-radius: 3px;
    text-align: center;
  }

  .footerActions__spTelNum {
    font-size: clamp(26px, 8vw, 30px);
    text-indent: 0.5em;
    font-weight: bold;
    line-height: 1;
    position: relative;
  }

  .footerActions__spTelNum::before {
    position: absolute;
    content: '';
    width: 19px;
    height: 25px;
    background: url(../img/common/icon_tel.svg) no-repeat left center;
    left: 7%;
    top: 50%;
    transform: translateY(-50%);
  }

  .footerActions__spTelTime {
    font-size: 11px;
  }

  .footerGroupLinkBox {
    padding-bottom: 30px;
  }

  .footerCopy {
    padding-bottom: 20px;
  }

  .spFooterMenu {
    width: 100%;
    height: 60px;
    padding: 0;
    position: fixed;
    bottom: 0px;
    z-index: 999;
    clear: both;
    padding-bottom: env(safe-area-inset-bottom);
    background: rgba(255, 255, 255, 0.95);
    border-top: 1px solid var(--color-main);
  }

  .spFooterMenu__list {
    width: 100%;
    display: flex;
    gap: 1px;
  }

  .spFooterMenu__item {
    width: 19%;
    height: 60px;
    line-height: 1.2;
  }

  .spFooterMenu__item--reserve {
    width: 24%;
    background: var(--color-main);
  }

  .spFooterMenu__item:nth-of-type(1),
  .spFooterMenu__item:nth-of-type(4) {
    box-shadow: inset -1px 0 0 0 var(--color-main);
  }

  .spFooterMenu__item a,
  .spFooterMenu__item__telWrap {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 8px;
    align-items: center;
    height: 100%;
    line-height: 1.4;
    font-size: 10px;
    color: var(--color-main);
    font-weight: bold;
  }

  .spFooterMenu__item--reserve a {
    color: #fff;
  }

  .spFooterMenu__item--reserve .common__campaignFukidashi {
    font-size: 1rem;
    top: -2em;
  }

  .spFooterMenu__item a>img {
    width: 34%;
    max-height: 45%;
    margin-bottom: 5px;
  }

  /* 電話ボタン */
  .footerFixMenu__telWrap {
    position: fixed;
    bottom: 60px;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, .8);
    padding: 5px;
    z-index: 1000;
  }

  .footerFixMenu__telItem {
    width: 60%;
    margin: 1em auto;
    padding: 2px;
  }

  .footerFixMenu__telInner {
    display: block;
    background: #fff;
    border-radius: var(--rad-button);
    font-size: clamp(1.4rem, 7.2vw, 2rem);
    padding: 5px;
    padding-left: 2em;
    height: 100%;
    position: relative;
  }

  .footerFixMenu__telItem p {
    text-align: center;
  }

  .footerFixMenu__telName {
    font-weight: bold;
    font-size: .6em;
  }

  .footerFixMenu__telNum {
    font-weight: bold;
    white-space: nowrap;
    font-family: var(--font-en);
  }

  .footerFixMenu__telInner::before {
    content: "";
    display: block;
    width: 1.6em;
    height: 1.6em;
    background: #fff url(../img/common/icon_tel_black_01.svg) no-repeat center / 50% auto;
    border: 1px solid;
    border-radius: var(--rad-full);
    position: absolute;
    left: 1em;
    top: 50%;
    transform: translateY(-50%);
  }

  .footerActions__btnWire form {
    width: 220px;
  }

  /*==================================================
    MAIN SP
  ==================================================*/
  .ttlWrap {
    height: 100px;
    padding-top: 10px;
  }

  .mainTtl {
    margin: 0;
    padding: 0;
  }

  /*--BREAD--*/
  #bread {
    white-space: nowrap;
    overflow: hidden;
    overflow-x: scroll;
    -webkit-overflow-scrolling: auto;
  }

  /*サブタイトル*/
  #main .secTtl {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 10px;
    background-image: none;
    padding: 2% 0;
    border-bottom: none;
  }

  #postbox input,
  #postbox textarea,
  #postbox select {
    margin: 5px 0;
  }

  /*(開閉タイトル)*/
  .oc_bar01,
  .oc_bar01_open,
  .srchbox01 .selectbox01 .selectbox_ttl,
  .srchbox01 .selectbox01 .selectbox_ttl_open,
  .srchbox01 .selectbox01 h3 {
    font-size: 1.2em;
  }

  /*==================================================
    shopInfoBox SP
  ==================================================*/

  .shopInfoBox__ttl {
    margin-bottom: 1em;
  }

  .shopInfoBox__inner {
    padding: 10px;
    margin-bottom: var(--gutter-wide);
  }

  .shopInfoBox__dataBox {
    width: 100%;
    max-width: unset;
    padding: 0;
  }

  .shopInfoBox__imgBox {
    width: 100%;
    max-width: unset;
    margin-bottom: 20px;
  }

  .shopInfoBox__dataWrap {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    padding: 5%;
  }

  .shopInfoBox__dataTtl {
    width: 30%;
    flex-shrink: 0;
  }

  .shopInfoBox__dataTtl,
  .shopInfoBox__data {
    padding: 0;
    max-width: unset;
    text-align: left;
  }

  .shopInfoBox__data {
    padding-left: 1em;
  }

  .shopInfoBox__snsList {
    justify-content: flex-start;
  }

  .shopInfoBox__snsList a{
    width:24px;
  }

  .shopInfoBox__shopCommentBox {
    margin-top: 3%;
    padding: 5%;
  }

  .shopInfoBox__map {
    margin-top: 3%;
  }


  /*
  ===== indexShopBox SP ==========================================
  */
  .indexShopBox__inner {
    flex-direction: column;
    width: 100%;
    gap: 30px;
  }

  .indexShopBox__imgBox {
    width: 100%;
    max-width: 100%;
    gap: 4px;
  }

  .indexShopBox__reserveBtnWrap {
    margin: var(--gutter-narrow) auto var(--gutter);
  }

  .indexShopBox__img {
    width: calc((100% - 4px) / 2);
  }

  .indexShopBox__infoBox {
    width: 90%;
    padding: 0;
    margin: var(--gutter-supernarrow) auto 0;
  }

  .indexShopBox__ttl {
    margin-bottom: 20px;
  }

  .indexShopBox__itemTtlWrap {
    margin-bottom: 15px;
  }

  .indexShopBox__shopBtnWrap .indexShopBox__shopBtn{
    margin-left: auto;
  }

  .indexShopBox__linkList {
    padding: 5%;
    flex-wrap: wrap;
    background: var(--color-main)
  }

  .indexShopBox__linkList .indexShopBox__link {
    width: 100%;
    font-size: clamp(1.1rem, 3.2vw, 1.4rem);
  }

  .indexShopBox__linkList .indexShopBox__link:not(:last-child) {
    margin-bottom: 1em;
  }

  .indexShopBox__link::after {
    right: 5%;
  }

  /*==================================================
    コンポーネント-先取りリスト
  ==================================================*/
  .c-sakidoriList {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    margin-bottom: 10px;
  }

  .c-sakidoriList__item {
    width: 90%;
  }

}