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

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

  --font-en: "Jost", sans-serif;

  --color-main: #429A5C;
  --color-red: #CA2217;
  --color-orange: #CA2217;
  --color-yellow: #FFE500;
  --color-paleyellow: #EBE9E2;
  --color-ygreen: #8ECC11;
  --color-green: #429A5C;
  --color-blue: #356184;
  --color-lightblue: #00ADA9;
  --color-navy: #00061A;
  --color-purple: #662D90;
  --color-pink: #f72b80;
  --color-salmon: #ff9898;
  --color-black: #000;
  --color-deepbrown: #3D362B;
  --color-darkgray: #666;
  --color-gray: #999;
  --color-lightgray: #ccc;
  --color-palegray: #F1F1F1;
  --color-palegreen: #F1F9EF;
  --color-paleorange: #ffefee;

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

  --rad-common: 5px;
  --rad-button: 100px;
}

@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.4rem;
  /* overflow-x: hidden; */
}

main {
  display: block;
  word-break: break-word;
  position: relative;
  min-height: 260px;
  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;
  }
}

/*モーダルなときはbodyを固定*/
body.menu-open {
  overflow: hidden;
}

/*==================================================
  HEADER
==================================================*/
header {
  position: relative;
  background: #fff;
  z-index: 10000;
  width: 100%;
}

.header__inner {
  gap: 10px;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__siteInfoBox {
  display: flex;
  gap: 10px clamp(20px, 2vw, 30px);
  align-items: center;
}

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

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

.header__counter {
  font-size: 1.4rem;
  font-weight: bold;
  background: var(--color-yellow);
  border-radius: var(--rad-common);
  padding: 0.7em 1.1em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__counter::before {
  content: "";
  background: url(../img/common/icon_home.svg) no-repeat center/contain;
  width: 24px;
  height: auto;
  aspect-ratio: 24/ 24;
  position: relative;
  display: block;
}

.header__countNum {
  font-family: var(--font-en);
  font-weight: bold;
  font-size: clamp(2rem, 3vw, 2.4rem);
  line-height: 1;
  vertical-align: middle;
  margin-right: 3px;
}

.header__countTxt {
  vertical-align: middle;
}

/*エリア変更ボタン*/
.header__currentAreaName {
  display: inline-block;
  font-family: var(--font-en);
  font-weight: bold;
  padding-right: 8px;
  transform: translateY(1px);
}

.header__areaChangeBtn {
  font-weight: 500;
  text-decoration: underline;
}

/*エリア変更モーダル*/
.header__areaModal {
  display: none;
  z-index: 10000;
  position: relative;
}

.areaModal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, .5);
}

.areaModal__inner {
  width: 80%;
  max-width: 800px;
  background: #fff;
  border-radius: var(--rad-common);
  padding: var(--gutter);
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.3));
}

.areaModal__ttl {
  text-align: center;
  border-bottom: 1px solid var(--color-black);
  font-size: 2rem;
}

.areaModal__list {
  display: flex;
  justify-content: space-between;
  margin: 2rem 0;
}

.areaModal__item {
  width: 50%;
  padding: 2rem;
}

.areaModal__item a,
.areaModal__item--selected span {
  display: block;
  border-radius: var(--rad-common);
  border: 2px solid var(--color-main);
  padding: var(--gutter-supernarrow);
}

.areaModal__item a {
  background: var(--color-main);
  border: 2px solid var(--color-main);
  color: #fff;
  position: relative;
}

.areaModal__item a::after {
  position: absolute;
  content: '';
  width: 20px;
  height: 5px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  top: 50%;
  right: 7%;
  transform: translateY(-50%) skew(45deg);
  transition: right 0.3s;
}

.areaModal__item a:hover::after {
  right: 5%;
}

.areaModal__item--selected span {
  border: 2px solid var(--color-palegray);
  background: var(--color-palegray);
  color: var(--color-lightgray);
}

