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

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

  --color-main: #ee782b;
  --color-red: #ee782b;
  --color-orange: #ee782b;
  --color-yellow: #FFDB24;
  --color-ygreen: #8ECC11;
  --color-green: #8ECC11;
  --color-blue: #1E4FEF;
  --color-lightblue: #00ADA9;
  --color-navy: #1F447C;
  --color-purple: #662D90;
  --color-pink: #f72b80;
  --color-salmon: #ff9898;
  --color-beige: #F0E8E3;
  --color-black: #1B2A41;
  --color-darkgray: #666;
  --color-gray: #999;
  --color-lightgray: #ccc;
  --color-palegray: #F5F5F5;
  --color-palegreen: #F1F9EF;
  --color-paleorange: #ffefee;

  --grad-main: linear-gradient(94.02deg, #F88134 5.6%, #ee782b 90.26%);
  --grad-navy: linear-gradient(94.02deg, #1E5586 5.6%, #1F447C 90.26%);

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

  --rad-common: 10px;
  --rad-frame: 30px;
  --rad-button: 100vh;
  --rad-full: 100vh;

  --font-en: "Poppins", sans-serif;
  --font-XXL: clamp(26px, 3.2vw, 46px);
  --font-XL: 26px;
  --font-L: 20px;
  --font-M: 16px;
  --font-S: 14px;
}

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

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

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

/*==================================================
  HEADER
==================================================*/
.header {
  border-top: 10px solid #fff;
  border-left: 10px solid #fff;
  padding-bottom: 15px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 10000;
  transition: all .3s;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}

.header__logoWrap {
  width: 15vw;
  max-width: 200px;
  aspect-ratio: 200 / 105;
  padding-bottom: 10px;
  padding-right: 10px;
  background: #fff;
  border-radius: 0 0 clamp(15px, 2vw, 20px) 0;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header__logoWrap::before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background: url(../img/common/path_ellipce_lt.svg) no-repeat left center / cover;
  position: absolute;
  top: 0;
  right: -15px;
}

.header__logoWrap::after {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  background: url(../img/common/path_ellipce_lt.svg) no-repeat left center / cover;
  position: absolute;
  bottom: -15px;
  left: 0;
  transition: all .3s;
}

.header.scrolled {
  padding-bottom: 0;
}

.header.scrolled .header__logoWrap::after {
  left: -10px;
  height: 0;
}

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

.header__logo a {
  display: block;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
  height: 100%;
  background: url(../img/common/logo_site.svg) no-repeat center;
  background-size: contain;
}

/*ボタン*/
.header__btnList {
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  gap: 10px;
  padding-right: 20px;
  margin-top: 20px;
}

.header__btn {
  font-size: clamp(11px, 1.4vw, 14px);
  width: 11em;
}

.header__btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  color: #fff;
  text-align: center;
  padding: 1em 1.5em 1em 1em;
  border-radius: var(--rad-full);
  text-decoration: none;
  line-height: 1;
  font-weight: 500;
  position: relative;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.1));
  transition: all .3s;
}

.header__btn a::after {
  position: absolute;
  content: '';
  width: 10px;
  height: 10px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  right: 1em;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.header__btn--signup a {
  color: #FFF;
  background: var(--grad-main);
  border: 1px solid var(--color-main);
}

.header__btn a:hover {
  opacity: 1;
  filter: drop-shadow(0px 4px 4px rgba(0, 0, 0, 0.1)) brightness(1.2);
}

.header__btnTtl {
  display: flex;
  align-items: center;
  line-height: 1.5em;
}

.header__btn--signup .header__btnTtl::before {
  content: "";
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  background: url(../img/common/ico_user_white_01.svg) no-repeat center / contain;
  vertical-align: middle;
  margin-right: .5em;
}

.header__btn--signup .header__btnBalloon {
  display: block;
  height: 100%;
  position: absolute;
  top: -10px;
  left: 0;
  transform: translateX(-50%);
}

.header__btn--favorite a {
  color: #FFF;
  background: var(--grad-navy);
  border: 1px solid var(--color-navy);
}

.header__btn--favorite .header__btnTtl::before {
  content: "";
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  background: url(../img/common/ico_heart_white_01.svg) no-repeat center / contain;
  vertical-align: middle;
  margin-right: .5em;
}

input[type="submit"].header__pcLogoutBtn {
  background: var(--color-darkgray);
  width: 150px;
  height: 44px;
  border: 1px solid var(--color-darkgray);
  border-radius: 3px;
  line-height: 1;
  color: #fff;
  font-weight: bold;
  padding: 0;
}

.header__naviBtn {
  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;
  filter: drop-shadow(0 0 2px var(--color-beige));
  cursor: pointer;
}

.header__naviBtn span {
  filter: drop-shadow(0 0 2px var(--color-beige));
}

.header__naviBtn .header__naviBtn__bar {
  width: 70%;
  height: 2px;
  background-color: var(--color-black);
  display: block;
  position: absolute;
  transition: .3s;
}


.header__naviBtn .header__naviBtn__bar {
  top: calc(50% - 1em);
}

.header__naviBtn .header__naviBtn__bar::before,
.header__naviBtn .header__naviBtn__bar::after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: var(--color-black);
  display: block;
  position: absolute;
  transition: .3s;
  top: -7px;
}

