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

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

  --font-en: 'Oswald', sans-serif;

  --color-main: #009056;
  --color-red: #CC1030;
  --color-orange: #FF5E00;
  --color-yellow: #FFC12A;
  --color-ygreen: #8ECC11;
  --color-green: #009056;
  --color-lightgreen: #EBF0E3;
  --color-blue: #004EA2;
  --color-lightblue: #008CCF;
  --color-navy: #0F172A;
  --color-purple: #662D90;
  --color-pink: #f72b80;
  --color-salmon: #ff9898;
  --color-black: #222;
  --color-darkgray: #666;
  --color-gray: #999;
  --color-gray-a5: #A5A5A5;
  --color-lightgray: #ccc;
  --color-palegray: #F5F5F5;
  --color-paleblue: #EEF2FF;
  --color-paleyellow: #F7E382;
  --color-paleorange: #FFBD5E;
  --color-gold: #D4A017;
  --color-lightpink: #ffc1c1;

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

  --rad-common: 8px;
}

@media only screen and (max-width: 767px) {
  :root {
    --gutter-supernarrow: 10px;
    --gutter-narrow: 15px;
    --gutter: 25px;
    --gutter-wide: 50px;
    --gutter-superwide: 60px;
  }
}

@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;
  font-weight: 500;
  line-height: 1.6;
  background: #fff;
  color: var(--color-black);
  -webkit-tap-highlight-color: initial;
}

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

body {
  font-size: clamp(1.5rem, 2vw, 1.6rem);
  font-weight: 500;
  /* overflow-x: hidden; */
}

#main {
  display: block;
  word-break: break-word;
  position: relative;
}

a {
  text-decoration: none;
  -webkit-transition: all .3s;
  transition: all .3s;
}

@media (any-hover:hover) {

  a:hover,
  a:active {
    text-decoration: none;
    filter: alpha(opacity=70);
    -webkit-transition: all .3s;
    transition: all .3s;
  }
}

.en_font {
  font-family: var(--font-en);
  font-optical-sizing: auto;
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1;
}

/*bodyを固定*/
body.menu-open {
  overflow: hidden;
}

/* ボタン */
.btn_archive {
  text-align: center;
}

.btn_archive a,
.btn_archive input {
  display: block;
  width: 90%;
  max-width: 300px;
  margin: var(--gutter) auto 0;
  background: var(--color-black);
  border: 1px solid var(--color-black);
  color: #FFF;
  padding: 20px 0;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
  text-decoration: none;
  border-radius: var(--rad-common);
  position: relative;
}

.btn_archive-member a {
  background: var(--color-orange);
  border: 1px solid var(--color-orange);
}

.btn_archive a::after {
  position: absolute;
  content: '';
  width: 7px;
  height: 14px;
  background: url(../img/common/arrow_white.svg) no-repeat center / contain;
  top: 50%;
  right: 5%;
  transform: translate(-50%, -50%);
}

@media (any-hover:hover) {
  .btn_archive a:hover {
    background: #fff;
    color: var(--color-black);
  }
  .btn_archive a:hover::after {
    background: url(../img/common/arrow_black.svg) no-repeat center / contain;
  }
  .btn_archive-member a:hover {
    color: var(--color-orange);
  }
  .btn_archive-member a:hover::after {
    background: url(../img/common/arrow_orange.svg) no-repeat center / contain;
  }
}

/*==================================================
  HEADER
==================================================*/
.header__inner {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding-bottom: 1.5rem;
}

.header__leftcont {
  /* width: 42%; */
  width: 50%;
}
.header_num_box {
  display: flex;
  align-items: center;
  margin: 5px 0 10px;
  line-height: 1;
  font-size: 1rem;
}
.header_num_box .numWrap {
  display: flex;
  align-items: center;
}
.header_num_box .num__ttl {
  border: 1px solid var(--color-black);
  font-weight: bold;
  padding: 4px 10px;
  margin-right: 10px;
}
.header_num_box .header_num {
  font-size: 2rem;
  font-weight: bold;
  margin-right: 5px;
}

.header__leftcont .site_name a {
  display: flex;
  gap: 5px;
  align-items: center;
}

.site_catch {
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  margin-top: 5px;
}

.header__pcBtnWrap {
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  margin-bottom: 1rem;
}

.header__pcBtn a {
  display: block;
  text-align: center;
  padding: 5px 22px 7px;
  text-decoration: none;
  line-height: 1;
  letter-spacing: .02em;
  font-size: 1.4rem;
  font-weight: bold;
  position: relative;
}

