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

/*==================================================
  CSS CUSTOM PROPERTY
==================================================*/
:root {
  --width-content: 1200px;
  --font-body: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", YuGothic, "Yu Gothic medium", Meiryo, "sans-serif";
  --font-en: "Barlow", sans-serif;
  --font-en2: "Caveat", sans-serif;

  --color-main: #FFF000;
  --color-red: #FC5000;
  --color-orange: #FC5000;
  --color-yellow: #FFF000;
  --color-ygreen: #8ECC11;
  --color-green: #8ECC11;
  --color-blue: #1E4FEF;
  --color-lightblue: #00ADA9;
  --color-navy: #15126F;
  --color-purple: #662D90;
  --color-pink: #f72b80;
  --color-salmon: #ff9898;
  --color-black: #3E3939;
  --color-darkgray: #666;
  --color-gray: #999;
  --color-lightgray: #ccc;
  --color-palegray: #F5F5F5;
  --color-palegreen: #F1F9EF;
  --color-paleorange: #ffefee;
  --color-paleyellow: #FFFDDE;
  --color-waterblue: #E8F6FF;

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

  --rad-common: 0;
}

@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: var(--font-body);
  font-size: 10px;
  line-height: 1.6;
  background: #fff;
  color: var(--color-black);
}

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

body {
  font-size: 1.6rem;
  /* overflow-x: hidden; */
}

#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__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.header__siteInfoBox {
  display: flex;
  align-items: center;
  gap: 20px;
}

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

.header__counter {
  font-size: 1.4rem;
  font-weight: bold;
  position: relative;
}

.header__countNum {
  font-family: var(--font-en);
  font-size: 2rem;
}

.header__counter::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  transform: rotate(-10deg);
  width: 65px;
  border-bottom: 1px solid var(--color-black);
}

.header__counter::after {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  transform: rotate(10deg);
  width: 65px;
  border-bottom: 1px solid var(--color-black);
}

.header__contactBox {
  display: flex;
  align-items: center;
  gap: 1vw;
}

.header__pcContactBox {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

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

.header__pcBtn a {
  display: block;
  text-align: center;
  position: relative;
  font-size: clamp(1.6rem, 2.2vw, 1.8rem);
  font-weight: bold;
}

.header__pcBtn a::before {
  position: absolute;
  content: '';
  width: clamp(17px, 2.3vw, 20px);
  height: clamp(17px, 2.3vw, 20px);
  left: -23px;
  top: 50%;
  transform: translateY(-45%);
}

.header__pcBtn--emember a {
  color: var(--color-red);
}

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

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__btn--shoprsv a::before {
  background: url(../img/common/icon_reservation.svg) no-repeat center / contain;
  left: -32%;
}

.header__btn--favorite a::before {
  background: url(../img/common/icon_favorite.svg) no-repeat center / contain;
  left: -26%;
}

.header__telBox {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
  flex-wrap: nowrap;
}

.header__telNum {
  font-family: var(--font-en);
  font-weight: bold;
  font-size: clamp(2rem, 2.4vw, 3.6rem);
  position: relative;
  padding-left: clamp(15px, 2.5vw ,25px);
  line-height: 1;
}

.header__telNum::before {
  position: absolute;
  content: "";
  background: url(../img/common/icon_tel.svg) no-repeat center / contain;
  width: clamp(20px, 2.9vw, 26px);
  aspect-ratio: 26 / 26;
  left: -5px;
  top: 55%;
  transform: translateY(-50%);
}

.header__telTime {
  display: flex;
  align-items: baseline;
  flex-shrink: 0;
  gap: 10px;
  line-height: 1.2;
}

/*ヘッダーハンバーガーメニュー*/
.header__menuBtn {
  width: clamp(60px, 7.6vw,70px);
  height: clamp(60px, 7.6vw,70px);
  background: var(--color-main);
  font-size: clamp(1.5rem, 2vw, 1.7rem);
  font-weight: bold;
  font-family: var(--font-en);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  line-height: 1;
  padding: 10px;
  position: relative;
  color: var(--color-navy);
  box-shadow: 5px 5px 0 var(--color-lightgray);
  cursor: pointer;
  transition: 0.2s;
}

.header__menuBtn span {
  width: 67%;
  height: 2px;
  background-color: var(--color-navy);
  display: block;
  position: absolute;
}

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

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

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

.header__menuBtn:active {
  background-color: #fff;
}

@media (any-hover:hover) {
  .header__menuBtn:hover {
    background-color: #fff;
    box-shadow: none;
    transform: translate(5px, 5px);
  }
}

/* モーダルメニュー(ハンバーガーメニューの内部) */
.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);
  box-shadow: 5px 5px 0 var(--color-lightgray);
  cursor: pointer;
  transition: 0.2s;
  z-index: 10;
}

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

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

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

