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

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

  --color-main: #1E8F6B;
  --color-palemain: #D2F0E3; 
  --color-verypalemain: #F5FCF9; 
  --color-red: #F05131;
  --color-orange: #FF981E;
  --color-yellow: #FFCA1E;
  --color-ygreen: #8ECC11;
  --color-green: #8ECC11;
  --color-blue: #1E4FEF;
  --color-lightblue: #00ADA9;
  --color-navy: #153BB8;
  --color-purple: #662D90;
  --color-pink: #f72b80;
  --color-salmon: #ff9898;
  --color-black: #111;
  --color-darkgray: #555;
  --color-gray: #888;
  --color-lightgray: #ccc;
  --color-palegray: #F5F5F5;
  --color-palegreen: #D2F0E3;
  --color-paleorange: #FFEED9;

  --gutter-supernarrow: 20px;
  --gutter-narrow: 30px;
  --gutter: 40px;
  --gutter-wide: 80px;
  --gutter-superwide: 100px;

  --rad-common: 5px;
  --rad-full: 9999px;

  --font-en: "Quicksand", sans-serif;
}

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

@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.4rem;
  letter-spacing: 0.05em;
  overflow-x: hidden;
  min-height: 100vh;
  min-height: -webkit-fill-available;
}

body.menu-open {
  overflow: hidden;
}

#main {
  display: block;
  word-break: break-word;
  position: relative;
  min-height: 400px;
  z-index: 0;
  overflow: hidden;
}

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;
  }
}

/*==================================================
  ANIMATION
==================================================*/
.animation--fadeIn {
  transform: translateY(10px);
  opacity: 0;
  transition: 0.8s ease-out;
}

.animation--fadeIn.animated {
  transform: translateY(0);
  opacity: 1;
}

@keyframes animation_fadeIn {
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}


/*==================================================
  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;
}

/* バナー */
.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;
  left: 50%;
  font-size: 1.2rem;
  transform: translateX(-50%);
  white-space: nowrap;
  background: #fff;
  color: var(--color-red);
  border-radius: var(--rad-full);
  padding: 0.5em 1.7em 0.5em 1.2em;
  line-height: 1;
  border: 2px solid var(--color-red);
  animation: btnCampaign-poyopoyo 2s ease-out infinite;
  font-feature-settings: 'palt';
  letter-spacing: 0.05em;
}

@keyframes btnCampaign-poyopoyo {
  0%, 40%, 60%, 80% {
    transform: translateX(-50%) scale(1.0);
  }
  50%, 70% {
    transform: translateX(-50%) scale(0.95);
  }
}

.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-red);
  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%);
}


/*==================================================
  HEADER
==================================================*/
header {
  border-bottom: 1px solid var(--color-lightgray);
  display: flex;
  flex-direction: column;
}

/* h1 */
.header__h1Box {
  background: var(--color-palegray);
}

.header__h1Box h1 {
  width: min(96%, var(--width-content));
  margin: 0 auto;
  font-size: 1.1rem;
  font-weight: bold;
  line-height: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 0.7em 0;
}

.header__inner {
  width: min(96%, var(--width-content));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ロゴ */
.header__logoWrap {
  display: flex;
  align-items: center;
  gap: 8px;
  height: clamp(45px, 4.3vw, 55px);
}

.header__logo {
  height: 100%;
}

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

.header__subLogo {
  height: 95%;
  width: auto;
  aspect-ratio: 43 / 26;
}

.header__subLogo img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.header__brandLogo {
  height: 100%;
  width: auto;
  aspect-ratio: 425 / 368;
}

.header__brandLogo img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

/* 右側 */
.header__rightBox {
  display: flex;
  gap: 15px;
  padding: 10px 0;
}

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

.header__pcBtnWrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  font-size: 1.6rem;
  gap: 5px 15px;
  font-size: clamp(1.2rem, 1.1vw, 1.4rem);
  flex-wrap: wrap;
}

.header__pcBtn a {
  font-weight: bold;
  display: flex;
  gap: 5px;
  align-items: center;
}

.header__btn--signup a::before,
.header__btn--search a::before,
.header__btn--favorite a::before {
  content: "";
  position: relative;
}

.header__btn--signup a::before {
  background: url(../img/common/icon_user_maincolor_01.svg) no-repeat center / contain;
  width: 1.25em;
  height: auto;
  aspect-ratio: 20 / 20;
}

.header__btn--search a::before {
  background: url(../img/common/icon_search_maincolor_01.svg) no-repeat center / contain;
  width: 1.125em;
  height: auto;
  aspect-ratio: 18 / 20;
}

.header__btn--favorite a::before {
  background: url(../img/common/icon_heart_maincolor_01.svg) no-repeat center / contain;
  width: 1.125em;
  height: auto;
  aspect-ratio: 18 / 25;
}

input[type="submit"].header__pcLogoutBtn {
  padding: 7px;
  line-height: 1;
  font-size: 1.2rem;
}

.header__telBox {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex-shrink: 0;
  flex-wrap: nowrap;
  gap: 2px;
}

.header__telShopName {
  line-height: 1;
  font-weight: bold;
  text-align: center;
  position: relative;
  width: 100%;
}

.header__telShopNameInner {
  background: #fff;
  padding: 0 5px;

}

.header__telShopName::before {
  content: "";
  height: 0;
  width: 100%;
  border-bottom: 1px solid var(--color-black);
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(calc(-50% + 1px));
  z-index: -1;
}