.header__naviBtn .header__naviBtn__bar::after {
  top: 8px;
}

.header__naviBtn.open .header__naviBtn__bar {
  background-color: transparent;
}

.header__naviBtn.open .header__naviBtn__bar::before {
  top: 0;
  transform: rotate(45deg);
}

.header__naviBtn.open .header__naviBtn__bar::after {
  top: 0;
  transform: rotate(-45deg);
}


/*ドロップダウンメニュー*/
.spNavi {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9000;
  width: 100%;
  max-width: 480px;
  max-height: 100vh;
}

.spNavi__inner {
  background: var(--color-beige);
  overflow: hidden;
  padding-bottom: 30px;
}

/*ボタン*/
.spNavi__btnList {
  display: flex;
  flex-wrap: wrap;
  gap: 4%;
  padding: 10px 20px;
  background: var(--color-beige);
}

.spNavi__btn {
  width: 48%;
  margin-block: 5px;
}

.spNavi__btn--estates,
.spNavi__btn--login,
.spNavi__btn--logout {
  width: 100%;
}

.spNavi__btn--estates{
  cursor: pointer;
}

.spNavi__btn__link,
.spNavi__childItem__link {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: var(--rad-full);
  background: var(--color-navy);
  order: 2px solid var(--color-navy);
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  padding: 1em 1em 1em .5em;
  position: relative;
}

.spNavi__btn__link::before {
  content: "";
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  margin-right: .5em;
}

.spNavi__btn--event .spNavi__btn__link::before {
  background: url(../img/common/ico_calendar_white_01.svg) no-repeat center / contain;
}

.spNavi__btn--shoprsv .spNavi__btn__link::before {
  background: url(../img/common/ico_store_white_01.svg) no-repeat center / contain;
}

.spNavi__btn--estates .spNavi__btn__link::before {
  width: 1.2em;
  height: 1.2em;
  background: url(../img/common/ico_search_black_01.svg) no-repeat center / contain;
}

.spNavi__btn--estates .spNavi__btn__link.active::before {
  background: url(../img/common/ico_search_white_01.svg) no-repeat center / contain;
}

.spNavi__btn--login .spNavi__btn__link::before {
  background: url(../img/common/ico_login_black_01.svg) no-repeat center / contain;
}

.spNavi__btn--login .spNavi__btn__link,
.spNavi__btn__head {
  background: #fff;
  color: var(--color-black);
  border: 2px solid;
  padding: calc(1em - 2px) .5em;
}

.spNavi__btn__link:not(.spNavi__btn__head)::after,
.spNavi__childItem__link::after {
  position: absolute;
  content: '';
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  right: 1em;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.spNavi__btn--login .spNavi__btn__link::after {
  border-top: 1px solid var(--color-black);
  border-right: 1px solid var(--color-black);
}

.spNavi__btn__head::after {
  position: absolute;
  content: "＋";
  color: var(--color-gray);
  right: 1em;
  top: 50%;
  transform: translateY(-50%);
}

.spNavi__btn__head.active::after {
  content: "－";
}

.spNavi__btn__head.active {
  background: var(--color-black);
  border-color: var(--color-black);
  color: #fff;
}

.spNavi__btn .spNavi__childList {
  display: none;
}

.spNavi__childItem {
  width: 90%;
  margin: 10px auto;
}

.spNavi__btn--logout .spNavi__btn__link {
  width: 60%;
  margin: 0 auto;
  font-weight: 500;
  background: var(--color-gray);
  font-size: inherit;
  padding: calc(1em - 2px) .5em;
}

/*グローバルメニュー*/
.spNavi__list {
  display: flex;
  flex-wrap: wrap;
  background: #fff;
}

.spNavi__item {
  width: 50%;
  display: flex;
}

.spNavi__item.w100p {
  width: 100%;
}

.spNavi__item a {
  display: flex;
  align-items: center;
  width:100%;
  height: 100%;
  padding: 15px 15px 15px 30px;
  border-top: 1px solid #E0E0E0;
  font-size: 14px;
  position: relative;
}

.spNavi__item:last-child a {
  border-bottom: 1px solid #E0E0E0;
}

.spNavi__item a::before {
  position: absolute;
  content: '';
  width: 6px;
  height: 6px;
  border-top: 1px solid;
  border-right: 1px solid;
  transform: rotate(45deg) translateY(-50%);
  top: 50%;
  left: 10px;
}

/* 会員ログイン後　ボタンとモーダルの内部 */
.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;
}