.areaModal__areaName {
  font-family: var(--font-en);
  font-weight: 600;
  letter-spacing: 0.05em;
  font-size: clamp(2rem, 3.5vw, 4rem);
  text-align: center;
}

.areaModal__areaTxt {
  text-align: center;
  font-size: clamp(1.1rem, 1vw, 1.4rem);
}

.areaModal__closeBtn {
  background: var(--color-gray);
  border-radius: var(--rad-button);
  color: #fff;
  padding: 1rem 2rem;
  width: 80%;
  max-width: 240px;
  text-align: center;
}


.header__telBox {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 10px 20px;
}

.header__telNum {
  font-weight: bold;
  font-size: 4rem;
  font-family: var(--font-en);
  line-height: 1;
  text-align: center;
  display: flex;
  align-items: baseline;
  gap: 0;
}

.header__telNumTxt {
  font-size: 2rem;
}

.header__telTime {
  line-height: 1.2;
  font-weight: bold;
}

/*ヘッダーボタン　PC*/
.header__btnWire {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.header__btnList {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 20px 0 15px;
  gap: clamp(15px, 2vw, 20px);
  font-size: 1.4rem;
  font-weight: bold;
  margin-right: 20px;
}

.header__btn--signup {
  background: var(--color-red);
  color: #fff;
  border: 1px solid var(--color-black);
  border-radius: var(--rad-button);
  padding: 0.05em 0.7em;
}

.header__btn--logout {
  padding: 0.7em 1em;
  font-size: 1.2rem;
  width: auto;
}

/*SNSアイコン(インスタだけ表示)*/
.snsBox {
  display: flex;
  gap: 10px;
}

.snsBox__item {
  width: 30px;
}

/*
  ===== globalnavigation ==========================================
  */
.pcNavi {
  border-bottom: solid 1px #CCCCCC;
  background: var(--color-navy);
  color: #fff;
}

.pcNavi__list {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 0.8em;
}

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

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

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

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

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

.pcNavi__itemTxt {
  vertical-align: middle;
  line-height: 1.7;
}

.pcNavi__itemTxt::before {
  content: attr(data-en);
  text-transform: uppercase;
  display: block;
  font-family: var(--font-en);
  font-size: 1.8em;
  letter-spacing: 0.08em;
}

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

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

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

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

/*
  ===== pcFix ==========================================
  */
#pcFix {
  width: 100%;
  background: rgba(255, 255, 255, 0.9);

}

#pcFix.fixed {
  position: fixed;
  top: 0;
  z-index: 9999;
}

#pcFix.fixed .pcNavi__list {
  font-size: 0.9rem;
}

#pcFix.fixed .pcNavi__item {
  height: 40px;
}

#pcFix.fixed .pcNavi__itemTxt {
  line-height: 1.4;
}

#pcFix.fixed .pcNavi__itemTxt::before {
  font-size: 1.6em;
}

#pcFix.fixed .pcNavi__item>a {
  gap: 2px;
}

#pcFix.fixed .pcNavi__item>a::before {
  height: auto;
}

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

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

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

.sideFix__link {
  display: block;
  border-radius: var(--rad-inner) 0 0 var(--rad-inner);
  height: 90px;
  width: 90px;
  position: relative;
  font-weight: bold;
  line-height: 1.4;
  font-size: 1.8rem;
  text-align: center;
}

.sideFix__caption {
  font-size: 1.2rem;
  display: block;
}

.sideFix__item-sell .sideFix__caption {
  font-size: 1.1rem;
}

.sideFix__item-shopreserv .sideFix__link {
  border: 2px solid var(--color-green);
  background-color: var(--color-green);
}

.sideFix__item-signup .sideFix__link {
  border: 2px solid var(--color-main);
  background-color: var(--color-main);
}

@media (any-hover:hover) {
  .sideFix__link:hover {
    background: #fff;
    opacity: 1;
  }
}

/*
  ===== loginfixbox ==========================================
  */
