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

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

  --color-main: #006935;
  --color-red: #EE7700;
  --color-orange: #EE7700;
  --color-yellow: #F0D111;
  --color-ygreen: #8ECC11;
  --color-green: #006935;
  --color-blue: #1E4FEF;
  --color-lightblue: #3FBE7E;
  --color-navy: #153BB8;
  --color-purple: #662D90;
  --color-pink: #f72b80;
  --color-salmon: #ff9898;
  --color-black: #222;
  --color-darkgray: #666;
  --color-gray: #999;
  --color-lightgray: #ccc;
  --color-palegray: #F5F5F5;
  --color-palegreen: #E6F9D9;
  --color-paleorange: #fef6ee;

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

  --rad-common: 5px;
}

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

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

.header__inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  width: 48%;
  margin-right: 2%;
  padding: 3% 0;
}

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

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

.header__pcBtn a {
  display: block;
  width: 150px;
  text-align: center;
  padding: 15px 0;
  border-radius: 3px;
  text-decoration: none;
  line-height: 1;
  font-weight: 500;
  position: relative;
}

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

.header__pcBtn--emember a {
  color: #FFF;
  background: var(--color-red);
  border: 1px solid var(--color-red);
  position: static;
}

.header__pcBtn--emember a::after {
  content: none;
}

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 {
  color: #fff;
  background: var(--color-green);
  border: 1px solid var(--color-green);
  margin-left: 5px;
}

.header__btn--contact a {
  background: #fff;
  border: 1px solid var(--color-black);
  margin-left: 5px;
}

.header__btn--contact a::after{
  border-left-color: var(--color-gray);
}

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

.header__telNum {
  font-weight: bold;
  font-size: 30px;
  position: relative;
  margin-right: 10px;
  padding-left: 25px;
}

.header__telNum::before {
  position: absolute;
  font-family: 'Font Awesome 5 Free';
  color: var(--color-gray);
  font-weight: 900;
  content: '\f879';
  font-size: 25px;
  left: -5px;
  top: 54%;
  transform: translateY(-50%);
}

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

/*
  ===== globalnavigation ==========================================
  */
.pcNavi {
  border-bottom: solid 1px #CCCCCC;
}

.pcNavi__list {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.pcNavi__item {
  width: 20%;
}

.pcNavi__item>a {
  display: block;
  width: 100%;
  padding: 20px 0;
  text-align: center;
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
  white-space: nowrap;
}

.pcNavi__item i {
  margin-right: 5px;
  color: var(--color-gray);
}

@media (any-hover:hover) {
  .pcNavi__item>a:hover {
    background: #333333;
    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;
}

.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-color: #333333;
    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;
  font-size: 14px;
  text-decoration: none;
  line-height: 1;
}

@media (any-hover:hover) {
  .pcNavi__childItem a:hover {
    background: #666666;
  }
}

/*
  ===== 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;
  position: absolute;
  right: 10px;
  bottom: 50px;
}

.footerBnrBox {
  background: var(--color-palegreen);
  background-size: cover;
  padding: 60px 10px;
}

.footerBnrBox__list {
  max-width: 1080px;
  width: 100%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 2%;
}

.footerBnrBox__item {
  width: calc((100% - 8%)/5);
  display: flex;
  background-color: #fff;
  border-radius: 5px;
}

.footerBnrBox__item a {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  width: 100%;
}

.footerBnrBox__item img {
  width: 40%;
}

.footerBnrBox__item:nth-of-type(2) img,
.footerBnrBox__item:last-of-type img {
  width: 45%;
}

.footerBnrBox__itemTtl {
  margin-top: 10px;
  text-align: center;
  line-height: 1.2;
  font-size: clamp(14px, 2vw, 18px);
  font-weight: bold;
}

.footerSiteInfo {
  border-bottom: solid 1px #CCC;
  padding: 30px 0;
}

.footerSiteInfo__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto; 
}

.footerSiteInfo__logo {
  width: 307px;
  margin-right: 20px;
  max-width: 80%;
}

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

.footerSiteInfo__company {
  width: 480px;
  padding: 0 20px;
  border-left: solid 1px #333333;
}

.footerSiteInfo__companyTtl {
  font-weight: bold;
}

.footerSiteInfo__companyAddress:nth-child(2n):not(:last-child){
  margin-bottom:10px;
}

.footerSiteInfo__btn {
  width: 180px;
  margin-top:auto;
  margin-bottom:0;
}

.footerSiteInfo__btn a {
  display: block;
  width: 100%;
  text-align: center;
  padding: 20px 0;
  background: #333;
  color: #FFF;
  font-weight: bold;
  line-height: 1;
  border-radius: 3px;
  text-decoration: none;
  position: relative;
}

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

.footerActions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px auto 50px;
  max-width: 1080px;
}

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

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

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

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

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

.footerActions__logoutForm {
  width: 200px;
}

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

.footerActions__telWrap {
  flex-shrink: 0;
}

.footerActions__pcTel {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: nowrap;
  gap: 10px;
  margin-bottom: 10px;
}

.footerActions__pcTelNum {
  font-size: 38px;
  text-indent: 0.5em;
  font-weight: bold;
  line-height: 1;
  padding-left: 16px;
  position: relative;
}

.footerActions__pcTelNum::before {
  position: absolute;
  font-family: 'Font Awesome 5 Free';
  color: var(--color-gray);
  font-weight: 900;
  content: '\f879';
  font-size: 30px;
  left: -20px;
  top: 60%;
  transform: translateY(-50%);
}

.footerActions__pcTelTime {
  font-size: 17px;
  line-height: 1.2;
  font-weight: bold;
}

.footerSitemap {
  display: flex;
  /* Safari */
  justify-content: space-between;
  max-width: 1080px;
  width: 100%;
  margin: 0 auto 50px;
}