/* モーダル */
.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;
}


/*
  ===== globalnavigation ==========================================
  */
.pcNavi {
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, .15));
  margin: 0 auto 0 15px;
}

.pcNavi__list {
  background: #fff;
  padding: 0 20px;
  border-radius: var(--rad-full);
  max-width: 1200px;
  display: flex;
  align-items: center;
  margin-top: 20px;
}

.pcNavi__item {
  font-size: clamp(12px, 1.4vw, 16px);
}

.pcNavi__item>a {
  display: block;
  width: 100%;
  padding: 17px 1em;
  text-align: center;
  font-weight: bold;
  text-decoration: none;
  white-space: nowrap;
}

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

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

.pcNavi__item--parent>a::after {
  content: '';
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border-bottom: 2px solid var(--color-gray);
  border-right: 2px solid var(--color-gray);
  transform: rotate(45deg) translateX(50%) translateY(-100%);
}

.pcNavi__childList {
  position: absolute;
  top: calc(100% - 5px);
  min-width: 100%;
  display: flex;
  z-index: 999;
  border-radius: var(--rad-full);
  padding-inline: 20px;
  background: var(--color-palegray);
  overflow: hidden;
}

.pcNavi__childItem {
  display: block;
  overflow: hidden;
  height: 0;
  -moz-transition: .5s;
  -webkit-transition: .5s;
  -o-transition: .5s;
  -ms-transition: .5s;
  transition: .5s;
  white-space: nowrap;
}

@media (any-hover:hover) {
  .pcNavi__item:hover .pcNavi__childItem {
    overflow: visible;
    height: 54px;
  }
}

.pcNavi__childItem>a {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 14px;
  text-decoration: none;
  line-height: 1;
  padding: 0 1em;

}

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

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

.pcMemberNavi {
  margin: 0 auto;
  padding: 10px;
  background: rgba(204, 204, 204, 0.9);
  text-align: center;
}

.pcMemberNavi__box {
  margin: 0 auto;
}

.pcMemberNavi__ttl {
  width: 160px;
  text-align: center;
  vertical-align: middle;
  font-weight: bold;
  border-right: dotted 1px #333333;
}

.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--link {
  margin-left: 20px;
  padding-left: 15px;
  font-weight: bold;
  background: url(../img/common/icon01.webp) no-repeat left 5px;
  background-size: 8px auto;
}

input[type="submit"].pcMemberNavi__loginBtn,
input[type="submit"].pcMemberNavi__logoutBtn {
  border: none;
  padding: 10px;
  color: #fff;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
  background: #333;
  border-radius: 3px;
}

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

.footFix .ancPagetop {
  width: 60px;
  height: 60px;
  font-family: var(--font-en);
  font-weight: bold;
  text-align: center;
  position: absolute;
  right: 10px;
  bottom: 70px;
  cursor: pointer;
  transition: all .3s;
  filter: drop-shadow(0 0 1px #fff);
}

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

.footFix .ancPagetop::before {
  content: "";
  width: 2px;
  height: 30px;
  background: currentColor;
  position: absolute;
  top: 25px;
  left: calc(50% - 1px);
  border-radius: 2px;
}

.footFix .ancPagetop::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid;
  border-right: 2px solid;
  position: absolute;
  top: 25px;
  left: calc(50%);
  transform: translateX(-50%) rotate(-45deg);
}

/*footer*/
.footer {
  border-top: 1px solid;
}

.footer--home {
  border: none;
}

.footer__inner {
  width: 90%;
  margin: 0 auto;
  padding: var(--gutter) 0;
  display: flex;
  gap: 30px;
}