@media (any-hover:hover) {
  .header__modalMenuClose:hover {
    background-color: #fff;
    box-shadow: none;
    transform: translate(5px, 5px);
  }

}

.modalMenu .footer__inner {
  padding: var(--gutter-wide) 0;
}

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

.pcNavi__list {
  max-width: var(--width-content);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.pcNavi__item {
  width: 20%;
  height: 80px;
}

.pcNavi__item>a {
  display: flex;
  width: 100%;
  height: 100%;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  line-height: 1;
  gap: 5px;
  transition: 0.3s;
  position: relative;
  color: var(--color-navy);
}

.pcNavi__item:not(:first-of-type)>a::after {
  content: "";
  display: block;
  width: 1px;
  height: 40px;
  position: absolute;
  top: 50%;
  left: -1px;
  transform: translateY(-50%);
  border-left: 1px solid var(--color-navy);
}

.pcNavi__itemTxt {
  font-size: 12px;
  font-weight: 600;
  vertical-align: middle;
  line-height: 1.4;
}

.pcNavi__itemTxt::after {
  content: attr(data-en);
  text-transform: uppercase;
  display: block;
  font-family: var(--font-en);
  font-weight: bold;
  font-size: clamp(1.4em, 1.8vw, 1.66em);
  line-height: 1.3;
}

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

  .pcNavi__item>a:hover i {
    color: #FFF;
  }
}

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

.pcNavi__childList {
  position: absolute;
  width: 100%;
  display: block;
  z-index: 999;
  overflow: hidden;          
  visibility: hidden; 
  transform: translateZ(0);
}

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

@media (any-hover:hover) {
  .pcNavi__item:hover .pcNavi__childList {
    visibility: visible;      
  }
  
  .pcNavi__item:hover .pcNavi__childItem {
    overflow: visible;
    height: 54px;
    background-color: #fff;
    border-bottom: 1px solid var(--color-navy);
  }
}

.pcNavi__childItem>a {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background: #fff;
  color: var(--color-navy);
  font-size: 14px;
  text-decoration: none;
  line-height: 1;
}

@media (any-hover:hover) {
  .pcNavi__childItem a:hover {
    background: var(--color-waterblue);
  }
}

/*ボタン風アイテム*/
.pcNavi__item--btn {
  width: min(22%, 220px);
  height: 55px;
}

.pcNavi__item--btn > a {
  background: var(--color-yellow);
  box-shadow: 5px 5px 0 var(--color-lightgray);
}

.pcNavi__item--btn + .pcNavi__item--btn {
  margin-left: clamp( 10px, 1.8vw,15px);
}

.pcNavi__item--btn + .pcNavi__item--btn + .pcNavi__item {
  margin-left: auto;
}

.pcNavi__item--btn + .pcNavi__item--btn > a::after {
  content: none;
}

/*
  ===== headerFix ==========================================
  */

.header.fixed {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10000;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  animation: header-slidein 0.4s;
}

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

  100% {
    transform: translateY(0);

  }
}

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

/*ヘッダー固定時のロゴ*/
.header.fixed .header__logo a {
  width: auto;
  height: 55px;
}

/*ヘッダー固定時のサイト情報・リンク*/
.header.fixed .header__pcContactBox {
  gap: 5px;
}

.header.fixed .header__pcBtn a {
  font-size: 1.6rem;
}

.header.fixed .header__pcBtn a::before {
  width: 17px;
}