.header__pcBtn--emember a {
  color: #FFF;
  background: var(--color-orange);
  border: 2px solid var(--color-orange);
  border-radius: 0 0 var(--rad-common) var(--rad-common);
  position: static;
}
@media (any-hover:hover) {
  .header__pcBtn a:hover {
    -webkit-transition: all .3s;
    transition: all .3s;
  }
  .header__pcBtn--emember a:hover {
    background: #fff;
    color: var(--color-orange);
  }
  .header__btn--shoprsv a:hover {
    color: var(--color-blue);
  }
  .header__btn--contact a:hover {
    color: var(--color-green);
  }
}

input[type="submit"].header__pcLogoutBtn {
  background: var(--color-darkgray);
  border: 1px solid var(--color-darkgray);
  border-radius: 0 0 var(--rad-common) var(--rad-common);
  color: #fff;
  padding: 5px 10px 7px;
}

.header__shopName {
  font-size: 1.2rem;
  font-weight: bold;
  border-right: 1px solid var(--color-lightgray);
  padding-right: 1rem;
}

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

.header__telNum {
  font-weight: bold;
  font-size: 2.4rem;
  margin-right: .5rem;
  padding-left: 1rem;
  width: 152px;
}

.header__telTime {
  line-height: 1.2;
  font-size: 1rem;
}

/*
  ===== globalnavigation ==========================================
  */
.pcNavi__list {
  max-width: var(--width-content);
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.pcNavi__item {
  width: 20%;
}

.pcNavi__item span {
  display: block;
  font-size: 1rem;
  color: var(--color-gray-a5);
  letter-spacing: .02em;
}

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

@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: 5px;
  background: var(--color-palegray);
  border-top: 1px solid var(--color-black);
  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 10px;
  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: 0;
  bottom: 50px;
}

.footFix .ancPagetop a {
  color: #fff;
  text-align: center;
  border: 1px solid var(--color-black);
  background: var(--color-black);
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  padding-top: 30px;
  width: 60px;
  height: 60px;
  font-size: 1.6rem;
  letter-spacing: .05em;
  border-radius: var(--rad-common) 0 0 var(--rad-common);
}
.ancPagetop a::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 10px;
  transform: translateX(-50%) rotate(-90deg);
  background-repeat: no-repeat;
  background: url(../img/common/arrow_white.svg) no-repeat;
  width: 14px;
  height: auto;
  aspect-ratio: 164 / 150;
  pointer-events: none;
}
@media (any-hover:hover) {
  .ancPagetop a:hover {
    background: #fff;
    color: var(--color-black);
  }
  .ancPagetop a:hover::before {
    background: url(../img/common/arrow_black.svg) no-repeat;
  }
}

/* サイドバナー */
.footFix .sidefix {
  position: absolute;
  right: 0;
  bottom: 130px;
  display: flex;
  flex-flow: column wrap;
}

.footFix .sidefix .fixBtnList {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footFix .sidefix .fixBtnList li a {
  color: #fff;
  border: 1px solid #fff;
  border-radius: var(--rad-common) 0 0 var(--rad-common);
  padding: 13px;
  letter-spacing: .25em;
  writing-mode: vertical-rl;
  -webkit-writing-mode: vertical-rl;
  display: flex;
  gap: 5px;
}
.footFix .sidefix .fixBtnList li.fixBtn_regist a {
  background: var(--color-orange);
}
.footFix .sidefix .fixBtnList li.fixBtn_shopreserv a {
  background: var(--color-blue);
}
@media (any-hover:hover) {
  .footFix .sidefix .fixBtnList li.fixBtn_regist a:hover {
    border: 1px solid var(--color-orange);
    background: #fff;
    color: var(--color-orange);
  }
  .footFix .sidefix .fixBtnList li.fixBtn_regist a:hover path {
    fill: var(--color-orange);
  }
  .footFix .sidefix .fixBtnList li.fixBtn_shopreserv a:hover {
    border: 1px solid var(--color-blue);
    background: #fff;
    color: var(--color-blue);
  }
  .footFix .sidefix .fixBtnList li.fixBtn_shopreserv a:hover path {
    fill: var(--color-blue);
  }
}

#footer {
  padding-top: clamp(4rem, 6vw, 8rem);
  border-top: 1px solid var(--color-lightgreen);
}

.footer__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__head__left .site_catch {
  text-align: left;
  margin-bottom: 10px;
}
.footer__logoWrap a {
  display: flex;
  gap: 5px;
}
.footer__head__right {
  color: var(--color-darkgray);
  text-align: right;
  font-size: 1.2rem;
}

.footerSiteInfo {
  padding: clamp(4rem, 6vw, 8rem) 0 var(--gutter-narrow);
  display: flex;
  gap: 50px;
  justify-content: space-between;
}