.footer__leftCont {
  width: 50%;
  max-width: 540px;
}

.footer__rightCont {
  width: 50%;
  max-width: 500px;
}

.footer__logo {
  width: 80%;
  max-width: 160px;
}

/*btn*/
.footerActions__btnWrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.footerActions__btn {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 600;
  display: flex;
  align-items: center;
  margin-right: 1.5em;
}

.footerActions__btn::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 2em;
  height: 2em;
  margin-right: .25em;
  background: url(../img/common/ico_user_white_01.svg) no-repeat center / auto 60%,
    var(--grad-main);
  border-radius: var(--rad-full);
}

.footerActions__btn::after {
  content: '';
  width: 1rem;
  height: 1rem;
  border-top: 2px solid var(--color-main);
  border-right: 2px solid var(--color-main);
  transform: rotate(45deg);
  margin-left: 1em;
}

.footerActions__btn--signup {
  color: var(--color-main);
}

.footerActions__btn--shoprsv {
  color: var(--color-navy);
}

.footerActions__btn--shoprsv::before {
  background: url(../img/common/ico_store_white_01.svg) no-repeat center / auto 60%,
    var(--grad-navy);
}

.footerActions__btn--shoprsv::after {
  border-color: var(--color-navy);
}

input[type="submit"].footerActions__logoutBtn {
  border: 1px solid var(--color-gray);
  background: var(--color-gray);
  padding: 6px 12px;
  display: inline-block;
  color: #fff;
  text-align: center;
  border-radius: var(--rad-full);
  font-size: .9em;
  font-weight: normal;
}

/*shops*/
.footer__shops__item {
  margin-top: var(--gutter-narrow);
  font-size: clamp(12px, 1.8vw, 16px);
  font-weight: 600;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.footer__shops__item__tel {
  font-size: clamp(24px, 4.8vw, 40px);
  font-weight: 700;
  font-family: var(--font-en);
  line-height: 1;
  margin: 10px 0;
}

.footer__shops__item__tel::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 1em;
  height: 1em;
  background: url(../img/common/ico_phone_black_01.svg) no-repeat center / contain;
}

.footer__shops__SNSList {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.footer__shops__SNS__item {
  width: 30px;
  height: 30px;
}

.footer__shops__item__photo {
  width: 30%;
  max-width: 120px;
  aspect-ratio: 1;
  border-radius: var(--rad-full);
}

.footerSitemap {
  display: flex;
  /* Safari */
  justify-content: space-between;
  max-width: 1080px;
  width: 100%;
  padding-top: 2rem;
  border-top: 1px solid var(--color-gray);
  font-size: clamp(1.2rem, 1.2vw, 1.3rem);
}

.footerSitemap__item {
  line-height: 1;
  font-weight: 500;
  margin-bottom: 1.6rem;
}

.footerSitemap__item dt,
.footerSitemap__item dd {
  font-weight: 500;
  margin-bottom: 1.6rem;
}

.footerSitemap__item dd::before {
  content: "―";
  margin-right: .5em;
}

.footerSitemap__item a {
  text-decoration: none;
}

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

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

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

.footer__bottom {
  color: #FFFFFF;
  background: var(--color-black);
  padding: 16px;
  font-size: clamp(11px, 1.2vw, 14px);
}

.footer__bottomLink {
  display: flex;
  justify-content: center;
  gap: 1rem;
  line-height: 1;
  margin-bottom: 1rem;
}

.footer__bottomLink__item:nth-of-type(2) {
  border-left: 1px solid;
  border-right: 1px solid;
  padding-inline: 1rem;
}

.footerCopy {
  display: block;
  width: 100%;
  font-size: inherit;
  font-style: normal;
  text-align: center;
  position: relative;
}

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

/*==================================================
  MAIN
==================================================*/
/*************** メインタイトル ****************/
.ttlWrap {
  background: var(--color-beige);
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  height: 240px;
  padding-top: 40px;
  margin: 10px 10px var(--gutter-wide);
  border-radius: var(--rad-common);
}

.mainTtl {
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: bold;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#container {
  margin: 0 auto !important;
}

/*--BREAD--*/
#bread {
  width: 100%;
  position: absolute;
  /*メイン見出し高さ*/
  top: 240px;
  left: 0;
  margin: 0 auto;
  padding: 10px;
  font-size: clamp(1.1rem, 1.2vw, 1.2rem);
  letter-spacing: normal;
}

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

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