.header.fixed .header__telNum {
  font-size: 2rem;
  padding-left: 20px;
}

.header.fixed .header__telNum::before {
  width: 20px;
  left: -2px;
}

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

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

.pcMemberNavi {
  margin: 0 auto;
  padding: 10px;
  border-top: 1px solid var(--color-lightgray);
  border-bottom: 1px solid var(--color-lightgray);
  text-align: center;
}

.pcMemberNavi__box {
  margin: 0 auto;
}

.pcMemberNavi__ttl {
  width: 160px;
  text-align: center;
  vertical-align: middle;
  font-size: 1.4rem;
  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;
  font-size: 1.4rem;
}

/*ログイン時*/
.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: var(--color-navy);
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
  font-size: 1.4rem;
  background: var(--color-main);
  box-shadow: 3px 3px 0 var(--color-lightgray);
}

/*
===== sideFix ==========================================
*/

.sideFix {
  z-index: 10000;
  position: fixed;
  bottom: 200px;
  right: 0;
  width: 50px;
  display: none;
}

.sideFix__list {
  width: 50px;
}

.sideFix__item {
  margin-bottom: 15px;
}

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

.sideFix__link {
  display: flex;
  transform: scale(1);
  height: 150px;
  width: 50px;
  position: relative;
  font-weight: bold;
  line-height: 1;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  background: var(--color-red);
  color: #fff;
  writing-mode: vertical-rl;
  text-orientation: upright;
  text-align: center;
  align-items: center;
  justify-content: center;
  gap: 3px;
  transition: transform 0.2s ease-in-out;
}

.sideFix__item--shoprsv .sideFix__link {
  background: var(--color-yellow);
  color: var(--color-navy)
}

.sideFix__link::before {
  position: relative;
  display: block;
  content: "";
  background: url(../img/common/icon_signup.svg) no-repeat center / contain;
  width: 20px;
  aspect-ratio: 24 / 24;
  filter: brightness(0) saturate(100%) invert(100%);
}

.sideFix__item--shoprsv .sideFix__link::before {
  background: none;
  filter: none;
  -webkit-mask: url(../img/common/icon_reservation.svg) no-repeat center / contain;
  mask: url(../img/common/icon_reservation.svg) no-repeat center / contain;
  background-color: var(--color-navy);
}

.sideFix__item--shoprsv .sideFixMenu__subtxt {
  position: absolute;
  top: 50%;
  left: -17px;
  transform: translateY(-50%);
  background-color: var(--color-navy);
  color: #fff;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-writing-mode: vertical-rl;
  -moz-writing-mode: vertical-rl;
  -ms-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  -webkit-text-orientation: upright;
  -moz-text-orientation: upright;
  -ms-text-orientation: upright;
  text-orientation: upright;
  letter-spacing: 0.01em;
  width: 22px;
  height: 76px;
}

.sideFix__item--shoprsv .sideFixMenu__subtxt::before {
  content: "";
  border-left: 5px solid var(--color-navy);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  position: absolute;
  top: 50%;
  right: -5px;
  transform: translateY(-50%);
}

@media (any-hover:hover) {
  .sideFix__link:hover {
    transform: translateX(5px);
    opacity: 1;
  }
}

/*==================================================
  FOOTER
==================================================*/
/*footFix*/
.footFix {
  width: 100%;
  position: fixed;
  bottom: 130px;
  right: 7px;
  width: 32px;
  height: 41px;
  z-index: 999;
}

.footFix .ancPagetop a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 41px;
  padding-top: 10px;
  color: var(--color-black);
  position: relative;
  font-family: var(--font-en);
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
}

.footFix .ancPagetop a::before {
  content: "";
  position: absolute;
  top: 12%;
  right: 8%;
  transform: translate(-30%,-50%) rotate(-90deg);
  width: 20px;
  height: 6px;
  background:
    /*横線*/ linear-gradient(var(--color-black) 0 0) left bottom / 100% 1px no-repeat,
    /*三角形*/ linear-gradient(225deg, transparent 50%, var(--color-black) 0) right 0 bottom 1px / 5px 5px no-repeat;
  transition: transform 0.3s ease;
}