.footerSiteInfo__company {
  width: 45%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footerSiteInfo__companyItem {
  display: flex;
  gap: 20px;
}

.footer__shopImgBox {
  width: 150px;
  height: 100px;
}

.footerSiteInfo__companyInfo {
  width: calc(100% - 150px - 20px);
}

.footerSiteInfo__companyTtl {
  font-weight: bold;
  font-size: clamp(1.6rem, 4vw, 1.8rem);
  border: 1px solid var(--color-black);
  padding: 2px 7px;
  display: inline-block;
  line-height: 1.3;
}

.footerSiteInfo__companyDetail {
  font-size: 1.2rem;
  padding: 8px 0;
}

.footerSiteInfo__companyInfo__tel {
  font-size: 2.5em;
  font-weight: bold;
}

.footerSiteInfo__companyAddress {
  font-size: 1.4rem;
}

.footerSitemap {
  display: flex;
  /* Safari */
  justify-content: space-between;
  width: 45%;
  gap: 10px;
  flex-wrap: wrap;
}

.footer__sitemap {
  width: calc((100% / 3) - 10px);
  margin-bottom: 20px;
}

.footer__sitemapTtl {
  font-weight: bold;
  margin-bottom: 10px;
}

.footer__sitemapItem {
  position: relative;
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: flex-start;
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.footer__sitemapItem::before {
  content: "";
  width: 5px;
  height: 1px;
  background: var(--color-green);
  position: relative;
  top: 1px;
}
@media (any-hover:hover) {
  .footer__sitemapItem a:hover {
    color: var(--color-green);
  }
}

.footer__bottom {
  background: var(--color-palegray);
  padding: var(--gutter-narrow) 0;
}
.footer__bottomInner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/*SNS icon*/
.footerSocial{
  display:flex;
  justify-content: center;
  margin-top: 10px;
  gap: 10px;
}

.footerSocial__item {
  width:40px;
  height:40px;
}

.footerBnrWrap {
  text-align: right;
}
.footerBnrBox_txt {
  font-size: 1.2rem;
  margin-top: 4px;
}

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

/* recaptcha */
.grecaptcha-badge {
  visibility: hidden;
}

/*==================================================
  MAIN
==================================================*/
/*************** メインタイトル ****************/
.ttlWrap {
  background: linear-gradient(
    120deg,
    var(--color-green) 70%,
    var(--color-blue) 70%
  );
  color: #fff;
  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*/

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

#bread>span:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  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.8rem, 2vw, 2rem);
  font-weight: bold;
  padding: 15px 0 15px 5px;
  border-bottom: solid 1px var(--color-darkgray);
  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 var(--color-black);
}

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

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

/* アニメーション */
.pekopeko {
    animation: pekopeko 2s infinite;
}
@keyframes pekopeko {
    0% {
        top: 0px;
    }
    10% {
        top: 3px;
    }
    20% {
        top: 0px;
    }
    30% {
        top: 3px;
    }
    40% {
        top: 0px;
    }
}


/*==================================================
  slick
==================================================*/
.slick-track {
  display: flex !important;
}

.slick-slide {
  height: auto !important;
}

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

.slick-next,
.slick-prev {
  z-index: 99 !important;
  width: 50px !important;
  height: 50px !important;
  background: rgba(102, 102, 102, 0.50)!important;
  border-radius: var(--rad-common)!important;
}

.slick-next::before {
  background: url(../img/common/arrow_white.svg) no-repeat !important;
  background-size: contain !important;
  transform: translate(-50%, -50%);
}

.slick-prev::before {
  background: url(../img/common/arrow_white.svg) no-repeat !important;
  background-size: contain !important;
  transform: translate(-50%, -50%) rotate(180deg);
}

.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: var(--color-lightgray);
  border-radius: 8px;
  opacity: 1 !important;
}

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

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

/*==================================================
  shopInfoBox
==================================================*/
.shopInfoBox__inner {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

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

.shopInfoBox__imgBox {
  width: 47%;
}

.shopInfoBox__imgList {
  position: relative;
}

.shopInfoBox__img {
  text-align: center;
}

.shopInfoBox__img img {
  width: 100%;
}

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

/*-- 店舗画像slick サムネイル--*/
.shopInfoBox .slick-slider {
  height: auto !important;
  -webkit-backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
}

.shopInfoBox .thumImages {
  position: relative;
  overflow: hidden;
  display: flex;
}

.shopInfoBox .thumImages .shopThumImage {
  margin: 10px 2px;
  width: 25%;
  overflow: hidden;
}

.shopInfoBox .thumImages .shopThumImage:hover {
  cursor: pointer;
}

.shopInfoBox .thumImages .shopThumImage img {
  opacity: .5;
}

.shopInfoBox .thumImages .shopThumImage.is-current img {
  opacity: 1;
}

.shopInfoBox__dataBox {
  width: 49%;
}

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

.shopInfoBox__dataTtl {
  max-width: 150px;
  width: 35%;
  font-weight: bold;
  flex-shrink: 0;
}

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

.shopInfoBox__shopCommentBox {
  width: 100%;
  margin-top: var(--gutter-supernarrow);
}

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

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

/*==================================================
  membership
==================================================*/
.membershipWrap {
  padding: var(--gutter-narrow) 0 0;
}

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

.membership__item,
.registBox__item,
.reserveBox__item,
.contactBox__item {
  width: 32%;
  border-radius: var(--rad-common);
}

.membership__list .membership__item {
  background: var(--color-palegray);
  padding: 1em;
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  min-height: 300px;
}

.membership__item .infoBox__ememberBox__ttlBox__badge {
  text-align: center;
  font-weight: bold;
  padding-bottom: 2rem;
  line-height: 1.2;
}
.ttlBox__badge--main {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  display: block;
}

.membership__item .infoBox__loginBox {
  width: 80%;
  margin-bottom: 1em;
}

.membership__item .infoBox__loginBox .infoBox__loginBox__input {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1em;
}

.membership__item .infoBox__loginBox .infoBox__loginBox__input .infoBox__loginBox__label {
  width: 20%;
  font-size: 1.13em;
  text-align: right;
  padding-right: .75em;
}

.membership__item .infoBox__loginBox .infoBox__loginBox__input input {
  width: 80%;
  border-radius: 4px;
}

.membership__item .infoBox__loginBox .infoBox__loginBox__btn {
  display: block;
  width: 100%;
  margin: 1.5em 0 0;
  background: var(--color-black);
  border-radius: var(--rad-common);
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
  text-decoration: none;
  position: relative;
  text-align: center;
}

.membership__item .infoBox__loginBox .infoBox__loginBox__btn::after {
  position: absolute;
  content: '';
  width: 7px;
  height: 12px;
  background: url(../img/common/arrow_white.svg) no-repeat center / contain;
  top: 50%;
  right: 5%;
  transform: translate(-50%, -50%);
}

.membership__item .infoBox__loginBox .infoBox__loginBox__btn:hover {
  background: var(--color-black);
  opacity: 1;
  transition: .3s;
}

.membership__item .infoBox__loginBox .infoBox__loginBox__btn.btn01 {
  padding: 0;
}

.membership__item .infoBox__loginBox .infoBox__loginBox__btn input {
  width: 100%;
  border: 1px solid var(--color-black);
  transition: all 0.5s ease;
  border-radius: 10px;
}
@media (any-hover:hover) {
  .membership__item .infoBox__loginBox .infoBox__loginBox__btn:hover {
    background: #fff;
    color: var(--color-black);
  }
  .membership__item .infoBox__loginBox .infoBox__loginBox__btn:hover::after {
    background: url(../img/common/arrow_black.svg) no-repeat;
  }
}

/* ログイン後 */
.membership__item .infoBox__memberBox {
  width: 100%;
}

.membership__item .infoBox__memberBox__ttl__inner .infoBox__memberBox__ttl__name {
  padding-bottom: 1rem;
  text-align: center;
}

.membership__item .infoBox__memberBox__ttl__inner .infoBox__memberBox__ttl__menuList {
  display: flex;
  flex-flow: column wrap;
  width: 100%;
}

.membership__item .infoBox__memberBox__ttl__inner .btn_archive a {
  font-size: 1.6rem;
  margin-top: 0;
}

.membership__item .infoBox__memberBox__ttl__menuList .btn_logout {
  width: 60%;
}

.membership__list .registBox__item {
  background: #FFF9EF;
  position: relative;
  min-height: 272px;
}
.membership__list .registBox__ttl {
  background: var(--color-orange);
  height: 97px;
  color: #fff;
  border-radius: var(--rad-common) var(--rad-common) 0 0;
  font-weight: 900;
  font-size: clamp(2.7rem, 5vw, 3rem);
  letter-spacing: .05em;
  line-height: 1.2;
  padding: 16px 40px 16px 148px;
  position: relative;
}
.membership__list .registBox__ttl::before {
  content: '';
  display: block;
  margin: 0 auto;
  width: 101px;
  height: 110px;
  background: url(../img/common/img_registBox_01.svg) no-repeat center / contain;
  left: 18px;
  bottom: -1px;
  position: absolute;
}
.membership__list .registBox__subTtl {
  display: block;
  font-size: 1.6rem;
  font-weight: bold;
  .big {
    font-size: 2rem;
  }
}
.membership__list .registBox__txt {
  font-size: 1.8rem;
  font-weight: bold;
  padding: 30px;
  letter-spacing: .01em;
}
.membership__list .registBox__txt span {
  color: var(--color-orange);
  font-size: 3rem;
  letter-spacing: .025em;
}
.membership__list .registBox__item .btn_archive {
  position: absolute;
  bottom: 0;
  right: 0;
}
.membership__list .registBox__item .btn_archive a {
  background: var(--color-orange);
  border: 1px solid var(--color-orange);
  border-radius: var(--rad-common) 0 var(--rad-common) 0;
  margin: 0;
  width: 240px;
}
@media (any-hover:hover) {
  .membership__list .registBox__item .btn_archive a:hover {
    background: #fff;
    color: var(--color-orange);
  }
  .membership__list .registBox__item .btn_archive a:hover::after {
    background: url(../img/common/arrow_orange.svg);
  }
}
/* ログイン後（住宅ローン相談） */
.membership__list .registBox__item--loan .registBox__ttl {
  padding: 16px 10px 16px 130px;
}
.membership__list .registBox__item--loan .registBox__txt {
  padding-bottom: 70px;
}
.membership__list .registBox__item--loan .registBox__txt span {
  font-size: 2rem;
}

.membership__list .reserveBox__item {
  background: var(--color-paleblue);
  position: relative;
  min-height: 300px;
}
.membership__list .reserveBox__ttl {
  background: var(--color-blue);
  height: 97px;
  color: #fff;
  border-radius: var(--rad-common) var(--rad-common) 0 0;
  font-weight: 900;
  font-size: clamp(2.7rem, 5vw, 3rem);
  letter-spacing: .05em;
  line-height: 1.2;
  padding: 16px 20px 16px 148px;
  position: relative;
}
.membership__list .reserveBox__ttl::before {
  content: '';
  display: block;
  margin: 0 auto;
  width: 89px;
  height: 104px;
  background: url(../img/common/img_reserveBox_01.svg) no-repeat center / contain;
  left: 30px;
  bottom: 0;
  position: absolute;
}
.membership__list .reserveBox__subTtl {
  display: block;
  font-size: 1.6rem;
  font-weight: bold;
  .big {
    font-size: 2rem;
  }
}
.membership__list .reserveBox__txt {
  font-size: 1.8rem;
  font-weight: bold;
  padding: 30px;
  letter-spacing: .01em;
}
.membership__list .reserveBox__txt span {
  color: var(--color-blue);
  font-size: 2rem;
  letter-spacing: .025em;
}
.membership__list .reserveBox__item .btn_archive {
  position: absolute;
  bottom: 0;
  right: 0;
}
.membership__list .reserveBox__item .btn_archive a {
  background: var(--color-blue);
  border: 1px solid var(--color-blue);
  border-radius: var(--rad-common) 0 var(--rad-common) 0;
  margin: 0;
  width: 240px;
}
@media (any-hover:hover) {
  .membership__list .reserveBox__item .btn_archive a:hover {
    background: #fff;
    color: var(--color-blue);
  }
  .membership__list .reserveBox__item .btn_archive a:hover::after {
    background: url(../img/common/arrow_blue.svg);
  }
}

/* footerBnrBox */
.footerBnrBox {
  background: var(--color-lightgreen);
  padding: clamp(4rem, 6vw, 8rem) 0;
  margin-top: var(--gutter-wide);
}
.membership__list .contactBox__item {
  background: #F7FBFA;
  position: relative;
  min-height: 300px;
}
.membership__list .contactBox__ttl {
  background: var(--color-green);
  height: 97px;
  color: #fff;
  border-radius: var(--rad-common) var(--rad-common) 0 0;
  font-weight: 900;
  font-size: clamp(2.7rem, 5vw, 3rem);
  letter-spacing: .05em;
  line-height: 1.2;
  padding: 16px 20px 16px 148px;
  position: relative;
}
.membership__list .contactBox__ttl::before {
  content: '';
  display: block;
  margin: 0 auto;
  width: 113px;
  height: 108px;
  background: url(../img/common/img_contactBox_01.svg) no-repeat center / contain;
  left: 30px;
  bottom: 0;
  position: absolute;
}
.membership__list .contactBox__subTtl {
  display: block;
  font-size: 1.6rem;
  font-weight: bold;
  .big {
    font-size: 2rem;
  }
}
.membership__list .contactBox__txt {
  font-size: 1.8rem;
  font-weight: bold;
  padding: 30px;
  letter-spacing: .01em;
}
.membership__list .contactBox__txt span {
  color: var(--color-green);
  font-size: 2rem;
  letter-spacing: .025em;
}
.membership__list .contactBox__item .btn_archive {
  position: absolute;
  bottom: 0;
  right: 0;
}
.membership__list .contactBox__item .btn_archive a {
  background: var(--color-green);
  border: 1px solid var(--color-green);
  border-radius: var(--rad-common) 0 var(--rad-common) 0;
  margin: 0;
  width: 240px;
}
.membership__list .contactBox__item .btn_archive a::after {
  right: 2%;
}
@media (any-hover:hover) {
  .membership__list .contactBox__item .btn_archive a:hover {
    background: #fff;
    color: var(--color-green);
  }
  .membership__list .contactBox__item .btn_archive a:hover::after {
    background: url(../img/common/arrow_green.svg);
  }
}


/*==================================================
  PC only SETTINGS : Min768px 
==================================================*/
@media screen and (min-width: 768px) {  
  /* fixed */
  #pcNavi.fixed {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    background: #fff;
    animation: header-slidein 0.5s;
    box-shadow:  0 0 3px 0px rgba(64,41,23,0.4);
  }
  
  @keyframes header-slidein {
    0% {
      transform: translateY(-200px);
    }
  
    100% {
      transform: translateY(0);
  
    }
  }
  #pcNavi.fixed .inner {
    align-items: center;
    max-width: 98%;
    margin: 5px auto 0;
  }
  
  #pcNavi.fixed >ul>li>a {
    padding: 0.5em;
    min-height: auto;
  }
}

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

  /*==================================================
    HEADER PC/TABLET
  ==================================================*/
  .header__inner {
    width: 98%!important;
    margin: 0 auto;
  }
  .header__leftcont {
    width: 46%;
  }
  .header__pcContactBox {
    width: 60%;
  }
  .header__shopName {
    font-size: 1rem;
  }
  .header__telNum {
    font-size: 2rem;
    width: 127px;
  }

  .pcMemberNavi__item {
    font-size: 1.3rem;
  }
  .pcMemberNavi__item--input {
    width: 22%;
  }
  .pcMemberNavi__item--input input {
    width: 100%;
  }

  /*==================================================
    membership
  ==================================================*/
  .membership__list {
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .membership__list .membership__item,
  .membership__list .registBox__item,
  .membership__list .reserveBox__item,
  .membership__list .contactBox__item {
    width: 49%;
  }

  /*==================================================
    FOOTER PC/TABLET
  ==================================================*/
  .footer__head,
  .footerSiteInfo {
    flex-direction: column;
  }
  .footerSiteInfo__company,
  .footerSitemap {
    width: 100%;
  }

  /*==================================================
    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
  ==================================================*/
  /*SPでヘッダー固定*/
  header {
    position: fixed;  /*SPではヘッダーを常時固定*/
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 10000;
    background: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
  }

  .header__noFixed header {
    position: relative !important;
  }
  .header__noFixed #main {
    padding-top: 0 !important;
  }

  .header__inner {
    padding-bottom: 0;
    width: 100%!important;
    align-items: center;
  }

  .header.sphidden {
    transform: translateY(-200%);
    overflow: hidden;
  }

  .header__leftcont {
    width: 74%;
    padding-left: 10px;
  }

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

  .header__spBtn {
    background: #fff;
  }

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

  .header__spNaviBtn {
    position: relative;
    background: var(--color-green);
    color: #fff;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    font-size: 10px;
    font-family: var(--font-en);
    font-weight: 500;
    padding: 4px;
    letter-spacing: .05em;
  }

  .header__spNaviBtn span {
    width: 50%;
    height: 2px;
    background-color: #fff;
    display: block;
    position: absolute;
    transition: all .5s;
  }

  .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 span:nth-of-type(1) {
    -webkit-transform: translateY(7px) rotate(-45deg);
    transform: translateY(7px) rotate(-45deg);
  }
  .header__spNaviBtn.active span:nth-of-type(2) {
    opacity: 0;
  }
  .header__spNaviBtn.active span:nth-of-type(3) {
    -webkit-transform: translateY(-7px) rotate(45deg);
    transform: translateY(-7px) rotate(45deg);
  }

  .header__spBtn--emember a {
    display: block;
    background: var(--color-orange);
    color: #fff;
    width: 45px;
    height: 45px;
    text-align: center;
    white-space: nowrap;
    line-height: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  /*ドロップダウンメニュー*/
  .header__spNaviBtn.active {
    background: var(--color-lightgreen);
    color: var(--color-green);
  }
  .header__spNaviBtn.active span {
    background-color: var(--color-green);
  }
  /* ハンバーガーメニュー用のスクロール制御 */
  body.hamburger-menu-open {
    overflow: hidden;
  }

  .spNavi {
    display: none;
    height: 100dvh;
    background: var(--color-lightgreen);
    overflow-y: scroll;
  }

  /* メニュー内ピックアップ */
  .spNavi__pickUp {
    padding: var(--gutter-narrow) 0 var(--gutter);
  }
  .spNavi__pickUpList {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 7px;
    margin: auto;
  }
  .spNavi__pickUpItem {
    width: 47%;
    background: var(--color-blue);
    border-radius: var(--rad-common);
    color: #fff;
    font-weight: bold;
    text-align: center;
    font-size: 1.4rem;
  }
  .spNavi__pickUpItem--login {
    background: var(--color-orange);
    width: 96%;
  }
  .spNavi__pickUpItem a {
    padding: 10px 5px;
    display: block;
    position: relative;
  }
  .spNavi__pickUpItem a::after,
  .spNavi__pickUpItem .modal-title::after {
    position: absolute;
    content: '';
    width: 7px;
    height: 14px;
    background: url(../img/common/arrow_white.svg) no-repeat center / contain;
    top: 50%;
    right: 2%;
    transform: translate(-50%, -50%);
  }
  .spNavi__pickUpItem.btn--recently {
    position: relative;
    transition: all .3s ease;
  }
  .spNavi__pickUpItem.btn--recently #estateViewHistoryBox button.modal-title {
    content: "";
    display: inline-block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
  /* 最近見た物件モーダル */
  .spNavi__pickUpItem .modal-overlay {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background-color: rgba(0, 0, 0, 0.6);
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
  }
  .spNavi__pickUpItem .modal-content {
    background-color: #fff;
    border-radius: var(--rad-common);
    padding: var(--gutter-narrow);
    width: 85%;
    max-width: 600px;
    max-height: calc(100vh - 150px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    overflow: scroll;
    transition: all .3s ease;
  }
  .spNavi__pickUpItem .modal-content .recentlyList_empty {
    color: var(--color-black);
    margin-bottom: var(--gutter-supernarrow);
  }
  .spNavi__pickUpItem .modal-content .empty__btn a {
    width: 100%;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .spNavi__pickUpItem .recentlyList_btn .btn_form {
    width: 100%;
    margin: 0;
    font-size: 1.4rem;
  }
  .spNavi__pickUpItem .close-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 9em;
    height: 3em;
    margin: 1em auto 0;
    border-radius: var(--rad-common);
  }
  .spNavi__pickUpItem .close-button:hover {
    opacity: 0.6;
  }

  #estateViewHistoryBox .recently_ttl {
    text-align: center;
    font-weight: bold;
    font-size: 1.8rem;
    border-bottom: 2px solid var(--color-green);
    margin-bottom: 0.5em;
  }

  #estateViewHistoryBox .recentlyList {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: var(--gutter-narrow);
    margin-bottom: var(--gutter-narrow);
  }

  #estateViewHistoryBox .recentlyList_item {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    border: 1px solid var(--color-gray);
    border-radius: var(--rad-small);
    margin-bottom: 0;
  }

  /*最近見た物件*/
  #estateViewHistoryBox .estateDetail_recently {
    margin-top: 0;
    color: var(--color-black);
    text-align: left;
  }

  #estateViewHistoryBox .recentlyList_item a {
    display: flex;
    align-items: flex-start;  
    width: calc(100% - 22px);
    height: 100%;
    padding: 5px;
    gap: 5px;
  }

  #estateViewHistoryBox .recentlyList_item_image {
    aspect-ratio: 4 / 3;
  }

  #estateViewHistoryBox .recentlyList_item_info {
    font-size: 1.4rem;
    padding: 0;
  }
  #estateViewHistoryBox .recentlyList_item_ttl {
    margin-bottom: 5px;
  }

  #estateViewHistoryBox .recentlyList_item_checkbox {
    display: flex;
    justify-content: center;
    align-items: center;
    position: static;
    background: var(--color-lightgray);
    border-radius: var(--rad-small) 0 0 var(--rad-small);
    width: 22px;
    padding: 0 2px;
  }

  #estateViewHistoryBox .recentlyList_item_checkbox input {
    width: 18px;
    height: 18px;
  }

  #estateViewHistoryBox .recentlyList_item_checkbox input[type="checkbox"]:checked:before {
    top: 10px;
  }

  #estateViewHistoryBox .recentlyList_item_checkbox input[type="checkbox"]:checked:after {
    top: 10px;
  }

  /* メニューリスト */
  .spNavi__listWrap {
    padding-bottom: 60px;
  }

  .spNavi__listWrap__block {
    border-bottom: 1px solid var(--color-lightgray);
    margin: 0 10px;
  }

  .spNavi__ttl {
    font-size: 1.6rem;
    font-weight: bold;
    letter-spacing: .05em;
    padding: 10px;
  }

  .spNavi__ttl.is-open {
    color: var(--color-green);
  }

  .spNavi__list {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
  }

  .spNavi__list.is-open {
    max-height: 500px;
    padding-bottom: 15px;
  }

  .spNavi__toggle {
    cursor: pointer;
    position: relative;
  }

  .spNavi__toggle::after {
    position: absolute;
    content: '';
    width: 7px;
    height: 14px;
    background: url(../img/common/arrow_green.svg) no-repeat center / contain;
    top: 50%;
    right: 5%;
    transform: translate(-50%, -50%) rotate(90deg);
    transition: transform 0.3s;
  }

  .spNavi__toggle.is-open::after {
    transform: translate(-50%, -50%) rotate(270deg);
  }

  .spNavi__item a {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 3px 0 4px 20px;
    font-size: 1.4rem;
    position: relative;
  }

  .spNavi__item a {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 3px 0 4px 20px;
    font-size: 1.4rem;
    position: relative;
  }

  .spNavi__item a::before {
    position: absolute;
    content: "";
    width: 8px;
    height: 1px;
    position: relative;
    background: var(--color-green);
    margin-right: 3px;
  }

  .spNavi__childList {
    padding-left: 1em;
  }

  .spNavi__list:last-child .spNavi__item {
    font-size: 1.4rem;
  }

  /* 会員ログイン後　ボタンとモーダルの内部 */
  .header__spMemberBtn {
    background: var(--color-orange);
    color: #fff;
    font-size: 10px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
    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-orange);
  }

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

  .memberModal__menuItem--premium a {
    background: var(--color-gold);
  }

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

  /*==================================================
    membershipWrap footerBnrBox
  ==================================================*/
  .membership__list {
    flex-direction: column;
    gap: 3rem;
  }
  .membership__list .registBox__item,
  .membership__list .reserveBox__item,
  .membership__list .contactBox__item {
    width: 100%;
  }
  .membership__list .registBox__txt,
  .membership__list .reserveBox__txt,
  .membership__list .contactBox__txt {
    padding: 15px 15px 75px 15px;
  }
  
  /*==================================================
    FOOTER SP
  ==================================================*/
  /*footFix*/
  .footFix {
    bottom: 10%;
  }

  .footFix .ancPagetop {
    bottom: 40px;
  }

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

  .footer__head__left .site_catch {
    text-align: center;
  }

  .footer__head__right {
    text-align: left;
  }

  .footerSiteInfo__company {
    width: 100%;
    gap: 15px;
  }

  .footerSiteInfo__companyItem {
    gap: 10px;
  }

  .footerSiteInfo__companyInfo__tel {
    display: block;
  }

  .footer__bottomInner {
    flex-direction: column;
    gap: .5rem;
  }

  /*SNS icon*/
  .footerSnsBox {
    margin-bottom: 15px;
  }

  /* 固定メニュー */
  .footerMenu {
    width: 100%;
    height: 93px;
    padding: 0 1%;
    position: fixed;
    bottom: 0;
    right: 0;
    display: block;
    align-items: center;
    justify-content: space-between;
    z-index: 99;
    background: rgba(255,255,255,.3);
  }

  .footerMenu .fixBtnList {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    gap: 5px;
  }

  .footerMenu .fixBtnList li {
    width: 49%;
  }

  .footerMenu .fixBtnList li a,
  .footerMenu .fixBtnList li .footerFixMenu__item__telBtn,
  .footerMenu .fixBtnList li .footerActions__logoutBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--rad-common);
    padding: .5em;
    font-weight: 600;
  }

  .footerMenu .fixBtnList .fixBtn_shopreserv a {
    background-color: var(--color-yellow);
    color: var(--color-black);
  }
  
  .footerMenu .fixBtnList .fixBtn_regist a {
    background-color: var(--color-orange);
    color: #fff;
  }
  
  .footerMenu .fixBtnList .fixBtn_shop a {
    background-color: var(--color-blue);
    color: #fff;
  }

  .footerMenu .fixBtnList .fixBtn_logout {
    background-color: var(--color-darkgray);
    border-radius: var(--rad-common);
    color: #fff;
  }
  .footerMenu .fixBtnList .fixBtn_logout .footerActions__logoutBtn {
    text-align: center;
    width: 100%;
  }

  .footerMenu .fixBtnList .footerFixMenu__item__telBtn {
    background: var(--color-black);
    color: #fff;
  }

  .footerMenu .fixBtnList li i {
    font-size: 20px;
    margin-right: 3px;
  }

  /* 電話ボタン */
  .footerFixMenu__telWrap {
    position: fixed;
    bottom: 94px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, .8);
    box-shadow: 0 0 5px 0 #ccc;
    padding: 5px;
    z-index: 1000;
  }

  .footerFixMenu__tel__item {
    width: 75%;
    border-radius: var(--rad-common);
    padding: 2px;
    margin: 1em auto;
  }

  .footerFixMenu__tel__item__inner {
    display: block;
    background: var(--color-black);
    color: #fff;
    border-radius: var(--rad-round);
    padding: 5px 5px 8px;
    height: 100%;
  }

  .footerFixMenu__tel__item p {
    text-align: center;
  }

  .footerFixMenu__tel__item .footerFixMenu__tel__item__number {
    font-weight: 900;
    white-space: nowrap;
    font-size: 1.5em;
  }

  /*==================================================
    MAIN SP
  ==================================================*/
  .ttlWrap {
    min-height: 100px;
    padding: 25px 0 20px;
  }

  .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: 0;
    background-image: none;
    padding: 2% 0 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__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: 10px 5px;
  }

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

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

  .shopInfoBox__shopCommentBox {
    margin-top: 3%;
  }

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