#bread span[typeof="ListItem"] {
  display: inline-block;
  vertical-align: middle;
  max-width: 50%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@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, 2vw, 2.2rem);
  margin-bottom: 1em;
  font-weight: 600;
  padding: .5em 0;
  border-bottom: 1px solid var(--color-gray);
}

#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;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.oc_bar01_open:after,
.oc_bar01:after,
.srchbox01 .selectbox01 .selectbox_ttl_open:after,
.srchbox01 .selectbox01 .selectbox_ttl:after {
  cursor: pointer;
  line-height: 100%;
  display: block;
  content: "＋";
  color: #fff;
  border-radius: var(--rad-full);
  padding: 5px;
  background: var(--color-main);
}

.oc_bar01:after,
.srchbox01 .selectbox01 .selectbox_ttl:after {
  content: "－";
}

.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: 2.5vw !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) !important;
  background-size: contain !important;
}

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

/*dots*/
.slick-dots {
  max-width: var(--width-content);
  margin-inline: 5vw;
  display: flex !important;
  align-items: center;
  justify-content: center;
  position: relative !important;
  bottom: 0 !important;
}

.slick-dots li {
  flex: 1;
  margin: 0 !important;
}

.slick-dots li button {
  width: 100% !important;
  padding: 0 !important;
}

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

.slick-dots li button:before {
  content: "" !important;
  width: 100% !important;
  height: 4px !important;
  opacity: 1 !important;
  border-radius: 0 !important;
}

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

.slick-dots li button:before {
  background: var(--color-lightgray);
  transition: 0.3s;
}

/*==================================================
  shopInfoBox
==================================================*/
.shopInfoBox__ttl {
  text-align: center;
  margin: 0 auto 30px;
}

.shopInfoBox__ttl img {
  max-width: 217px;
  width: 90%;
}

.shopInfoBox__inner {
  width: 100%;
  margin: 0 auto 30px;
  background: #fff;
  padding: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.shopInfoBox__inner:last-child {
  margin-bottom: 0;
}

.shopInfoBox__imgBox {
  width: 45%;
  max-width: 500px;
}

.shopInfoBox__imgList {
  position: relative;
}

.shopInfoBox__img {
  text-align: center;
  border-radius: var(--rad-common);
  overflow: hidden;
}

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

.shopInfoBox .slick-dots {
  bottom: -15px !important;
}

/*-- 店舗画像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%;
  border-radius: 5px;
  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: 55%;
  max-width: calc(var(--width-content) - 500px);
  padding: 0 20px;
}

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

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

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

.shopInfoBox__shopCommentBox {
  width: 100%;
  margin-top: 30px;
  padding: 20px;
}

.shopInfoBox__shopCommentTtl {
  font-weight: bold;
  margin-bottom: 5px;
}

.shopInfoBox__map {
  width: 100%;
  height: 250px;
  margin-top: 30px;
}


/*==================================================
  サイド追従
==================================================*/
/* sideFixBtn */
.sideFix {
  position: fixed;
  width: 126px;
  bottom: 150px;
  right: 0;
  z-index: 1000;
  display: none;
}

.sideFix__item--signup a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 116px;
  aspect-ratio: 1;
  position: relative;
  background: var(--grad-main);
  border-radius: var(--rad-full);
  outline: 1px solid var(--color-main);
  outline-offset: 3px;
  text-align: center;
}

.sideFix__item__balloon {
  position: absolute;
  top: -55px;
  left: -40px;
}

.sideFix__item__txt {
  color: #fff;
  font-weight: 600;
}

.sideFix__item__close {
  position: absolute;
  top: 0;
  right: 10px;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-radius: var(--rad-full);
  cursor: pointer;
  transition: all .3s;
  box-shadow: 0 0 1px 1px rgba(0, 0, 0, .15);
}