/*PC用ホバーアクション*/
@media (hover: hover) and (pointer: fine) {

  .footFix .ancPagetop a:hover,
  .footFix .ancPagetop a:focus {
    transform: translateY(-5px);
    background-position: top;
    opacity: 1;
  }
}

/*SP用タップアクション*/
@media (hover: none) and (pointer: coarse) {

  .footFix .ancPagetop a:active,
  .footFix .ancPagetop a:focus {
    transform: translateY(-5px);
    opacity: 1;
  }
}

/*footerBnrBox*/
.footerBnrBox {
  padding: 70px 0;
}

.footerBnrBox__list {
  display: flex;
  justify-content: space-between;
}

.footerBnrBox__item {
  width: calc((100% - 5%)/4);
  aspect-ratio: 285 / 100;
  display: flex;
  background-color: #fff;
}

.footerBnrBox__item a {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: url(../img/common/bnr_footerLink_01.webp) no-repeat center / cover;
}

.footerBnrBox__item--qa a {
  background-image: url(../img/common/bnr_footerLink_02.webp);
}

.footerBnrBox__item--offer a {
  background-image: url(../img/common/bnr_footerLink_03.webp);
}

.footerBnrBox__item--company a {
  background-image: url(../img/common/bnr_footerLink_04.webp);
}

.footerBnrBox__item a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255,255,255,0.7);
  transition: opacity 0.3s ease;
  z-index: 1;
}