.header__telBox.common__tel a {
  font-size: clamp(2rem, 2.3vw, 3.3rem);
  gap: 0;
}

.header__telTime {
  line-height: 1.2;
  font-size: clamp(1.2rem, 1vw, 1.4rem);
  font-weight: bold;
  position: relative;
  left: 2px;
  font-feature-settings: 'palt';
}

/* メニューボタン */
.header__menuBtn {
  width: 60px;
  height: 60px;
  border-radius: 5px;
  background: var(--color-main);
  border: 2px solid var(--color-main);
  font-size: 1.3rem;
  font-weight: bold;
  font-family: var(--font-en);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  line-height: 1.2;
  padding: 4px 7px;
  position: relative;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}

.header__menuBtn span {
  width: 67%;
  height: 2px;
  border-radius: var(--rad-full);
  background-color: #fff;
  display: block;
  position: absolute;
}

.header__menuBtn span:first-of-type {
  top: 15%;
}

.header__menuBtn span:nth-of-type(2) {
  top: 35%;
}

.header__menuBtn span:nth-of-type(3) {
  top: 55%;
}

.header__menuBtn:active {
  background-color: #fff;
  color: var(--color-main);
}

.header__menuBtn:active span {
  background-color: var(--color-main);
}

@media (any-hover:hover) {
  .header__menuBtn:hover {
    background-color: #fff;
    color: var(--color-main);
  }

  .header__menuBtn:hover span {
    background-color: var(--color-main);
  }
}

/* モーダルメニュー */
.modalMenu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  overflow-y: scroll;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(5px);
  z-index: 10000;
  display: none;
}

.header__modalMenuClose {
  position: absolute;
  right: 20px;
  top: 20px;
  display: block;
  width: 50px;
  height: 50px;
  background-color: var(--color-main);
  cursor: pointer;
  border-radius: 50%;
  border: 2px solid var(--color-main);
  transition: 0.3s;
}

.header__modalMenuClose span {
  width: 20px;
  height: 2px;
  border-radius: var(--rad-full);
  display: inline-block;
  transition: 0.3s;
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  background: #fff;
}

.header__modalMenuClose span:first-of-type {
  transform: translateX(-50%) rotate(-45deg);
}

.header__modalMenuClose span:nth-of-type(2) {
  transform: translateX(-50%) rotate(45deg);
}

.header__modalMenuClose:active span {
  background: var(--color-main);
}

@media (any-hover:hover) {
  .header__modalMenuClose:hover {
    transform: scale(1.1);
    background-color: #fff;
  }

  .header__modalMenuClose:hover span {
    background: var(--color-main);
  }
}

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


.pcNavi {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: min(96%, var(--width-content));
  margin: 0 auto;
}

.pcNavi__list {
  width: 65%;
  display: flex;
  align-items: center;
}

.pcNavi__item {
  width: calc(100% / 4);
  position: relative;
}

/* 仕切り */
.pcNavi__item::after,
.pcNavi__item:first-of-type::before {
  content: "";
  display: block;
  width: 1px;
  height: 64px;
  background-color: var(--color-lightgray);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -1px;
}

.pcNavi__item:first-of-type::before {
  left: 0;
}

.pcNavi__itemLink {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
  color: var(--color-black);
}

.pcNavi__btnBox {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
  margin-left: 20px;
}

.pcNavi__linkCap {
  font-size: 1rem;
  font-weight: bold;
  font-feature-settings: 'palt';
  letter-spacing: 0.1em;
  position: relative;
  max-width: 80%;
  text-align: center;
}

.pcNavi__linkCap::before {
  content: "＼";
  position: absolute;
  left: -1.2em;
  bottom: 0;
}

.pcNavi__linkCap::after {
  content: "／";
  position: absolute;
  right: -1.2em;
  bottom: 0;
}

.pcNavi__linkMain {
  font-size: 1.6rem;
  font-weight: bold;
}

.pcNavi__linkEn {
  font-size: 1rem;
  font-weight: bold;
  font-family: var(--font-en);
  color: var(--color-main);
  line-height: 1;
}


@media (any-hover:hover) {
  .pcNavi__itemLink:hover {
    background: var(--color-main);
    color: #fff;
    opacity: 1;
    transform: scaleX(1.01);
  }

  .pcNavi__item:hover .pcNavi__linkEn {
    color: #fff;
  }

  .pcNavi__item:hover::after,
  .pcNavi__item:hover::before {
    content: none;
  }
}

.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;
  transform: scaleX(1.01);
  font-weight: bold;
  transition: 0.3s;

}

@media (any-hover:hover) {
  .pcNavi__item:hover .pcNavi__childItem {
    overflow: visible;
    height: 54px;
    border-top: 1px dotted #fff;
  }
}

.pcNavi__childItem>a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: #fff;
  font-size: 1.4rem;
  text-decoration: none;
  line-height: 1.2;
  background-color: var(--color-main);
  justify-content: center;
  padding: 0 5px;
  text-align: center;
}


/*
  ===== loginfixbox ==========================================
  */
.pcMemberNavi {
  border-top: 1px solid var(--color-lightgray);
  border-bottom: 1px solid var(--color-lightgray);
  background-color: var(--color-palegray);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  font-size: clamp(1.3rem, 1.5vw, 1.4rem);
}