.sideFix__item--signup a:hover {
  opacity: 1;
  outline-offset: 5px;
  filter: brightness(1.4);
}

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


  /*ドロップダウンメニュー*/
  .spNavi {
    top: 100px;
    border: 2px solid var(--color-black);
    border-right: none;
    border-radius: var(--rad-frame) 0 0 var(--rad-frame);
    overflow: hidden;
    overflow-y: scroll;
    max-height: calc(100vh - 120px);
  }

  .spNavi__inner {
    box-shadow: 1px 1px 2px 2px rgba(0, 0, 0, .15);
    height: 100%;
  }

}


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

  /*==================================================
    HEADER PC/TABLET
  ==================================================*/
  .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
  ==================================================*/

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

  .footer__leftCont {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .footer__rightCont {
    width: 80%;
  }

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

  .footerActions_logoutBtn {
    max-width: unset;
  }


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


}

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

  /*==================================================
    HEADER SP
  ==================================================*/
  .header {
    height: 100px;
    display: flex;
    justify-content: space-between;
    transition: all .3s;
  }

  .header.sphidden {
    transform: translateY(-100px);
    overflow: hidden;
  }

  .header.scrolled {
    height: 65px;
    padding-bottom: 0;
  }

  .header.scrolled .header__logoWrap::after {
    left: -10px;
  }

  .header__inner {
    width: 57%;
    height: 75px;
    flex-grow: 1;
    margin: 0 10px 0 0;
    transition: all .3s;
  }

  .header.scrolled .header__inner {
    height: 55px;
  }

  .header__logoWrap {
    width: 36%;
    max-width: 140px;
    height: 100%;
    padding-bottom: 5px;
  }

  .header__logo {
    width: 100%;
  }

  .header__logo a {
    border-radius: 10px;
  }

  /*ヘッダーボタン*/
  .header__btnBox {
    width: 64%;
    padding-left: 10px;
  }

  .header__btnList {
    height: 100%;
    gap: 4px;
    padding-right: 0;
    margin-top: 5px;
  }

  .header__btn a {
    font-size: 12px;
    padding: 5px;
    height: 70%;
    transition: all .3s;
  }

  .header__btnTtl {
    flex-direction: column;
  }

  .header.scrolled .header__btn a {
    font-size: 10px;
  }

  .header__btn a::after {
    content: none;
  }

  .header__btn .header__btnTtl::before {
    display: block;
    margin: 0 auto 2px;
  }

  /*ドロップダウンメニュー*/
  .spNavi {
    max-width: none;
    top: 0;
    bottom: 0;
    left: 0;
    height: 100vh;
    background: #fff;
    padding-top: 100px;
    overflow-y: scroll;
  }

  .spNavi__inner {
    padding-bottom: 0;
    overflow-y: scroll;
  }

  html:has(.header__naviBtn.open) {
    overflow: hidden;
  }

  .header:has(.header__naviBtn.open) {
    background: #fff;
  }

  .header.scrolled+.spNavi {
    padding-top: 65px;
  }

  .spNavi__item a {
    font-size: 12px;
  }

  /*==================================================
    FOOTER SP
  ==================================================*/
  /*footFix*/
  .footFix {
    bottom: 10%;
  }

  .footFix .ancPagetop {
    right: 0;
    bottom: 0;
  }

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

  .footer__leftCont,
  .footer__rightCont {
    width: 100%;
    text-align: center;
  }

  .footer__logo {
    margin-inline: auto;
  }

  .footerActions__btnWrap {
    margin: 10px auto;
    justify-content: center;
  }

  .footer__shops__item {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
  }

  .footer__shops__SNSList {
    justify-content: center;
    margin-bottom: 20px;
  }

  .footerMenu {
    width: 100%;
    height: 60px;
    padding: 0;
    position: fixed;
    bottom: 0px;
    z-index: 999;
    clear: both;
    background: var(--color-beige);
    border-top: 1px solid;
  }

  .footerMenu__list {
    width: 100%;
    border-collapse: collapse;
  }

  .footerMenu__item {
    width: 25%;
    height: 60px;
    line-height: 1.2;
    text-align: center;
    vertical-align: middle;
    border-left: 1px solid;
  }

  .footerMenu__item:first-child {
    border-left: none;
  }

  .footerMenu__item a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    line-height: 1.4;
    font-size: 13px;
  }

  .footerMenu__item img {
    width: 34%;
    max-height: 40%;
  }

  .footerActions__btnWire form {
    width: 220px;
  }

  /*==================================================
    MAIN SP
  ==================================================*/
  .ttlWrap {
    height: 140px;
    padding-top: 70px;
    margin-bottom: 60px;
  }

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

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

  /*サブタイトル*/
  #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__inner {
    padding: 20px 0;
    width: 96%;
  }

  .shopInfoBox__ttl {
    width: 50%;
  }

  .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: 2%;
    font-size: clamp(1.2rem, 1.4vw, 1.6rem);
  }

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

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

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

  .shopInfoBox__map {
    margin-top: 3%;
  }
}