@media (any-hover: hover) {
  .footerBnrBox__item a:hover::before {
    background-color: rgba(255, 255, 255, 0.8);
  }

  .footerBnrBox__item a:hover .footerBnrBox__itemTtl {
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.footerBnrBox__itemTtl {
  text-align: center;
  line-height: 1.2;
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  font-weight: bold;
  position: absolute;
  width: 100%;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}


/*footer*/
footer {
  background: var(--color-paleyellow);
}

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

/*店舗情報*/
.footer__shopInfoBox {
  width: min(90%, 500px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--gutter-narrow);
}

.footer__logo {
  width: 333px;
}

.footer__shopItem {
  display: flex;
  gap: clamp(10px, 2.3vw, 20px);
}

.footer__shopImgBox {
  width: clamp(120px, 16vw, 240px);
  height: auto;
  aspect-ratio: 3 / 2;
  /*margin-right: clamp(10px, 2.3vw, 20px);*/
  flex-shrink: 0;
}

.footer__shopImg {
  width: 100%;
  object-fit: cover;
}

.footer__shopInfo {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1;
}

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

.footer__shopAddress,
.footer__shopTime {
  line-height: 1.4;
}

.footer__telNum,
.footer__shopTime {
  font-family: var(--font-en);
  font-size: 1.6rem;
  position: relative;
  padding-left: 25px;
}

.footer__telNum::before,
.footer__shopTime::before {
  position: absolute;
  content: "";
  background: url(../img/common/icon_tel.svg) no-repeat center / contain;
  width: 20px;
  aspect-ratio: 26 / 26;
  left: -1px;
  top: 55%;
  transform: translateY(-50%);
}

.footer__shopTime::before {
  background: url(../img/common/icon_clock.svg) no-repeat center / contain;
  aspect-ratio: 24 / 24;
}

.footer__shopName,
.footer__shopAddress,
.footer__shopTelBox,
.footer__shopTime {
  margin-bottom: 7px;
}

/*SNS icon*/
.snsBox {
  display: flex;
  gap: 10px;
  padding: 5px 0;
}

.snsBox__item {
  width: 30px;
}

/*フッターリンク*/
.footer__linkBox {
  width: min(90%, 660px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--gutter);
}

.footer__btnWrap {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer__btn {
  width: 210px;
  height: 50px;
}

.btn_common.footer__btn a {
  text-align: center;
  padding: 16px 0;
  font-size: 1.7rem;
  border: none;
  box-shadow: 5px 5px 0 var(--color-lightgray);
}

.btn_common.footer__btn a::after {
  right: 4%;
  width: 14px;
  height: 4px;
  background:
    /* 横線 */ linear-gradient(#fff 0 0) left bottom / 100% 1px no-repeat, 
    /* 三角形 */ linear-gradient(225deg, transparent 50%, #fff 0) right 0 bottom 0 / 4px 4px no-repeat;
}

.btn_common.footer__btn--signup a {
  background: var(--color-red);
  color: #fff;
}

.btn_common.footer__btn--shoprsv a {
  background: var(--color-yellow);
  color: var(--color-navy);
}

.btn_common.footer__btn--shoprsv a::after {
  background:
    /* 横線 */ linear-gradient(var(--color-navy) 0 0) left bottom / 100% 1px no-repeat, 
    /* 三角形 */ linear-gradient(225deg, transparent 50%, var(--color-navy) 0) right 0 bottom 0 / 4px 4px no-repeat;
}

.btn_common.footer__btn--contact a {
  background: var(--color-navy);
  color: #fff;
}

/*ログアウトボタン*/
input[type="submit"].footer__logout {
  width: 100%;
  padding: 16px 0;
  border-radius: 0;
  font-size: 1.7rem;
  font-weight: bold;
  line-height: 1;
  box-shadow: 5px 5px 0 var(--color-lightgray);
}

/*サイトマップ*/
.footer__sitemap {
  width: 90%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 25px;
}

.footer__sitemapList {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer__sitemapItem {
  position: relative;
  font-size: 1.4rem;
  line-height: 1;
  padding-left: 10px;
}

.footer__sitemapItem a::before {
  position: absolute;
  content: '';
  width: 5px;
  height: 7px;
  background-color: var(--color-black);
  clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
  top: calc(50% - 2px);
  left: 0;
}

.footerCopy {
  display: block;
  width: 100%;
  padding: 10px 0;
  font-style: normal;
  font-size: 14px;
  color: #FFFFFF;
  background: var(--color-navy);
  text-align: center;
  position:relative;
}

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

/*==================================================
  MAIN
==================================================*/
/*************** メインタイトル ****************/
.ttlWrap {
  background: url('../img/common/page_title01_bg.webp') center;
  background-size: cover;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: 50px 0;
}

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

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

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

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

/*ホワイトのパンくず*/
.shop-reservePage #bread,
.simulationPage #bread {
  color: #fff;
}

.shop-reservePage #bread>span:not(:last-child)::after,
.simulationPage #bread>span:not(:last-child)::after {
  border-color: #fff;
}

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

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

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


/*サブタイトル*/
#main .secTtl {
  font-size: clamp(1.7rem, 2vw, 1.8rem);
  font-weight: bold;
  padding: 15px 0 15px 15px;
  background: url(../img/common/icon01.webp) no-repeat left center;
  background-size: 8px;
  border-bottom: solid 2px #CCC;
  line-height: 1.3;
  margin-bottom: 20px;
}

#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.4em;
  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;
  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;
  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-slide {
  height: auto !important;
}

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

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

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

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

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

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

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

.slick-dots li button:before {
  content: "" !important;
  width: 13px !important;
  height: 13px !important;
  background: #999;
  border-radius: 8px;
  opacity: 1 !important;
}

.slick-dots li.slick-active button:before {
  background: #333;
}

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

/*==================================================
  bannerWrap
==================================================*/

.bannerWrap {
  margin: 30px auto 0;  /*wireクラスと併用する*/
}

/*==================================================
  shopInfoBox
==================================================*/
.shopInfoBox {
  position: relative;
  padding: var(--gutter) 0;
}

.shopInfoBox::before {
  content: "";
  position: absolute;
  width: 62dvw;
  height: 100%;
  left: 0;
  top: 0;
  background: var(--color-paleyellow);
  z-index: -1;
}

.shopInfoBox__ttl {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  font-size: clamp(4.2rem, 7.2vw, 6rem);
  margin-bottom: clamp(25px, 4.5vw, 40px);
}

.shopInfoBox__ttl--en {
  font-family: var(--font-en);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.05em;
}

.shopInfoBox__ttl--ja {
  font-size: 0.4em;
  font-weight: bold;
}

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

.shopInfoBox__inner:last-of-type {
  margin-bottom: 0;
}

.shopInfoBox__imgBox {
  width: 47%;
  max-width: 550px;
}

.shopInfoBox__imgList {
  position: relative;
}

.shopInfoBox__img {
  text-align: center;
}

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

/*店舗写真　サムネイルスライダー*/
.shopInfoBox__imgBox {
  margin-bottom: 20px;
}

.shopInfoBox__thumImages {
  position: relative;
  overflow: hidden;
}

.shopInfoBox__thumImages .slick-slider {
  height: auto !important;
  -webkit-backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
}

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

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

.shopInfoBox__shopThumImage {
  margin: 10px 2px;
  width: 25%;
}

.shopInfoBox__shopThumImage:hover {
  cursor: pointer;
}

.shopInfoBox__shopThumImage img {
  opacity: 0.5;
}

.shopInfoBox__shopThumImage.slick-current img {
  opacity: 1;
}

.shopInfoBox__infoTxtWrap {
  width: 51%;
  max-width: 615px;
}

.shopInfoBox__dataBox {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: var(--gutter-supernarrow);
  background: rgba(255, 255, 255, 0.70);
}

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

.shopInfoBox__dataTtl {
  max-width: 140px;
  width: 35%;
  font-weight: bold;
  flex-shrink: 0;
  font-size: clamp(1.4rem, 2vw, 1.6rem);
}

.shopInfoBox__data {
  flex-grow: 1;
  font-weight: bold;
  font-size: clamp(1.4rem, 2vw, 1.6rem);
}

.shopInfoBox__data--shopName {
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: bold;
}

.shopInfoBox__btnWrap {
  margin-top: 40px;
}

.btn_bubble.shopInfoBox__btn {
  width: 250px;
  margin: 0 auto;
  background: var(--color-yellow);
  border: none;
  box-shadow: 5px 5px 0 var(--color-lightgray);
}

.shopInfoBox__btnBubbleWrap.btn_bubbleTxt {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 0;
  transform: rotate(-10deg);
  background: none;
  color: var(--color-navy);
  top: -2.3em;
  left: -17%;
  animation: balloon--shopInfo ease-in-out 1s infinite alternate;
}

.shopInfoBox__btnBubbleTxt {
  background: var(--color-navy);
  color: #fff;
  padding: 0.5em 1.2em;
}

.shopInfoBox__btnBubbleWrap.btn_bubbleTxt::after {
  content: none;
}

@keyframes balloon--shopInfo {
  0% {
    transform: rotate(0deg);
  }

  10% {
    transform: rotate(-10deg);
  }

  20% {
    transform: rotate(0deg);
  }

  30% {
    transform: rotate(-10deg);
  }

  35% {
    transform: rotate(-5deg);
  }

  100% {
    transform: rotate(-5deg);
  }
}

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

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

  /*==================================================
    HEADER PC/TABLET
  ==================================================*/
  
  .pcMemberNavi__box {
    width: 100%;
  }

  .pcMemberNavi__ttl {
    width: 16%;
    padding-right: 10px;
    font-size: 1.4rem;
  }

  .pcMemberNavi__itemBox {
    padding: 2px 0 2px 10px;
    font-size: 1.4rem;
  }

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

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

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

  .footer__inner {
    justify-content: center;
    gap: var(--gutter-narrow);
    flex-wrap: wrap;
  }

  .footer__shopInfoBox {
    align-items: center;
    width: 90%;
  }

  /*==================================================
    shopInfoBox PC/TABLET
  ==================================================*/


}

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

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

  /*==================================================
    HEADER SP
  ==================================================*/
  .header__inner {
    width: 100%;
    gap: 6px;
    padding: 1vw 0;
  }

  .header__logo a {
    width: 50vw;
  }

  .header__contactBox {
    gap: 1.8vw;
  }

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

  .header__spBtn a {
    display: block;
    width: 45px;
    height: 45px;
    text-align: center;
    white-space: nowrap;
    padding: 7px 0;
    line-height: 1.2;
    box-shadow: 3px 3px 0 var(--color-lightgray);
  }

  .header__spBtn--login a {
    border: 1px solid var(--color-navy);
    color: var(--color-navy);
  }

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

  .header__spBtnTtl {
    text-align: center;
    font-size: 10px;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .header__spBtnTtl::before {
    position: relative;
    display: block;
    content: "";
    width: 20px;
  }

  .header__spBtn--login .header__spBtnTtl::before {
    -webkit-mask: url(../img/common/icon_login.svg) no-repeat center / contain;
    mask: url(../img/common/icon_login.svg) no-repeat center / contain;
    background-color: var(--color-navy);
    aspect-ratio: 24 / 24;
  }

  .header__spBtn--emember .header__spBtnTtl::before {
    background: url(../img/common/icon_signup.svg) no-repeat center / contain;
    width: 20px;
    aspect-ratio: 24 / 24;
  }

  /*ヘッダーハンバーガーメニュー*/
  .header__menuBtn {
    width: 45px;
    height: 45px;
    padding: 6px;
    font-size: 1rem;
    box-shadow: 3px 3px 0 var(--color-lightgray);
  }

  /*ヘッダーハンバーガーメニューの内部*/
  .header__modalMenuClose {
    width: 40px;
    height: 40px;
    box-shadow: 3px 3px 0 var(--color-lightgray);
    right: 10px;
    top: 10px;
  }

  .modalMenu .footer__inner {
    flex-direction: column-reverse;
    align-items: center;
    margin: var(--gutter-wide) auto;
    width: 100%;
    max-width: 100%;
    gap: 50px;
  }

  .modalMenu .footer__linkBox {
    width: 100%;
    gap: 25px;
  }

  .modalMenu .footer__btnWrap {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }

  .modalMenu .footer__btn {
    width: 45%;
  }

  .modalMenu .footer__btn--estates,
  .modalMenu .footer__btn--favorites {
    width: 94%;
    height: auto;
  }

  .modalMenu .footer__btn--estates a,
  .modalMenu .footer__btn--favorites a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 10px;
    border: solid 1px var(--color-black);
    position: relative;
    width: 100%;
    background: #fff;
  }

  .modalMenu .footer__btn--estates a img,
  .modalMenu .footer__btn--favorites a img {
    width: 21px;
    aspect-ratio: 24 / 24;
    filter: brightness(0);
  }

  .modalMenu .btn_common.footer__btn a::after {
    width: unset;
    height: unset;
    background: none;
  }

  /*物件を探すアコーディオン*/
  .spNavi__accordion {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .spNavi__toggleBtn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0 0.5em;
  }

  .spNavi__mainLink.with-toggle {
    position: relative;
  }

  /* アイコン表示 */
  .spNavi__mainLink.with-toggle[data-expanded="true"] {
    background: var(--color-black);
    color: #fff;
  }

  .spNavi__mainLink.with-toggle[data-expanded="true"] img {
    filter: invert(100%) brightness(200%);
  }

  .spNavi__mainLink.with-toggle::after {
    content: "＋";
    position: absolute;
    right: 1em;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2em;
    pointer-events: none;
  }

  .spNavi__mainLink.with-toggle[data-expanded="true"]::after {
    content: "×";
  }

  /* アイコン部分に透明なボタン領域 */
  .spNavi__mainLink.with-toggle::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 4em;
    height: 100%;
    cursor: pointer;
  }

  .spNavi__subMenu {
    display: none;
    padding: 0 1.5em;
    margin-top: 0.5em;
  }

  .spNavi__subMenuBtn {
    margin: 0.7em 0;
  }

  /*サイトマップ*/
  .modalMenu .footer__sitemap {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    background: var(--color-palegray);
  }

  .modalMenu .footer__sitemapList {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0;
    justify-content: center;
  }

  .modalMenu .footer__sitemapList:first-of-type {
    border-top: solid 1px var(--color-gray);
  }

  .modalMenu .footer__sitemapList:last-of-type {
    width: 100%;
    border-bottom: solid 1px var(--color-gray);
  }

  .modalMenu .footer__sitemapList:last-of-type .footer__sitemapItem {
    width: 33%;
    border: none;
  }

  .modalMenu .footer__sitemapItem {
    width: 50%;
    line-height: 1.4;
    border-bottom: solid 1px var(--color-gray);
  }

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

  .modalMenu .footer__sitemapItem:nth-child(odd) {
    border-right: solid 1px var(--color-gray);
  }

  /*店舗情報*/
  .modalMenu .footer__shopInfoBox {
    width: 96%;
    align-items: center;
  }

  /*ヘッダー固定*/
  .header.fixed .header__menuBtn {
    width: 45px;
    height: 45px;
    padding: 6px;
  }

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

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

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

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

  .memberModal__body {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    max-width: 290px;
    width: 98%;
    background: #F6F5EF;
  }
  
  /*==================================================
    FOOTER SP
  ==================================================*/
  /*footFix*/
  .footFix {
    bottom: 22%;
  }

  .footFix .ancPagetop {
    bottom: 10px;
  }

  /*フッターリンクバナー*/
  .footerBnrBox {
    padding: 5% 10px;
  }

  .footerBnrBox__list {
    flex-wrap: wrap;
    gap: 10px;
  }

  .footerBnrBox__item {
    width: 48%;
  }

  /*フッター*/
  .footer__inner {
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
  }

  .footer__shopInfoBox {
    align-items: center;
    gap: 20px;
  }

  .footer__linkBox {
    align-items: center;
  }

  .footer__btnWrap {
    flex-direction: column;
  }

  .footerActions__btnWire form {
    width: 220px;
  }

  /*フッター固定メニュー*/
  .footerFixMenu {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: clamp(53px, 16vw, 60px);
    background: #fff;
    border-top: solid 1px var(--color-gray);
    box-shadow: inset 0 1px 0 0 #ccc;
    z-index: 999;
    display: none;
  }

  .footerFixMenu__list {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 100%;
  }

  .footerFixMenu__item {
    height: 100%;
    width: calc(100% / 5);
    box-shadow: inset -1px 0 0 0 #E6E6E6;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
  }

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

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

  .footerFixMenu__item a::before {
    content: "";
    display: block;
    width: 2em;
    height: 2em;
    margin: 2px;
  }

  .footerFixMenu__item--estate a::before {
    -webkit-mask: url(../img/common/icon_search.svg) no-repeat center / contain;
    mask: url(../img/common/icon_search.svg) no-repeat center / contain;
    background-color: var(--color-navy);
  }

  .footerFixMenu__item--favorite a::before {
    background: url(../img/common/icon_favorite.svg) no-repeat center / contain;
    aspect-ratio: 128 / 105;
  }

  .footerFixMenu__item--shoprsv a::before {
    background: url(../img/common/icon_reservation.svg) no-repeat center / contain;
    aspect-ratio: 24 / 24;
  }

  .footerFixMenu__item--event a::before {
    background: url(../img/common/icon_event.svg) no-repeat center / contain;
    aspect-ratio: 24 / 24;
  }

  .footerFixMenu__item--tel a::before {
    background: url(../img/common/icon_tel.svg) no-repeat center / contain;
    aspect-ratio: 24 / 24;
  }

  .footerFixMenu__txt {
    font-size: 0.7em;
    letter-spacing: 0.1em;
  }

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

  /*==================================================
    MAIN SP
  ==================================================*/
  .ttlWrap {
    height: unset;
    padding: 12% 0 8%;
  }

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

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

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

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

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

  /*==================================================
    bannerWrap
  ==================================================*/
  .bannerWrap {
    margin: 4% auto 0;  /*wireクラスと併用する*/
  }

  /*==================================================
    shopInfoBox SP
  ==================================================*/
  .shopInfoBox {
    padding: 10% 0;
  }

  .shopInfoBox::before {
    width: 74vw;
  }

  .shopInfoBox__ttl {
    margin-bottom: 10px;
  }

  .shopInfoBox__inner {
    padding: 20px;
  }

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

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

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

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

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

  .shopInfoBox__btnWrap {
    margin-top: 50px;
  }

  .shopInfoBox__map {
    margin-top: 40px;
  }
}