.pcMemberNavi__box {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center
}

.pcMemberNavi__box tbody {
  height: 100%;
}

.pcMemberNavi__box tr {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 8px;
}

.pcMemberNavi__ttl {
  text-align: center;
  vertical-align: middle;
  font-weight: bold;
  padding: 0.3em 0.6em;
  flex-shrink: 0;
  border: 1px solid var(--color-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.pcMemberNavi__itemBox {
  vertical-align: middle;
  text-align: center;
}

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

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

input[type="submit"].pcMemberNavi__loginBtn {
  border: none;
  padding: 5px 15px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
  background: var(--color-main);
  border-radius: 50vh;
}

.pcMemberNavi__item--input {
  margin-left: 5px;
}

.pcMemberNavi__item--input input {
  padding: 3px 10px !important;
  text-align: left;
}


/*ログイン時*/
.pcMemberNavi__item--link {
  position: relative;
}

.pcMemberNavi__item--link::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  background: url(../img/common/icon_arrow_black_01.svg) no-repeat center / contain;
  width: 10px;
  height: auto;
  aspect-ratio: 1 / 1;
  pointer-events: none;
}

.pcMemberNavi__item--link a {
  padding-right: 2em;
  text-decoration: underline;
}

.pcMemberNavi__item--name {
  margin-right: 20px;
}

.pcMemberNavi__memberInfoList {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pcMemberNavi__memberInfoList .pcMemberNavi__item {
  margin-left: clamp(10px, 1.5vw, 20px);
}

.pcMemberNavi__memberInfoList .pcMemberNavi__item--link {
  flex-shrink: 0;
}

.pcMemberNavi__logoutBtn {
  padding: 8px 10px !important;
  width: auto;
  font-size: 1.3rem;
}

/* Tablet and SP modal btn */
.modalMenu__spBtnBox {
  order: 1;
  margin-top: 40px;
}

.modalMenu__spBtnWrap {
  display: flex;
  justify-content: center;
  gap: 5px;
}

.modalMenu__spBtn {
  width: calc((100% - 10px) / 3);
  height: 50px;
}

.modalMenu__spBtn a {
  font-size: clamp(1rem, 2.9vw, 1.2rem);
  font-weight: bold;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 7px 10px;
  background: var(--color-main);
  color: #fff;
  border-radius: var(--rad-full);
  white-space: nowrap;
  height: 100%;
}

.modalMenu__spBtn--signup a::before,
.modalMenu__spBtn--search a::before,
.modalMenu__spBtn--favorite a::before {
  content: "";
  position: relative;
}

.modalMenu__spBtn--signup a::before {
  background: url(../img/common/icon_user_maincolor_01.svg) no-repeat center / contain;
  filter: brightness(10) grayscale();
  width: auto;
  height: 1.7em;
  aspect-ratio: 20 / 20;
}

.modalMenu__spBtn--search a::before {
  background: url(../img/common/icon_search_maincolor_01.svg) no-repeat center / contain;
  filter: brightness(10) grayscale();
  width: auto;
  height: 1.7em;
  aspect-ratio: 16 / 20;
}

.modalMenu__spBtn--favorite a::before {
  background: url(../img/common/icon_heart_maincolor_01.svg) no-repeat center / contain;
  filter: brightness(10) grayscale();
  width: auto;
  height: 1.7em;
  aspect-ratio: 22 / 25;
}

input[type="submit"].modalMenu__spLogoutBtn {
  margin: 0;
  padding: 10px;
  height: 50px;
  width: 100%;
  font-size: 1.3rem;
}

/*
  ===== fixed ==========================================
  */
.header__inner.fixed {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10000;
  background: rgba(255, 255, 255, 0.95);
  padding: 0 2%;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.2));
  animation: header-slidein 0.5s;
}

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

  100% {
    transform: translateY(0);

  }
}


/*==================================================
  FOOTER
==================================================*/
.footer {
  border-top: 1px solid var(--color-gray);
  margin-top: var(--gutter);
}

.footer__wrap {
  display: flex;
  justify-content: space-between;
  margin: var(--gutter-wide) auto;
  gap: 50px;
}

.footerSiteInfo {
  flex-shrink: 0;
}

.footerSiteInfo__logo {
  width: min(100%, 390px);
}

.footerSiteInfo__telTtl {
  font-size: 2rem;
  font-weight: bold;
}

.footerSiteInfo__tels {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin: var(--gutter-narrow) 0 var(--gutter);
}

.footerSiteInfo__time {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.2;
  margin-top: 10px;
  font-feature-settings: 'palt';
}

.footerSitemap {
  width: min(100%, 620px);
}


.btn_cta {
  width: 190px;
  height: auto;
  aspect-ratio: 190 / 50;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  gap: 10px;
  padding-right: 1em;
  background: var(--color-main);
  color: #fff;
  font-weight: bold;
  font-size: 1.6rem;
  border-radius: var(--rad-full);
  border: 2px solid var(--color-main);
  box-shadow: 0 3px 0 rgba(33, 141, 94, 0.3);
  transition: 0.3s;
}

.btn_cta::after {
  content: "";
  background: url(../img/common/icon_arrow_maincolor_01.svg)no-repeat center / contain;
  filter: brightness(10) grayscale();
  width: 1em;
  height: auto;
  aspect-ratio: 16 / 14;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: right 0.3s;
}