.header__loginBox {
  height: 50px;
  border-bottom: 1px solid #ccc;
}

.header__loginBox__inner {
  padding: 5px 0;
  height: 100%;
  display: flex;
  align-items: center;
  font-size: clamp(1.4rem, 1.5vw, 1.5rem);
}

.header__loginBox__login,
.header__loginBox__login form,
.header__loginBox__login dl,
.header__loginBox__login ul {
  display: flex;
  height: 100%;
  align-items: center;
}

.header__loginBox__login {
  padding: 0 10px;
  width: 100%;
  justify-content: center;
}

.header__loginBox__login__ttl {
  width: 120px;
  height: 35px;
  border: 2px solid var(--color-black);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  margin-right: 20px;
  font-size: 0.85em;
  background-repeat: var(--rad-common);
}

.header__loginBox__login input[type="text"],
.header__loginBox__login input[type="password"] {
  padding: 2px 5px;
  margin: 0 10px 0 5px;
  width: 90%;
}

.header__loginBox__login dl dt {
  font-weight: normal;
  line-height: 1;
  flex-shrink: 0;
  font-size: 0.85em;
}

.header__loginBox__login__btn .btn_login {
  width: 120px;
  height: 35px;
  background: var(--color-yellow);
  color: var(--color-black);
  border: solid 1px var(--color-black);
  border-radius: var(--rad-button);
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  transition: 0.3s;
  font-size: 0.85em;
  text-align: center;
}

@media (any-hover:hover) {
  .header__loginBox__login__btn .btn_login:hover {
    opacity: 0.8;
  }
}

.header__loginBox__login a {
  text-decoration: underline;
  position: relative;
  margin-left: 20px;
}

.header__loginBox__login a::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 8px;
  border-color: transparent transparent transparent var(--color-main);
  margin-right: 0.5em;
}

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

.footFix .ancPagetop a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  padding-top: 10px;
  color: var(--color-black);
  background: linear-gradient(to top, #fff 50%, var(--color-black) 50%);
  background-size: 100% 200%;
  background-position: bottom;
  border: 1px solid var(--color-black);
  position: relative;
  font-family: var(--font-en);
  font-size: 18px;
  letter-spacing: 0.1em;
  transition: transform 0.3s ease-in-out, background-position 0.3s ease-in-out, color 0.3s ease-in-out;
  /* タッチハイライトを消す（iOS/Android）*/
  -webkit-tap-highlight-color: transparent;
}

.footFix .ancPagetop a::before {
  content: '';
  width: 5px;
  height: 15px;
  border-right: 1px solid var(--color-black);
  border-top: 1px solid var(--color-black);
  transform: skewY(135deg) translateX(-100%);
  position: absolute;
  top: 5px;
  left: 50%;
  transition: border-color 0.3s ease-in-out;
}

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

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

  .footFix .ancPagetop a:hover::before,
  .footFix .ancPagetop a:focus::before {
    border-color: #fff;
  }
}

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

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

  .footFix .ancPagetop a:active::before,
  .footFix .ancPagetop a:focus::before {
    border-color: #fff;
  }
}

.footerSitemap {
  background: var(--color-navy);
  margin-bottom: 50px;
}

.footerSitemap__inner {
  display: flex;
  /* Safari */
  justify-content: space-between;
  padding: var(--gutter) 0;
  color: #fff;
}

.footerSitemap__item {
  line-height: 1.3;
  margin-bottom: 20px;
  padding-left: 10px;
  font-size: 1.4rem;
  font-weight: 500;
  position: relative;
}

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

.footerSitemap__item a {
  text-decoration: none;
}

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