.footerSitemap__item {
  line-height: 1;
  margin-bottom: 15px;
  background: url(../img/common/icon01.webp) no-repeat left center;
  background-size: 5px;
  padding-left: 10px;
}

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

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

/*テンプレートマーク*/
.footerCopy::before{
  content:"T";
  display:block;
  font-size:12px;
  width:16px;
  height:16px;
  color:rgba(225,255,255,.2);
  box-shadow: inset 1px 1px 0 0 rgba(0,0,0,.4);
  line-height: 1;
  border:1px solid currentColor;
  border-radius: 2px;
  position:absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}

/* recaptcha */
.grecaptcha-badge {
  bottom: 160px !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;
  height: 180px;
}

.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 {
  max-width: 1080px;
  margin: 0 auto;
  padding: clamp(5px, 2%, 20px) 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;
}

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

/*==================================================
  shopInfoBox
==================================================*/
.shopInfoBox {
  background: var(--color-palegreen);
  padding: 50px 0;
}

.shopInfoBox__ttl {
  text-align: center;
  margin: 0 auto 30px;
}

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

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

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

.shopInfoBox__imgBox {
  width: 51%;
  max-width: 486px;
}

.shopInfoBox__imgList {
  position: relative;
}

.shopInfoBox__img {
  text-align: center;
}

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

.shopInfoBox__dataBox {
  width: 48%;
  max-width: 460px;
}

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

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

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

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

/*==================================================
  bannerWrap(来店予約バナー)
==================================================*/
.bannerWrap {
  text-align: center;
  margin: 30px auto 0;
  max-width: var(--width-content);
}