.btn_cta::before {
  content: "";
  filter: brightness(10) grayscale();
}

.btn_cta--shop::before {
  background: url(../img/common/icon_shop_maincolor_01.svg) no-repeat center / contain;
  width: 1.125em;
  height: auto;
  aspect-ratio: 18 / 16;
}

.btn_cta--search::before {
  background: url(../img/common/icon_search_maincolor_01.svg) no-repeat center / contain;
  filter: brightness(10) grayscale();
  width: 1.125em;
  height: auto;
  aspect-ratio: 18 / 19;
}

.btn_cta:active {
  background: #fff;
  color: var(--color-main);
  opacity: 1;
}

.btn_cta:active::before {
  filter: unset;
}

.btn_cta:active::after {
  filter: unset;
  right: 15px;
}

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

  .btn_cta:hover::before {
    filter: unset;
  }

  .btn_cta:hover::after {
    filter: unset;
    right: 15px;
  }
}

/* 赤ボタン */
.btn_cta--red {
  background: var(--color-red);
  border-color: var(--color-red);
  box-shadow: 0 3px 0 rgba(154, 59, 39, 0.3);
}

.btn_cta--red::after {
  background: url(../img/common/icon_arrow_red_01.svg)no-repeat center / contain;
}

.btn_cta--red.btn_cta--shop::before {
  background: url(../img/common/icon_shop_red_01.svg) no-repeat center / contain;
}

.btn_cta--red:active {
  color: var(--color-red);
}

@media (any-hover:hover) {
  .btn_cta--red:hover {
    color: var(--color-red);
  }
}

.footerBtnBox {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px 15px;
  flex-wrap: wrap;
}

/*SNS icon*/
.footerSocial {
  display: flex;
  justify-content: center;
  margin: var(--gutter-wide) 0;
}

.footerSocial__item {
  width: 32px;
  height: 32px;
  margin: 0 10px;
}

/* 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%;
}

/* footerCopy */
.footerCopyWrap {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 9px 5px;
  font-style: normal;
  font-size: 1.3rem;
  color: #fff;
  background: var(--color-black);
  text-align: center;
  position: relative;
}

.footerCopyWrap__link {
  display: inline-block;
  line-height: 1.2;
}

.footerCopyWrap__link:not(:first-child) {
  margin-left: 0.6em;
  padding-left: 0.6em;
  border-left: 1px solid #fff;
}

.footerCopy {
  font-size: 1.2rem;
}


/* PAGE TOP */
.footFix {
  z-index: 999;
  position: fixed;
  bottom: 50px;
  right: 10px;
  width: 60px;
  height: 60px;
}

.ancPagetop a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  padding-top: 10px;
  font-weight: bold;
  background: var(--color-black);
  border: 1px solid #fff;
  color: #fff;
  position: relative;
  font-family: var(--font-en);
}

.ancPagetop a::before {
  content: "";
  width: 12px;
  height: 12px;
  display: block;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  top: 15px;
  left: 50%;
  transform: rotate(-45deg) translateX(-50%);
  transform-origin: left;
}

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

/*==================================================
  MAIN
==================================================*/
/*************** メインタイトル ****************/
.ttlWrap {
  padding: 50px 0;
  background: var(--color-palemain);

}