.footerSiteInfo {
  margin: var(--gutter-narrow) 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.footerSiteInfo__linkBox {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footerSiteInfo__logo {
  margin-bottom: 25px;
  width: 310px;
}

.footerSiteInfo__btnList {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.footerSiteInfo__btn {
  width: 240px;
  height: 56px;
}

.footerSiteInfo__btnLink {
  border-radius: var(--rad-button);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-black);
  background-color: transparent;
  position: relative;
  font-weight: 500;
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  padding-right: 0.5em;
  border: solid 1px var(--color-black);
}

.footerSiteInfo__btnLink::after {
  position: absolute;
  content: '';
  width: 20px;
  height: 5px;
  border-right: 1px solid var(--color-black);
  border-bottom: 1px solid var(--color-black);
  top: 50%;
  right: 10%;
  transform: translateY(-50%) skew(45deg);
  transition: right 0.3s;
}

.footerSiteInfo__btn--login .footerSiteInfo__btnLink {
  background: var(--color-red);
  color: #fff;
}

.footerSiteInfo__btn--login .footerSiteInfo__btnLink::after {
  border-color: #fff;
}

.footerSiteInfo__btnLink:hover::after {
  right: 8%;
}

/*ログアウトボタン*/
input[type="submit"].footer__logout {
  width: 100%;
}

.footerSiteInfo__shopInfoBox {
  max-width: 50%;
}

.footerSiteInfo__shopItem {
  display: flex;
  align-items: flex-start;
}

.footerSiteInfo__shopImgBox {
  width: clamp(70px, 30vw, 180px);
  height: auto;
  aspect-ratio: 3 / 2;
  margin-right: clamp(10px, 2.3vw, 16px);
  flex-shrink: 0;
}

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

.footerSiteInfo__shopName {
  font-size: 2rem;
  font-weight: bold;
  display: inline-block;
  padding-bottom: 0.1em;
}

.footerSiteInfo__shopTelBox {
  display: flex;
  margin: 10px 0 8px;
  flex-wrap: wrap;
}

.footerSiteInfo__telNum {
  font-weight: bold;
  font-size: clamp(2.8rem, 9vw, 3rem);
  position: relative;
  font-family: var(--font-en);
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.footerSiteInfo__shopAddress,
.footerSiteInfo__shopTime,
.footerSiteInfo__shopDay {
  font-size: clamp(1.4rem, 4vw, 1.6rem);
  margin-bottom: 4px;
  font-feature-settings: "palt";
  letter-spacing: 0.01em;
}

.footerSiteInfo__snsBox {
  margin-top: 10px;
}

/*フッターバナー*/
.footerBnrBox {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--gutter-narrow);
}

.footerBnrBox__item {
  width: 300px;
  text-align: center;
}

.footerBnrBox__item a {
  display: block;
  border: solid 1px var(--color-lightgray);
}

/*追従ボタン(サイド)*/
.sideFix {
  z-index: 10000;
  position: fixed;
  bottom: 90px;
  right: 0;
  width: 150px;
}

.sideFix__list {
  width: 150px;
}

.sideFix__item {
  margin-bottom: 10px;
}

.sideFix__link {
  display: flex;
  border-radius: var(--rad-button) 0 0 var(--rad-button);
  transform: scale(1);
  height: 55px;
  width: 150px;
  position: relative;
  font-weight: 500;
  line-height: 1.4;
  font-size: 2rem;
  letter-spacing: 0.1em;
  text-align: center;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: transform 0.2s ease-in-out;
}

.sideFix__item-shopreserv .sideFix__link {
  border: 1px solid var(--color-black);
  background-color: var(--color-yellow);
}

.sideFix__item-shopreserv .sideFix__link::before {
  position: relative;
  display: block;
  content: "";
  background: url(../img/common/icon_calendar.svg) no-repeat center/contain;
  width: 21px;
  aspect-ratio: 17 / 16;
}

.sideFix__item-signup .sideFix__link {
  border: 1px solid var(--color-black);
  background-color: var(--color-red);
  color: #fff;
}

.sideFix__item-signup .sideFix__link::before {
  position: relative;
  display: block;
  content: "";
  background: url(../img/common/icon_user.svg) no-repeat center/contain;
  width: 21px;
  aspect-ratio: 17 / 16;
}

.sideFix__link:hover {
  transform: scale(1.1);
}

.sideFix__lineBnrBox {
  width: 230px;
  background: #06C755;
  /*LINEのブランドカラー*/
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: var(--rad-common);
  padding: 5px;
  border: solid 1px #fff;
  z-index: 10000;
  position: fixed;
  right: 0;
  bottom: 230px;
  color: #fff;
}

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

.is-hidden {
  display: none !important;
}

.sideFix__closeBtn {
  position: absolute;
  top: -8px;
  right: 1px;
  background-color: #fff;
  border-radius: 50%;
  border: solid 1px var(--color-black);
  font-size: 1.6rem;
  line-height: 1;
  width: 22px;
  height: 22px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
  transition: 0.3s;
}

.sideFix__closeBtn:hover {
  opacity: 0.8;
}

.sideFix__closeBtn::before,
.sideFix__closeBtn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.5px;
  height: 10px;
  background: var(--color-black);
}

.sideFix__closeBtn::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.sideFix__closeBtn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.sideFix__lineBnrTxt {
  font-weight: bold;
  font-size: 1.4em;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0;
}

.sideFix__line {
  font-weight: 900;
  font-size: 2.4em;
  line-height: 1;
}

.sideFix__lineBnrID {
  display: inline-block;
  width: 70%;
  font-weight: 700;
  font-size: 1em;
  color: #06C755;
  background: #fff;
  border-radius: var(--rad-common);
  text-align: center;
  margin: 0 auto;
}

.sideFix__lineQRWrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin: 10px 0 5px;
}