/*==================================================
  PropOne予約埋め込み
==================================================*/
.btn_reserve_iframe iframe {
  width: 100%;
}
/*==================================================

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

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

  .pcMemberNavi__box {
    width: 100%;
  }

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

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

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

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

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

  .footerSiteInfo {
    padding: 30px 10px;
  }

  .footerActions {
    padding: 0 10px;
  }

  .footerActions__btnWrap {
    flex-direction: column;
  }

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

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

  .footerActions_logoutBtn {
    max-width: unset;
  }

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

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


}

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

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

  /*==================================================
    HEADER SP
  ==================================================*/

  /*SPでヘッダー固定*/
  #spFix {
    width: 100vw;
    background: rgb(255 255 255 / 0.95);
    backdrop-filter: blur(3px);
    z-index: 373;
    height: 53px;
    position: relative;
  }

  #spFix.fixed {
    position: fixed;
    top: 0;
    z-index: 9999;
    box-shadow: 0 -1px 4px rgba(0, 0, 0, 0.5);
  }

  .header__inner {
    width: 57%;
    flex-grow: 1;
    margin: 0 10px 0 0;
  }

  .header__logo {
    width: 56%; /*ロゴのサイズに応じて調整*/
    padding: 0.5em 0;
  }

  .header__logo a {
    height: 100%;
    max-height: 34px;   /*ロゴのサイズに応じて調整*/
  }

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

  .header__spBtn {
    background: #fff;
  }

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

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

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

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

  .header__spNaviBtn span {
    width: 70%;
    height: 2px;
    background-color: #333;
    display: block;
    position: absolute;
  }

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

  .header__spBtn--login a {
    display: block;
    border: 1px solid #333;
    color: #333;
    width: 45px;
    height: 43px;
    text-align: center;
    white-space: nowrap;
    padding: 7px 0;
    line-height: 1.2;
  }

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

  .spNavi {
    display: none;
    height: calc(100dvh - 53px);
    background: #fff;
    overflow-y: scroll;
    position: relative;
    z-index: 9999;
  }

  .spNavi__list {
    background: #fff;
    display: flex;
    flex-wrap: wrap;
  }

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

  .spNavi__item:nth-child(even) {
    border-right: none;
  }
  
  .spNavi__item:last-child,
  .spNavi__item:nth-last-child(2)  {
    border-bottom: 1px solid #E0E0E0;
  }

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

  .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__spMemberBtn {
    width: 40px;
    border: 1px solid var(--color-red);
    background: #fff;
    font-size: 10px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
    color: var(--color-red);
    font-weight: bold;
    padding: 0 7px;
  }

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

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

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

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

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

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

  .memberModal__closeWrap {
    padding-bottom: 20px;
  }

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

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

  /* ハンバーガーメニューとモーダル両方が同時に適用(オープン)されることはないが、念のため */
  body.hamburger-menu-open,
  body.member-modal-open {
    overflow: hidden;
  }
  
  .memberModal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    background: rgba(0, 0, 0, 50%);
    padding: 40px 20px;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 9999;
  }

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

  .footFix .ancPagetop {
    bottom: 10px;
  }

  .footerBnrBox {
    padding: 5% 10px;
  }

  .footerBnrBox__list {
    flex-direction: column;
    gap: 5px;
  }

  .footerBnrBox__item {
    width: 100%;
  }

  .footerBnrBox__item a {
    padding: 10px 20px;
    min-height: 60px;
    border-radius: 2px;
    flex-direction: initial;
    justify-content: flex-start;
    position: relative;
  }

  .footerBnrBox__item a::after {
    position: absolute;
    content: '';
    width: 10px;
    height: 10px;
    border: 5px solid transparent;
    border-left: 5px solid #333;
    right: 4%;
    top: 50%;
    transform: translateY(-50%);
  }

  .footerBnrBox img,
  .footerBnrBox__item:nth-of-type(2) img,
  .footerBnrBox__item:last-of-type img {
    width: clamp(20px,8vw,80px);
  }

  .footerBnrBox__itemTtl {
    margin-top: 0;
    margin-left: 20px;
    font-size: clamp(16px,5vw,24px)
  }

  .footerSiteInfo__inner {
    flex-direction: column;
  }

  .footerSiteInfo__logo {
    margin: 0 auto;
  }

  .footerSiteInfo__logo a {
    text-align: center;
  }

  .footerSiteInfo__company {
    margin: 20px;
    width: 100%;
    border-left: none;
  }

  .footerSiteInfo__companyTtl,
  .footerSiteInfo__companyAddress {
    text-align: center;
  }

  .footerSiteInfo__btn {
    margin: 0 auto;
  }

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

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

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

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

  .footerActions__telWrap {
    width: 100%;
  }

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

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

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

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

  .footerActions__spTelTime {
    font-size: 11px;
  }

  .footerMenu {
    width: 100%;
    height: 60px;
    padding: 0;
    position: fixed;
    bottom: 0px;
    z-index: 999;
    clear: both;
    background: #fff;
    border-top: 1px solid #000;
  }

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

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

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

  .footerActions__btnWire form {
    width: 220px;
  }

  /*==================================================
    MAIN SP
  ==================================================*/
  .ttlWrap {
    height: 100px;
  }

  .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 {
    padding: 10% 0;
  }

  .shopInfoBox__inner {
    padding: 20px;
    width: 96%;
  }
  
  .shopInfoBox__ttl {
    width: 50%;
  }

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

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

  /*==================================================
    bannerWrap(来店予約バナー)
  ==================================================*/
  .bannerWrap {
    width: 96%;
  }
}