.mainTtl {
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.4;
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.mainTtl__sub {
  font-size: 0.6em;
  display: inline-block;
}


/*--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(2rem, 2vw, 2.4rem);
  font-weight: bold;
  padding: 15px 0;
  background-size: 8px;
  border-bottom: solid 1px var(--color-lightgray);
  line-height: 1.4;
  margin-bottom: 20px;
}

#postbox input,
#postbox textarea,
#postbox select {
  margin: 0 5px;
  max-width: 55vw;
}

#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;
  border-bottom: dotted 1px #333333;
}

.oc_bar01_open:after,
.srchbox01 .selectbox01 .selectbox_ttl_open:after {
  cursor: pointer;
  line-height: 100%;
  display: block;
  content: "＋";
  float: right;
  color: #fff;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  text-shadow: none !important;
  padding: 5px;
  background: #3E3939;
}

.oc_bar01:after,
.srchbox01 .selectbox01 .selectbox_ttl:after {
  cursor: pointer;
  line-height: 100%;
  display: block;
  content: "－";
  float: right;
  color: #fff;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  text-shadow: none !important;
  padding: 5px;
  background: #3E3939;
}

.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-list {
  overflow: visible !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: 1px !important;
  opacity: 1 !important;
}

.slick-arrow.slick-next,
.slick-arrow.slick-next::before {
  right: 1px !important;
  opacity: 1 !important;
}

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

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

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

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

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

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


/*==================================================
  shopInfoBox
==================================================*/
.shopInfoBox__ttl {
  margin-bottom: 30px;
  font-size: clamp(1.4rem, 1.3vw, 1.6rem);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

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

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

.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;
}

.shopInfoBox__dataBox {
  width: 50%;
  padding-left: 30px;
}

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

.shopInfoBox__dataTtl {
  max-width: 150px;
  width: 35%;
  text-align: center;
  font-weight: bold;
  padding: 20px 25px;
  flex-shrink: 0;
}

.shopInfoBox__data {
  flex-grow: 1;
  padding: 20px 25px;
}

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

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

.indexShopBox__inner {
  width: min(90%, 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__list {
  flex-grow: 1;
}

.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;
}

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

.indexShopBox__reserveBtnWrap {
  flex-grow: 1;
}

.reserveBtn {
  position: relative;
  display: block;
}

.reserveBtn__mainTxt {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 260px;
  height: 68px;
  background: var(--color-main);
  border: 2px solid var(--color-main);
  color: #fff;
  border-radius: var(--rad-full);
  font-weight: bold;
  font-size: 1.6rem;
  box-shadow: 0 5px 0 rgba(33, 141, 94, 0.3);
  transition: 0.3s;
}

.reserveBtn__mainTxt::after {
  content: "";
  background: url(../img/common/icon_arrow_maincolor_01.svg)no-repeat center / contain;
  filter: brightness(10) grayscale();
  width: 1em;
  height: auto;
  aspect-ratio: 16 / 14;
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  transition: right 0.3s;
}

.reserveBtn__caption {
  position: absolute;
  top: -27px;
  left: -8px;
  font-weight: bold;
  font-size: 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transform: rotate(-5deg);
  filter: none;
  z-index: 1;
  transition: 0.3s;
}

.reserveBtn__captionTop {
  color: var(--color-black);
  line-height: 1;
}

.reserveBtn__captionBottom {
  color: var(--color-main);
  background: #fff;
  border: 2px solid var(--color-main);
  line-height: 1;
  padding: 0.3em 0.6em;
}

.reserveBtn:active {
  opacity: 1;
}

.reserveBtn:active .reserveBtn__mainTxt {
  background: #fff;
  color: var(--color-main);
}

.reserveBtn:active .reserveBtn__mainTxt::after {
  filter: unset;
  right: 6%;
}

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

  .reserveBtn:hover .reserveBtn__mainTxt {
    background: #fff;
    color: var(--color-main);
  }

  .reserveBtn:hover .reserveBtn__mainTxt::after {
    filter: unset;
    right: 6%;
  }
}

.indexShopBox__linkList {
  display: flex;
  gap: 3.5%;
  width: 100%;
}

.indexShopBox__link {
  width: 31%;
  height: 60px;
  border-radius: 5px;
  border: 1px solid var(--color-black);
  filter: drop-shadow(3px 3px 0 #eee);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.2rem, 1.1vw, 1.4rem);
  font-weight: 500;
  background: #fff;
  position: relative;
  padding-right: 10px;
}

.indexShopBox__link::after {
  content: "";
  background: url(../img/common/icon_arrow_black_01.svg)no-repeat center / contain;
  width: 1em;
  height: auto;
  aspect-ratio: 16 / 14;
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  transition: right 0.3s;
}

.indexShopBox__link:active {
  opacity: 1;
  background: var(--color-black);
  color: #fff;
}

.indexShopBox__link:active::after {
  filter: invert();
  right: 6%;
}

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

  .indexShopBox__link:hover::after {
    filter: invert();
    right: 6%;
  }
}


/*==================================================
  sitemapBox
==================================================*/

.sitemapBox {
  display: flex;
  flex-direction: column;
  font-size: 1.6rem;
  gap: 2.5em;
}

.sitemapBox__ttl {
  font-size: 1em;
  font-weight: bold;
  margin-bottom: 0.9em;
}

.sitemapBox__ttl--search,
.sitemapBox__ttl--tips,
.sitemapBox__ttl--shop {
  padding-left: 1.7em;
  position: relative;
}

.sitemapBox__ttl--search::before,
.sitemapBox__ttl--tips::before,
.sitemapBox__ttl--shop::before {
  content: "";
  position: absolute;
  width: 1.375em;
  height: auto;
  aspect-ratio: 20 / 25;
  left: 0;
}

.sitemapBox__ttl--search::before {
  background: url(../img/common/icon_search_maincolor_01.svg) no-repeat center / 1.375em auto;
}

.sitemapBox__ttl--tips::before {
  background: url(../img/common/icon_tips_maincolor_01.svg) no-repeat right top / 1.25em auto;
}

.sitemapBox__ttl--shop::before {
  background: url(../img/common/icon_shop_maincolor_01.svg) no-repeat center / 1.375em auto;
}

.sitemapBox__list {
  display: flex;
  gap: 1.5em 1.9em;
  flex-wrap: wrap;
  font-size: 0.9em;
}

.sitemapBox__item a {
  font-weight: 500;
  position: relative;
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: flex-start;
  line-height: 1.2;
}


.sitemapBox__item a::before {
  content: "";
  width: 9px;
  height: 1px;
  background: var(--color-gray);
  position: relative;
  top: 1px;
}

.sitemapBox__item.font_red01 a::before {
  background: var(--color-red);
}


@media (any-hover:hover) {
  .sitemapBox__item a:hover {
    opacity: 1;
    color: var(--color-main);
  }
}

/*
===== memberMeritBox ==========================================
*/
.memberMeritBox {
  padding: var(--gutter-superwide) 0;
  background: url(../img/common/bg_memberMeritBox_01.webp) no-repeat center / cover;

}

.memberMeritBox__message {
  width: fit-content;
  margin: 0 auto var(--gutter-wide);
  text-align: center;
  font-weight: bold;
  font-size: 3rem;
  line-height: 2;
  position: relative;
}

.memberMeritBox__message::before {
  content: "";
  width: auto;
  height: 2em;
  aspect-ratio: 16 / 28;
  background: url(../img/common/deco_prpregist_01.svg) no-repeat center / contain;
  position: absolute;
  left: -9%;
  bottom: 0;
  transform: scaleX(-1);
}

.memberMeritBox__message::after {
  content: "";
  width: auto;
  height: 2em;
  aspect-ratio: 16 / 28;
  background: url(../img/common/deco_prpregist_01.svg) no-repeat center / contain;
  position: absolute;
  right: -7%;
  bottom: 0;
}

.memberMeritBox__messageLogo {
  display: inline-block;
}

.memberMeritBox__message img {
  width: auto;
  height: 1.5em;
  margin-bottom: 0.4em;
}

.memberMeritBox__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 5%;
}