.sideFix__lineQRWrap img {
  width: 76px;
  aspect-ratio: 152 / 164;
  position: relative;
  bottom: -10px;
}

.sideFix__lineBnrInfo {
  font-weight: bold;
  line-height: 1.3;
}

.sideFix__lineBnrInfo--yellow {
  color: var(--color-yellow);
  font-weight: 700;
  font-size: 1.1em;
}

/*コピー*/
.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: 160px !important;
  overflow: hidden;
  z-index: 1000;
}

/*==================================================
  MAIN
==================================================*/
/*************** メインタイトル ****************/
.ttlWrap {
  text-align: center;
  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(2.6rem, 4vw, 4rem);
  font-weight: bold;
  line-height: 1.4;
}

#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%);
  font-size: 1.3rem;
  margin: 0 auto;
  padding: clamp(5px, 0.8vw, 15px) 0;
}

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

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

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

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


/*サブタイトル*/
#main .secTtl {
  font-size: clamp(1.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.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-slide {
  height: auto !important;
}

.slick-list {
  overflow: visible !important;
}

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

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

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

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

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

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

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

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

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

/*==================================================
  shopInfoBox
==================================================*/
.shopInfoBox {
  margin-top: 70px;
  padding: 50px 0;
  background: var(--color-palegray);
}

.shopInfoBox__ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.indexPage__ttl-ja {
  font-weight: bold;
  font-size: 1.4em;
  letter-spacing: 0.1em;
  line-height: 1.4;
}

.indexPage__ttl-en {
  font-family: var(--font-en);
  font-weight: 600;
  font-size: 3.6em;
  text-transform: uppercase;
  line-height: 1.4;
  letter-spacing: 0.1em;
}

.shopInfoBox__inner {
  width: 100%;
  background: var(--color-palegray);
  padding: 40px 0 70px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.shopInfoBox__imgCommentWrap {
  width: 47%;
}

.shopInfoBox__imgBox {
  overflow: hidden;
}

.shopInfoBox__imgList {
  position: relative;
}

.shopInfoBox__img {
  text-align: center;
}

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

.shopInfoBox__dataBox {
  width: 49%;
}

.shopInfoBox__dataWrap {
  display: flex;
  align-items: center;
  border-bottom: solid 1px var(--color-black);
  color: var(--color-deepbrown);
}

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

.shopInfoBox__btn {
  text-align: center;
  margin: 30px 0 20px;
}

.shopInfoBox__btn a {
  max-width: 250px;
  border: solid 1px var(--color-black);
  border-radius: var(--rad-button);
  background: #fff;
  display: block;
  width: 90%;
  margin: 0 auto;
  padding: 20px 0;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  position: relative;
  letter-spacing: 0.1em;
}

.shopInfoBox__btn a::after {
  position: absolute;
  content: '';
  width: 20px;
  height: 5px;
  border-right: 1px solid var(--color-black);
  border-bottom: 1px solid var(--color-black);
  top: 50%;
  right: 10%;
  transform: translateY(-50%) skew(45deg);
  transition: right 0.3s;
}

.shopInfoBox__btn a:hover::after {
  right: 8%;
}

.shopInfoBox__shopCommentBox {
  width: 100%;
  margin-top: 30px;
  padding: 20px;
  color: var(--color-deepbrown);
}

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

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

/*==================================================
  bannerWrap
==================================================*/
.bannerWrap {
  text-align: center;
  margin: 30px auto 0;
  max-width: 1200px;
}


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

  /*==================================================
    HEADER PC/TABLET
  ==================================================*/
 
  .header__siteInfoBox {
    flex-direction: column;
    align-items: flex-start;
  }

  .header__currentInfoBox {
    flex-direction: row;
    align-items: center;
  }

  .header__btnList {
    padding: 5px 0 10px;
  }

  .header__telBox {
    align-items: flex-start;
  }

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

  /*Gナビ*/
  .pcNavi__item:nth-of-type(4) {
    width: 23%;
  }

  .pcNavi__item:nth-of-type(5) {
    width: 17%;
  }

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

  .footerSiteInfo {
    padding: 30px 10px;
    flex-direction: column;
    align-items: center;
  }

  .footerSiteInfo__linkBox {
    align-items: center;
  }

  .footerSiteInfo__btnList {
    margin-bottom: var(--gutter);
    flex-direction: row;
  }

  .footerSiteInfo__shopInfoBox {
    max-width: 100%;
  }

  .footerActions {
    padding: 0 10px;
  }

  .footerActions__btnWrap {
    flex-direction: column;
  }

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

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

  .footerActions_logoutBtn {
    max-width: unset;
  }

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


}

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

  .grecaptcha-badge {
    bottom: 220px !important;
  }

  /*==================================================
    HEADER SP
  ==================================================*/
  
  #spFix {
    width: 100vw;
    background: rgb(255 255 255 / 0.95);
    backdrop-filter: blur(3px);
    z-index: 373;
    height: 54px;
    position: relative;
  }

  #spFix.fixed {
    position: fixed;
    top: 0;
    z-index: 9999;
    box-shadow: 0 -1px 4px rgba(0, 0, 0, 0.5);
    /* animation: header-slidein 0.3s; */
  }

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

    100% {
      transform: translateY(0);

    }
  }

  .header__inner {
    margin-bottom: 0;
    padding: 5px 0;
    height: 100%;
  }

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

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

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

  .header__spBtn--emember .header__spBtnTtl::before {
    position: relative;
    display: block;
    content: "";
    background: url(../img/common/icon_user.svg) no-repeat center / contain;
    width: 18px;
    aspect-ratio: 17 / 16;
  }

  .header__spBtn--login .header__spBtnTtl::before {
    position: relative;
    display: block;
    content: "";
    background: url(../img/common/icon_login.svg) no-repeat center / contain;
    width: 20px;
    aspect-ratio: 24 / 24;
  }

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

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

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

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

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

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

  .header__spNaviBtn.active {
    transform: translateX(0);
  }

  .header__spNaviBtn.active span:first-of-type {
    top: 12px;
    transform: rotate(45deg);
  }

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

  .header__spNaviBtn.active span:nth-of-type(3) {
    top: 12px;
    transform: rotate(-45deg);
  }

  .header__spBtn--emember a {
    display: block;
    border: 1px solid var(--color-black);
    border-radius: var(--rad-common);
    color: #fff;
    background: var(--color-red);
    width: 45px;
    height: 43px;
    text-align: center;
    white-space: nowrap;
    padding: 6px 0;
    line-height: 1.2;
  }

  .header__spBtn--login a {
    display: block;
    border: 1px solid var(--color-black);
    border-radius: var(--rad-common);
    color: var(--color-black);
    width: 45px;
    height: 43px;
    text-align: center;
    white-space: nowrap;
    padding: 4px 0;
    line-height: 1.2;
  }

  .header__spBtn--memberMenu a {
    display: block;
    border: 1px solid var(--color-black);
    border-radius: var(--rad-button);
    color: #fff;
    background: var(--color-red);
    width: 75px;
    height: 31px;
    font-size: 12px;
    text-align: center;
    white-space: nowrap;
    padding: 7px 0;
    line-height: 1.3;
  }

  .header__spBtn--memberMenu a span {
    font-family: var(--font-en);
  }


  /*ドロップダウンメニュー*/
  body.menu-open {
    overflow: hidden;
  }

  .spNavi {
    display: none;
    overflow-y: scroll;
    background: rgb(255 255 255 / 0.95);
    height: calc(100dvh - 54px);
  }

  .spNavi__inner {
    margin-top: 10px;
    background-color: #fff;
  }

  /*ボタン*/
  .spNavi__btnListWrap {
    padding: var(--gutter-supernarrow);
    background: var(--color-paleyellow);
  }

  .spNavi__btnList {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
  }

  .spNavi__btnList--favorites {
    margin-bottom: 0;
  }

  .spNavi__btn--shoprsv,
  .spNavi__btn--event {
    width: calc(96% / 2);
    text-align: center;
  }

  .spNavi__btn--shoprsv a,
  .spNavi__btn--event a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    padding: 10px;
    border: solid 1px var(--color-black);
    border-radius: var(--rad-button);
    position: relative;
  }

  .spNavi__btn--shoprsv a {
    background: var(--color-yellow);
  }

  .spNavi__btn--event a {
    background: var(--color-green);
    color: #fff;
  }

  .spNavi__btn--shoprsv a::before {
    position: relative;
    display: block;
    content: "";
    background: url(../img/common/icon_calendar.svg) no-repeat center / contain;
    width: 21px;
    aspect-ratio: 17 / 16;
  }

  .spNavi__btn--event a::before {
    position: relative;
    display: block;
    content: "";
    background: url(../img/common/icon_event.svg) no-repeat center / contain;
    filter: invert(100%) brightness(200%);
    width: 21px;
    aspect-ratio: 24 / 24;
  }

  .spNavi__btn--estates,
  .spNavi__btn--favorites {
    width: 100%;
    text-align: center;
  }

  .spNavi__btn--estates a,
  .spNavi__btn--favorites a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    padding: 10px;
    border: solid 1px var(--color-black);
    border-radius: var(--rad-button);
    position: relative;
    width: 100%;
    background: #fff;
  }

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

  /*その他ページリスト*/
  .spNavi__list {
    display: flex;
    flex-wrap: wrap;
  }

  .spNavi__item {
    width: 50%;
    border-bottom: 1px solid #E0E0E0;
    border-right: 1px solid #E0E0E0;
    display: flex;
    align-items: center;
    line-height: 1.4;
  }

  .spNavi__item:first-child,
  .spNavi__item:nth-of-type(2) {
    border-top: 1px solid #E0E0E0;
  }

  .spNavi__item:nth-child(even) {
    border-right: none;
  }

  .spNavi__item a {
    display: flex;
    padding: 15px 15px 15px 30px;
    font-size: 13px;
    position: relative;
    width: 100%;
    height: 100%;
    align-items: center;
  }

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

  .header__spBtn--logout .btn_logout {
    padding: 0.8em 0.4em;
    font-size: 12px;
    width: auto;
    margin: 0 5px 0 0;
    font-weight: normal;
  }

  /*==================================================
    FOOTER SP
  ==================================================*/
  /*footFix*/
  .footFix {
    bottom: 20%;
    right: 1%;
  }

  .footFix .ancPagetop {
    bottom: 10px;
  }

  .footerSiteInfo {
    flex-direction: column;
  }

  .footerSiteInfo__linkBox {
    align-items: center;
    width: 100%;
  }

  .footerSiteInfo__btnList {
    width: 100%;
    margin-bottom: var(--gutter);
    gap: 10px;
    flex-direction: column;
  }

  .footerSiteInfo__btnItem {
    width: min(300px, 90%);
  }

  .footerSiteInfo__shopInfoBox {
    max-width: 100%;
    margin: 0 auto;
  }

  .footerSiteInfo__shopItem {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }

  .footerSiteInfo__shopImgBox {
    margin: 0;
  }

  .footerSiteInfo__shopInfo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  /*フッター固定メニュー*/
  .footerFixMenu {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: clamp(53px, 16vw, 60px);
    background: #fff;
    border-top: solid 1px var(--color-black);
    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: #fff;
    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 {
    background: url(../img/common/icon_search.svg) no-repeat center / contain;
    aspect-ratio: 24 / 24;
    filter: invert(100%) brightness(200%);
  }

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

  .footerFixMenu__item--shops a::before {
    background: url(../img/common/icon_shop.svg) no-repeat center / contain;
    aspect-ratio: 19 / 15;
  }

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

  .footerFix__lineBnrBox {
    bottom: clamp(53px, 16vw, 60px);
    right: 0;
    width: 70%;
    padding: 5px;
    background: #06C755;
    display: block;
    color: #fff;
    border: solid 1px #fff;
    border-radius: var(--rad-common);
    z-index: 100;
    position: fixed;
  }


  .footerFix__lineBnrBox a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
  }

  .footerFix__closeBtn {
    position: absolute;
    top: -17px;
    left: 1px;
    background-color: #fff;
    border-radius: 50%;
    border: solid 1px var(--color-black);
    font-size: 1.6rem;
    line-height: 1;
    width: 22px;
    height: 22px;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
    transition: 0.3s;
  }

  .footerFix__closeBtn:hover {
    opacity: 0.8;
  }

  .footerFix__closeBtn::before,
  .footerFix__closeBtn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1.5px;
    height: 10px;
    background: var(--color-black);
  }

  .footerFix__closeBtn::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .footerFix__closeBtn::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .footerFix__lineBnrTxt {
    font-weight: bold;
    font-size: 1.1em;
    line-height: 1.2;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
  }

  .footerFix__line {
    font-weight: 900;
    font-size: 1.5em;
    line-height: 1.2;
    text-align: center;
  }

  .footerFix__lineIDWrap {
    font-size: 1em;
    font-weight: bold;
  }

  .footerFix__lineBnrID {
    display: inline-block;
    width: 70%;
    font-weight: 700;
    font-size: 1em;
    color: #06C755;
    background: #fff;
    border-radius: var(--rad-common);
    text-align: center;
    margin: 0 auto;
  }

  .footerFix__lineBnrInfo {
    line-height: 1.3;
    font-size: 0.9em;
  }

  .footerFix__lineBnrInfo--yellow {
    color: var(--color-yellow);
    font-weight: 700;
    font-size: 1.1em;
  }

  .footerActions__btnWire form {
    width: 220px;
  }

  /*==================================================
    MAIN SP
  ==================================================*/
  .ttlWrap {
    /*height: 100px;*/
    padding: 8% 1%;
  }

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

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

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

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

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

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

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

  .shopInfoBox__imgCommentWrap {
    width: 100%;
  }

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

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

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

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

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

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