.memberMeritBox__ttlJa {
  font-weight: bold;
  font-size: clamp(2.1rem, 3vw, 2.4rem);
  margin-bottom: 10px;
  display: block;
  line-height: 1;
}

.memberMeritBox__ttlJaBig {
  font-size: 1.25em;
}

.memberMeritBox__ttlEn {
  font-family: var(--font-en);
  font-weight: 500;
  color: var(--color-main);
  font-size: clamp(7rem, 9vw, 11.3rem);
  line-height: 1.25;
  position: relative;
  white-space: nowrap;
  left: -6px;
}

.memberMeritBox__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 50%;
}

.memberMeritBox__item {
  display: flex;
  align-items: flex-start;
  border-bottom: 1px dotted var(--color-gray);
  padding: 35px 10px;
  gap: 15px;
  width: 100%;
}

.memberMeritBox__item:first-child {
  padding-top: 0;
}

.memberMeritBox__item:last-child {
  padding-bottom: 0;
  border: none;
}

.memberMeritBox__num {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 2.4rem;
  font-weight: bold;
  font-family: var(--font-en);
  color: #fff;
  background: var(--color-main);
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.memberMeritBox__itemTtl {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 2;
  margin-bottom: 10px;
}

.memberMeritBox__itemTtlImportant {
  font-size: 1.66em;
  color: var(--color-main);
  border-bottom: 3px solid var(--color-main);
  line-height: 0;
}

.memberMeritBox__txt {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.5;
}

.memberMeritBox__btnBox {
  margin-top: var(--gutter-superwide);
}

.btn_signup {
  border-radius: var(--rad-full);
  background-color: var(--color-main);
  color: #fff;
  border: 2px solid var(--color-main);
  width: 470px;
  height: auto;
  aspect-ratio: 470 / 85;
  max-width: 88vw;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-weight: bold;
  position: relative;
  margin: 0 auto;
  box-shadow: 0 5px 0 rgba(33, 141, 94, 0.3);
  padding-left: 10px;
  font-size: 2.8rem;
}

.btn_signup--logined a {
  margin: 0 auto;
}

.btn_signup::after {
  content: "";
  background: url(../img/common/icon_arrow_maincolor_01.svg)no-repeat center / contain;
  filter: brightness(10) grayscale();
  width: 0.85em;
  height: auto;
  aspect-ratio: 16 / 14;
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  transition: right 0.3s;
}

.btn_signup:active {
  opacity: 1;
  background: #fff;
  color: var(--color-main);
}

.btn_signup:active.btn_signup::after {
  filter: unset;
  right: 4%;
}

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

  .btn_signup:hover.btn_signup::after {
    filter: unset;
    right: 4%;
  }
}


.btn_signup__badge {
  position: absolute;
  top: -55px;
  left: -40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-weight: bold;
  font-size: 1.5rem;
  border-radius: 50vh;
  color: var(--color-black);
  background-color: #fff;
  border: 2px solid var(--color-main);
  width: 100px;
  height: 100px;
  line-height: 1;
  font-feature-settings: 'palt';
  z-index: 3;
}

.btn_signup__badge::before {
  content: "";
  border-left: 13px solid #fff;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  position: absolute;
  right: 4px;
  bottom: 1px;
  z-index: 2;
  transform: rotate(45deg);
}

.btn_signup__badge::after {
  content: "";
  border-left: 14px solid var(--color-main);
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  position: absolute;
  right: 2px;
  bottom: -1px;
  z-index: 1;
  transform: rotate(45deg);
}

.btn_signup__badgeTop {
  font-size: 1em;
}

.btn_signup__badgeNumWrap {
  font-size: 1.25em;
  position: relative;
  top: -1px;
}

.btn_signup__badgeNum {
  font-size: 1.7em;
  line-height: 1;
  font-family: var(--font-en);
  color: var(--color-main);
}

.btn_signup__badgeUnit {
  color: var(--color-main);
}

.btn_signup__badgeTxt {
  font-size: 1.25em;
}


/*==================================================
  PC tablet ONLY SETTINGS : Min768px
==================================================*/
@media screen and (min-width: 768px) {
  .header__inner.fixed .header__logoWrap {
    width: auto;
    height: 40px;
  }

  .header__inner.fixed .header__rightBox {
    padding: 5px 0;
  }

  .header__inner.fixed .header__pcContactBox {
    gap: 20px;
  }

  .header__inner.fixed .header__telShopName {
    display: none;
  }

  .header__inner.fixed .header__pcBtnWrap {
    font-size: 1.4rem;
    margin-top: 2px;
    gap: 15px;
  }

  .header__inner.fixed .header__telBox.common__tel a {
    font-size: 2.8rem;
    flex-shrink: 0;
  }

  .header__inner.fixed .header__telTime {
    font-size: 1.2rem;
  }

  .header__inner.fixed .header__menuBtn {
    width: 50px;
    height: 50px;
    font-size: 1rem;
  }

}

/*==================================================
  tablet SETTINGS : Min768px Max1080px
==================================================*/
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .header__logoWrap {
    height: 45px;
  }

  .header__telBox.common__tel a {
    font-size: 2.8rem;
  }

  .modalMenu__spBtnWrap {
    gap: 20px;
  }

  .modalMenu__spBtn {
    width: 250px;
  }

  .modalMenu__spBtn a {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.4rem;
  }

  .pcNavi__btn .btn_cta {
    width: clamp(100px, 15vw, 160px);
    font-size: clamp(1.2rem, 1.5vw, 1.3rem);
    gap: clamp(5px, 0.7vw, 10px);
  }


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

  @media (any-hover:hover) {
    .btn_cta:hover::after {
      filter: unset;
      right: 2%;
    }
  }

  .pcNavi__btnBox {
    gap: 5px;
    margin-left: 10px;
  }

  .pcNavi__linkMain {
    font-size: 1.5rem;
  }


  /*==================================================
    HEADER PC/TABLET
  ==================================================*/
  .pcMemberNavi__item--input input {
    width: clamp(150px, 20vw, 250px);
  }

  .pcNavi__list {
    width: 100%;
  }

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

  .footer__wrap {
    flex-direction: column-reverse;
    justify-content: center;
    gap: 60px;
  }

  .footerSiteInfo {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footerSitemap {
    width: 100%;
  }


  /*==================================================
    memberMeritBox TABLET
  ==================================================*/
  .memberMeritBox__list {
    width: 60%;
  }

  .memberMeritBox__ttlEn {
    font-size: clamp(5rem, 7vw, 11.3rem);
  }

  .memberMeritBox__itemTtl {
    font-size: clamp(1.6rem, 2vw, 1.8rem);
  }

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

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

  .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;
  }
}

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

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

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

  .ttlWrap {
    padding: 40px 0 30px;
  }

  /*==================================================
    HEADER SP
  ==================================================*/
  header {
    display: flex;
    justify-content: space-between;
  }

  .header__inner {
    width: 100%;
    gap: 15px;
    padding: 0 2%;
  }

  .header__logoWrap {
    gap: 5px;
    height: auto;
    width: calc(100% - 145px);
    max-width: 300px;
  }

  .header__logo {
    width: 82%;
    height: auto;
  }

  .header__logo img {
    height: auto;
  }

  .header__brandLogo {
    width: 18%;
    height: auto
  }

  .header__menuBtn {
    width: 45px;
    height: 45px;
    padding: 2px 7px;
    font-size: 1rem;
  }

  /* モーダルメニュー */
  .modalMenu .footer__wrap {
    flex-direction: column-reverse;
    gap: 40px;
  }

  .modalMenu .footerSitemap {
    padding: 0 20px;
  }

  .modalMenu .footerSiteInfo {
    padding: 20px 20px 0;
    flex-direction: column-reverse;
  }

  .modalMenu .footerSiteInfo__tels {
    margin: var(--gutter) auto;
  }

  .modalMenu .footerSiteInfo__logo {
    width: 70%;
  }


  /* 右側 */
  .header__rightBox {
    gap: 5px;
  }

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

  .header__spBtn a {
    width: 45px;
    height: 45px;
    text-align: center;
    white-space: nowrap;
    line-height: 1.2;
    border-radius: 5px;
    font-weight: bold;
    display: block;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    border: 2px solid var(--color-main);
    color: var(--color-main);
  }

  .header__spBtn--signup a::before {
    content: "";
    position: relative;
    background: url(../img/common/icon_user_maincolor_01.svg) no-repeat center / contain;
    height: 1.2em;
    width: auto;
    aspect-ratio: 20 / 20;
    display: block;
  }

  .header__spBtn--login a::before {
    content: "";
    position: relative;
    background: url(../img/common/icon_lock_maincolor_01.svg) no-repeat center / contain;
    height: 1.2em;
    width: auto;
    aspect-ratio: 23 / 29;
    display: block;
  }

  .header__spBtnTtl {
    text-align: center;
    font-size: 10px;
    letter-spacing: 0;
    font-weight: bold;
  }


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

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

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

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

  .memberModal__menuItem a {
    font-weight: bold;
    background: #fff;
    background-size: auto 10px;
    border: 1px solid var(--color-gray);
    border-radius: var(--rad-full);
    display: block;
    width: 100%;
    padding: 20px 10px;
    margin: 0 auto 10px;
    font-size: 14px;
    position: relative;
  }

  .memberModal__menuItem a::after {
    content: "";
    background: url(../img/common/icon_arrow_black_01.svg)no-repeat center / contain;
    width: 1em;
    height: auto;
    aspect-ratio: 16 / 14;
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    transition: right 0.3s;
  }

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

  .memberModal__closeWrap {
    padding-bottom: 25px;
  }

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

  /* モーダル */
  .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;
    width: min(300px, 98%);
    background: var(--color-palegray);
    border-radius: 10px;
  }

  /*
  ===== fixed ==========================================
  */


  /*==================================================
    FOOTER SP
  ==================================================*/

  .footer__wrap {
    flex-direction: column;
    justify-content: center;
  }

  .footerSiteInfo {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footerSiteInfo__logo {
    width: 87%;
  }

  .footerSiteInfo__tels {
    gap: 25px;
  }

  .footerSiteInfo__tels .common__tel a {
    font-size: clamp(3.3rem, 10vw, 5.2rem);
  }

  .footerBtnBox,
  .footerBtnBox__btn {
    width: 100%;
  }

  .footerBtnBox__btn .footerBtnBox__btnLink {
    width: 90%;
    aspect-ratio: 190 / 40;
    margin: 0 auto;
    box-shadow: 0 5px 0 rgba(33, 141, 94, 0.3);
  }

  /* footerCopy */
  .footerCopyWrap {
    flex-direction: column;
    gap: 5px;
  }

  /*フッター固定メニュー*/
  .footerFixMenu {
    height: 58px;
    z-index: 999;
    position: relative;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
  }

  .footerFixMenu__itemList {
    width: 100%;
    height: 100%;
    display: flex;
    background: #fff;
  }

  .footerFixMenu__item {
    width: calc(100% / 5);
    box-shadow: inset -1px 0 0 0 #ccc;
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1.2;
    border-top: 1px solid var(--color-black);
  }

  .footerFixMenu__item:last-of-type {
    box-shadow: none;
  }

  .footerFixMenu__item a,
  .footerFixMenu__item .footerFixMenu__item__telBtn {
    padding: 4px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
  }

  .footerFixMenu__item a::before,
  .footerFixMenu__item .footerFixMenu__item__telBtn::before {
    content: "";
    display: block;
    width: 4em;
    height: 4em;
    margin: 5px;
  }

  .footerFixMenu__item.estate {
    background-color: var(--color-main);
    color: #fff;
    border-color: var(--color-main);
    box-shadow: none;
  }

  .footerFixMenu__item.shop-reserve  {
    background-color: var(--color-red);
    color: #fff;
    border-color: var(--color-red);
    position: relative;
  }

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

  /*アイコン設定*/
  .footerFixMenu__item.estate a::before {
    background: url('../img/common/icon_search_maincolor_01.svg') no-repeat center / contain;
    filter: brightness(10) grayscale();
  }

  .footerFixMenu__item.shop-reserve a::before {
    background: url('../img/common/icon_calendar_black_01.svg') no-repeat center / contain;
    filter: brightness(100) grayscale();
  }

  .footerFixMenu__item.shops a::before {
    background: url('../img/common/icon_shop_black_01.svg') no-repeat center / contain;
    transform: scale(0.95);
  }

  .footerFixMenu__item.event a::before {
    background: url('../img/common/icon_tips_black_01.svg') no-repeat center / contain;
    transform: scale(1.15) translateY(-1px);
  }

  .footerFixMenu__item.tel a::before {
    background: url('../img/common/icon_tel_black_01.svg') no-repeat center / contain;
  }


  /*Page TOP*/
  .footFix {
    bottom: 10%;
  }

  .footFix .ancPagetop {
    bottom: 10px;
  }

  /* recaptcha */
  .grecaptcha-badge {
    bottom: 5px !important;
  }

  /*==================================================
    MAIN SP
  ==================================================*/
  .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;
    max-width: 85vw;
  }

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

  /*==================================================
    shopInfoBox SP
  ==================================================*/
  .shopInfoBox__inner {
    width: 96%;
  }

  .shopInfoBox__dataBox {
    width: 100%;
    max-width: unset;
    padding-left: 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;
  }

  /*
  ===== indexShopBox ==========================================
  */
  .indexShopBox__inner {
    flex-direction: column-reverse;
    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__linkList {
    gap: 2%;
  }

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

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

  /*
  ===== memberMeritBox ==========================================
  */
  .memberMeritBox {
    padding: var(--gutter-superwide) 0;
  }

  .memberMeritBox__message {
    line-height: 1.6;
    font-size: clamp(1.8rem, 5.7vw, 3rem);
    margin-bottom: var(--gutter);
  }

  .memberMeritBox__message img {
    margin-bottom: 0.3em;
  }

  .memberMeritBox__message::before {
    left: -9%;
    bottom: 5px;
  }

  .memberMeritBox__message::after {
    right: -8%;
    bottom: 5px;
  }

  .memberMeritBox__inner {
    flex-direction: column;
    gap: 40px;
  }

  .memberMeritBox__ttl {
    text-align: center;
    margin: 0 auto;
  }

  .memberMeritBox__ttlEn {
    font-size: clamp(4rem, 10.5vw, 11.3rem);
    left: 0;
    line-height: 1.1;
  }

  .memberMeritBox__list {
    width: 100%;
  }

  .memberMeritBox__item {
    padding: 30px 5px;
  }

  .memberMeritBox__itemTtl {
    font-size: 1.5rem;
  }

  .memberMeritBox__itemTtlImportant {
    font-size: 1.5em;
  }

  .memberMeritBox__txt {
    font-size: 1.3rem;
  }

  .btn_signup {
    font-size: clamp(1rem, 5vw, 2.4rem);
  }

  .btn_signup__badge {
    width: 70px;
    height: 70px;
    top: -30px;
    left: -10px;
    font-size: 1.1rem;
  }

  .btn_signup__badge::before {
    right: 1px;
    bottom: -2px;
  }

  .btn_signup__badge::after {
    border-left: 13px solid var(--color-main);
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
    right: -1px;
    bottom: -5px;
  }
}