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

/*==================================================
  CSS CUSTOM PROPERTY
==================================================*/
:root {
  --width-content: 1024px;
  --width-wide: 2000px;

  --color-main: #00B3B1;
  --color-red: #D80C18;
  --color-orange: #FF9E02;
  --color-yellow: #FFFFBE;
  --color-ygreen: #8ECC11;
  --color-green: #8ECC11;
  --color-blue: #1E4FEF;
  --color-lightblue: #00B3B1;
  --color-navy: #153BB8;
  --color-purple: #662D90;
  --color-pink: #f72b80;
  --color-salmon: #ff9898;
  --color-black: #000;
  --color-verydarkgray: #4D4D4D;
  --color-darkgray: #666;
  --color-darkwarmgray: #595757;
  --color-gray: #999;
  --color-lightgray: #B3B3B3;
  --color-palegray: #E7E7E6;
  --color-verypalegray: #F7F7F7;
  --color-palegreen: #F1F9EF;
  --color-paleorange: #FF9E020D;
  --color-paleblue: #00B3B10D;
  --color-beige: #fffaf2;
  --color-darkred: #920000;

  --overlay-lightblue: rgba(0, 179, 177, 0.5);

  --gutter-supernarrow: 40px;
  --gutter-narrow: 60px;
  --gutter: 80px;
  --gutter-wide: 100px;
  --gutter-superwide: 120px;

  --rad-common: 0;
}

@media only screen and (max-width: 767px) {
  :root {
    --gutter-supernarrow: 2%;
    --gutter-narrow: 4%;
    --gutter: 10%;
    --gutter-wide: 15%;
    --gutter-superwide: 20%;
  }
}

@media (min-width: 767px) {

  /* ▼スマホサイズでのみ架電可能▼ */
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

/*==================================================
  GENERAL SETTINGS
==================================================*/
* {
  margin: 0;
  padding: 0;
}

html {
  font-family: "Shippori Mincho", "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", serif;
  font-size: 10px;
  line-height: 1.6;
  background: #fff;
  color: var(--color-black);
}

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

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

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

a {
  text-decoration: none;
}

th,
dt {
  font-weight: 400;
}

strong,
b {
  font-weight: 400;
}

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

/*==================================================
  HEADER
==================================================*/
.header {
  background: #fff;
  width: 100%;
  height: 90px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  transition: all .5s;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
  transition: all .5s;
}

.header.min {
  box-shadow: 0 1px 2px rgba(0, 0, 0, .2);
}

.header__logo {
  width: clamp(120px, 12vw, 150px);
  height: 40px;
  margin: 0 10px;
  transition: all .5s;
}

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

.header__contents {
  width: calc(100% - clamp(120px, 12vw, 150px));
}

.header__pcBtnWrap {
  height: 40px;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  font-size: 1.4rem;
  transition: .5s;
}

.header.min .header__pcBtnWrap {
  height: 0;
  overflow: hidden;
}

.header__pcBtn a {
  display: block;
  text-align: center;
  padding: 11px 1.5em;
  text-decoration: none;
  line-height: 16px;
}

.header__pcBtn__ico {
  width: 1em;
  height: 1em;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 5px;
}

.header__pcBtn__ico img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header__pcBtn__txt {
  position: relative;
}

.header__pcBtn--catalog {
  position: relative;
}

.header__pcBtn--catalog::after {
  content: "";
  display: block;
  width: 1px;
  height: 60%;
  background: currentColor;
  position: absolute;
  top: 20%;
  right: 0;
}

.header__pcBtn--signup {
  overflow: hidden;
}

.header__pcBtn--signup a {
  color: #FFF;
  background: var(--color-main);
  border: 1px solid var(--color-main);
  border-right: none;
  position: relative;
  transition: all 0.3s;
}

.header__pcBtn--signup a:hover {
  color: var(--color-main);
  opacity: 1;
}

.header__pcBtn--signup .header__pcBtn__ico img {
  filter: brightness(0) saturate(100%) invert(99%) sepia(100%) saturate(22%) hue-rotate(27deg) brightness(106%) contrast(100%);
}

.header__pcBtn--signup a:hover .header__pcBtn__ico img {
  filter: brightness(0) saturate(100%) invert(46%) sepia(98%) saturate(576%) hue-rotate(135deg) brightness(94%) contrast(101%);
}

.header__pcBtn--signup a::before {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  z-index: 0;
  transform-origin: right top;
  transform: scale(0, 1);
  background: #fff;
  transition: transform 0.3s;
}

.header__pcBtn--signup a:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

.header__pcBtn--login a {
  color: var(--color-main);
  background: #fff;
  border: 1px solid var(--color-main);
  position: relative;
  transition: all 0.3s;
}

.header__pcBtn--login a:hover {
  color: #fff;
  border-left-color: #fff;
  opacity: 1;
}

.header__pcBtn--login a::before {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  z-index: 0;
  transform-origin: right top;
  transform: scale(0, 1);
  background: var(--color-main);
  transition: transform 0.3s;
}

.header__pcBtn--login a:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

.header__pcBtn.header__pcBtn--login form {
  height: 100%;
}

input[type="submit"].header__pcLogoutBtn {
  width: 100px;
  height: 100%;
  border: 1px solid var(--color-darkgray);
  line-height: 1;
  padding: 0;
}

/*
  ===== globalnavigation ==========================================
  */
.pcNavi {
  font-size: clamp(1.2rem, 1.4vw, 1.5rem);
}

.pcNavi__list {
  height: 50px;
  padding-top: 8px;
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
}

.pcNavi__item {
  position: relative;
  height: 42px;
}

.pcNavi__item a {
  display: block;
  height: 100%;
}

@media (any-hover:hover) {
  .pcNavi__item a:hover {
    opacity: 1;
  }
}

.pcNavi__itemTtl {
  display: block;
  width: 100%;
  height: 100%;
  line-height: 16px;
  padding: 13px 1.5em;
  text-align: center;
  letter-spacing: .1em;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
}

.pcNavi__item .pcNavi__itemTtl::before {
  content: "";
  display: block;
  width: 0;
  height: 5px;
  background: var(--color-main);
  position: absolute;
  bottom: 0;
  right: 0;
  transition: all .3s;
}

.pcNavi__item:hover .pcNavi__itemTtl::before {
  left: 0;
  width: 100%;
}

.pcNavi__item--parent .pcNavi__itemTtl {
  padding-right: 2em;
}

.pcNavi__item--parent .pcNavi__itemTtl::after {
  content: "";
  display: block;
  width: .7em;
  height: .7em;
  border-color: var(--color-main);
  border-style: solid;
  border-width: 0 1px 1px 0;
  position: absolute;
  top: 50%;
  right: .7em;
  transform: translate(0, calc(-100% + .25em)) rotate(45deg);
  transition: all .3s;
}

.pcNavi__childList {
  position: absolute;
  min-width: 100%;
  display: block;
  z-index: 999;
  background-color: rgba(255, 255, 255, .8);
}

.pcNavi__item:last-of-type .pcNavi__childList {
  right: 0;
}

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

.pcNavi__item:hover .pcNavi__childItem {
  overflow: visible;
  height: 40px;
  opacity: 1;
}

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

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

/*
  ===== loginfixbox ==========================================
  */
.pcMemberNavi {
  width: 100%;
  height: 50px;
  margin: 0 auto;
  padding: 8px 0;
  background: var(--color-verypalegray);
  text-align: center;
  font-size: 14px;
}

.pcMemberNavi__box {
  margin: 0 0 auto auto;
  height: 100%;
}

.pcMemberNavi__ttl {
  width: 120px;
  text-align: center;
  vertical-align: middle;
  border-right: dotted 1px var(--color-darkgray);
}

.pcMemberNavi__itemBox {
  vertical-align: middle;
  padding: 0 10px;
  text-align: center;
}

.pcMemberNavi__inputWrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pcMemberNavi__inputWrap input[type="email"],
.pcMemberNavi__inputWrap input[type="password"] {
  padding: 5px;
  text-align: left;
}

.pcMemberNavi__item {
  margin-left: 10px;
  display: inline-block;
  vertical-align: middle;
  letter-spacing: normal;
}

/*ログイン時*/
.pcMemberNavi__item--link {
  margin-left: 20px;
  padding-left: 15px;
  background: url(../img/common/icon01.webp) no-repeat left center;
  background-size: 8px auto;
  text-decoration: underline;
}

input[type="submit"].pcMemberNavi__loginBtn,
input[type="submit"].pcMemberNavi__logoutBtn {
  border: none;
  padding: 5px;
  color: #fff;
  text-align: center;
  vertical-align: middle;
  background: var(--color-black);
}

/*==================================================
  FOOTER
==================================================*/
/*footFix*/
.footFix {
  z-index: 1000;
  position: fixed;
  bottom: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
}

.footFix .ancPagetop__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--rad-full);
  background: var(--color-black);
  border: 1px solid #fff;
  color: var(--color-black);
  position: relative;
  cursor: pointer;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  transition: .3s;
}

.footFix .ancPagetop__btn::before {
  content: "";
  width: 16px;
  height: 16px;
  display: block;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% + 4px)) rotate(-45deg);
  transition: .3s;
}

@media (any-hover:hover) {
  .footFix .ancPagetop__btn:hover {
    opacity: 1;
    background: var(--color-main);
    color: #fff;
  }
}

/*フッターバナー*/
.footerBnrBox {
  background: rgba(0, 0, 0, .6);
}

.footerBnrBox__item {
  background: #fff;
}

.footerBnrBox__item a {
  display: block;
  height: 100%;
  color: #fff;
  padding: clamp(10px, 1.2vw, 70px);
}

.footerBnrBox__item p {
  transition: all .3s;
}

.footerBnrBox__item__head {
  font-size: clamp(13px, 1.2vw, 18px);
}

.footerBnrBox__item__ttl {
  font-size: clamp(18px, 2vw, 32px);
  margin-bottom: 10px;
}

.footerBnrBox__item__txt {
  font-size: clamp(10px, 1.2vw, 18px);
  line-height: 1.8;
}

.footerBnrBox__item--signup a {
  background: url(../img/common/footerBnr_bg01.webp) no-repeat center / cover;
}

.footerBnrBox__item--catalog a {
  background: url(../img/common/footerBnr_bg02.webp) no-repeat center / cover;
}

.footerBnrBox__item--staff a {
  background: url(../img/common/footerBnr_bg03.webp) no-repeat center top / cover;
}

.footerBnrBox__item--designer a {
  background: url(../img/common/footerBnr_bg04.webp) no-repeat center top / cover;
}

/*フッター*/
.footer {
  background: var(--color-black);
  color: #fff;
}

.footerLogo {
  width: 300px;
  max-width: 80%;
}

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

/*フッターサイトマップ*/
.footerSitemap__inner {
  max-width: 450px;
  display: flex;
  justify-content: space-between;
}

.footerSitemap__item {
  font-size: 1.3rem;
  margin-bottom: 1em;
}

.footerSitemap__item--child {
  padding-left: 1em;
}

.footerSitemap__item a {
  text-decoration: none;
}

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

.footerSitemap__bnr {
  margin-top: 2rem;
}

/*企業情報*/
.footerCompany {
  padding-top: var(--gutter-supernarrow);
}

.footerCompanyTtl {
  font-size: 2rem;
  line-height: 2;
  margin-bottom: 1em;
}

.footerCompanyTel {
  font-size: 1.4rem;
}

.footerCompanyTel__num {
  font-size: 5.4rem;
  line-height: 1;
}

.footerCompanyOpen,
.footerCompanyAddress {
  font-size: 1.4rem;
  margin-top: 1rem;
}

/*SNS icon*/
.footerSocial {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

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

.footerSocial__item a {
  display: block;
}

.footerSocial__item img {
  width: 100%;
  height: auto;
}


/*外部リンク*/
.footerLink__item {
  margin: 3rem 0;
}

.footerLink__item--groupsite a {
  font-size: 1.5rem;
}

.footerLink__item--groupsite a img {
  margin-right: 2em;
}

.footerLink__item--groupsite a[target="_blank"]::after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  background: url(../img/common/icon_blank_wh.svg) no-repeat center / contain;
  margin-left: 1em;
}

/*サイトマップ（サブ）*/
.footerSubSitemap__itemList {
  display: flex;
  gap: 1em;
  font-size: 1.4rem;
}

/*コピーライト*/
.footerCopy {
  display: block;
  width: 100%;
  padding: 10px 0;
  font-style: normal;
  font-size: 14px;
  color: #FFFFFF;
  background: var(--color-black);
  text-align: center;
  position: relative;
}

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

/*==================================================
  MAIN
==================================================*/
/*************** メインタイトル ****************/
.ttlWrap {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  max-width: var(--width-wide);
  margin: 0 auto;
  min-height: 180px;
  padding: 2em 1em 1em;
}

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

#container {
  margin: 0 auto !important;
}

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

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

#bread a,
#bread>span>[property="name"] {
  display: inline-block;
}

#bread .separator {
  display: inline-block;
  vertical-align: middle;
  margin: 0 .75em;
}

#bread [property="name"] {
  display: inline-block;
  vertical-align: middle;
  max-width: 20em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#bread a [property="name"] {
  text-decoration: none;
}

#bread a[aria-current="page"] [property="name"] {
  text-decoration: none;
}

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

/*投稿box*/
#postbox {
  width: 100%;
  margin: 0 auto;
}


/*サブタイトル*/
#main .secTtl {
  font-size: clamp(1.8rem, 5.6vw, 3.6rem);
  text-align: center;
  margin-bottom: 1em;
}

#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;
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--color-gray);
}

.oc_bar01_open:after,
.srchbox01 .selectbox01 .selectbox_ttl_open:after {
  cursor: pointer;
  line-height: 100%;
  display: block;
  content: "＋";
  float: right;
  color: #fff;
  text-shadow: none !important;
  padding: 5px;
  border: 1px solid var(--color-main);
  background: var(--color-main);
  transition: all .5s;
}

.oc_bar01:after,
.srchbox01 .selectbox01 .selectbox_ttl:after {
  cursor: pointer;
  line-height: 100%;
  display: block;
  content: "－";
  float: right;
  color: var(--color-main);
  text-shadow: none !important;
  padding: 5px;
  border: 1px solid var(--color-main);
  background: #fff;
  transition: all .5s;
}

.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__ttl {
  text-align: center;
  margin: 0 auto 30px;
}

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

.shopInfoBox__inner {
  width: 100%;
  margin: 0 auto 30px;
  background: var(--color-verypalegray);
  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;
}


/*==================================================
　 回遊バナー  strollBnrBox
==================================================*/
.strollBnrBox__list {
  width: 96%;
  max-width: var(--width-content);
  margin: var(--gutter-wide) auto;
}

.strollBnrBox__item a {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: var(--gutter) 0;
}

.strollBnrBox__item__ttl,
.strollBnrBox__item__sub {
  color: #fff;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, .7))
}

.strollBnrBox__item__ttl {
  font-size: clamp(24px, 3.6vw, 36px);
}

.strollBnrBox__item__sub {
  font-size: 18px;
}

.strollBnrBox__item--bg01 a {
  background: url(../img/common/strollBnr_bg01.webp) no-repeat center / cover;
}

.strollBnrBox__item--bg02 a {
  background: url(../img/common/strollBnr_bg02.webp) no-repeat center / cover;
}

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

  body {
    min-width: 300px;
    padding-top: 90px;
  }

  body:has(.pcMemberNavi) {
    padding-top: 140px;
  }

  .header.min,
  .header.min .header__inner {
    height: 50px;
  }

  /*フッターバナー*/
  .footerBnrBox__list {
    max-width: 2000px;
    width: 100%;
    margin: auto;
    display: flex;
    justify-content: space-between;
  }

  .footerBnrBox__item {
    width: 50%;
  }

  .footerBnrBox:has(.footerBnrBox__item--signup) .footerBnrBox__item {
    width: calc(100% /3);
  }

  .footerBnrBox__item:not(:last-of-type) {
    border-right: 1px solid #fff;
  }

  /*フッター*/
  .footer__inner {
    max-width: var(--width-content);
    margin: 0 auto;
    padding: var(--gutter) 0;
    display: flex;
    flex-wrap: wrap;
  }

  .footer__inner__left {
    width: 55%;
  }

  .footer__inner__right {
    width: 45%;
  }

  .footerSubSitemap {
    width: 100%;
  }

  /*外部リンク*/
  .footerLink__item--groupsite a {
    display: flex;
    align-items: center;
    font-size: 1.4rem;
  }

  /*==================================================
  　 回遊バナー PC : strollBnrBox
  ==================================================*/

  .strollBnrBox__list {
    display: flex;
    flex-wrap: wrap;
    gap: 5%;
  }

  .strollBnrBox__item {
    width: 490px;
    max-width: calc(95% / 2);
  }

  .col3 .strollBnrBox__item {
    max-width: calc(90% / 3);
    line-height: 1.2;
  }

  .col3 .strollBnrBox__item a {
    padding: var(--gutter-supernarrow) 0;
  }

  .col3 .strollBnrBox__item__ttl {
    font-size: clamp(20px, 3vw, 28px);
  }

}

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

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

  .footer__inner {
    padding: var(--gutter) var(--gutter-supernarrow);
  }

  .footerSitemap__itemList {
    margin-right: 1em;
  }


  /*==================================================
    MAIN PC/TABLET
  ==================================================*/

  #bread {
    padding: clamp(5px, 0.8vw, 10px);
  }

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


}

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

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

  /*==================================================
    HEADER SP
  ==================================================*/
  .header {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 50px;
  }

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

  .header__logo {
    /*width: 100%;*/
    height: 100%;
    margin: 0;
    padding: 10px 0 0 5px;
  }

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

  .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 {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header__spNaviBtn__line,
  .header__spNaviBtn__line::before,
  .header__spNaviBtn__line::after {
    width: 32px;
    height: 2px;
    background-color: var(--color-main);
    display: block;
    position: absolute;
    top: 23px;
    left: 50%;
    transform: translateX(-50%);
    transition: all .3s;
  }

  .header__spNaviBtn__line::before {
    content: "";
    top: -8px;
  }

  .header__spNaviBtn__line::after {
    content: "";
    top: 8px;
  }

  /*メニューが開いている場合*/
  .header__spNaviBtn.active .header__spNaviBtn__line {
    background: transparent;
  }

  .header__spNaviBtn.active .header__spNaviBtn__line::before {
    transform: translateX(-50%) translateY(8px) rotate(-45deg);
  }

  .header__spNaviBtn.active .header__spNaviBtn__line::after {
    transform: translateX(-50%) translateY(-8px) rotate(45deg);
  }

  .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.spNavi-open {
    overflow: hidden;
  }

  .spNavi {
    display: none;
    padding: 10px;
    height: calc(100vh - 50px);
    overflow-y: scroll;
    background: #fff;
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    z-index: 10000;
  }

  .spNavi__estateBtn {
    width: 90%;
    margin: 2em auto;
    display: flex;
    justify-content: space-between;
  }

  .spNavi__estateBtn__item {
    width: 48%;
  }

  .spNavi__estateBtn__item a {
    display: block;
    text-align: center;
    padding: 16px 0 24px;
    border: 1px solid var(--color-main);
    background: #FFFFEF;
    position: relative;
  }

  .spNavi__estateBtn__item a::before {
    content: "";
    width: 58px;
    height: 32px;
    display: block;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
  }

  .spNavi__estateBtn__item a:after {
    position: absolute;
    content: '';
    width: 10px;
    height: 10px;
    border-top: 2px solid var(--color-main);
    border-right: 2px solid var(--color-main);
    transform: rotate(45deg) translateX(-50%);
    left: 50%;
    bottom: 0.5em;
  }

  .spNavi__estateBtn__item--house a::before {
    background: url(../img/common/spnavi_icon_house.svg) no-repeat center bottom / contain;
  }

  .spNavi__estateBtn__item--land a::before {
    background: url(../img/common/spnavi_icon_land.svg) no-repeat center bottom / contain;
  }

  .spNavi__list {
    width: 90%;
    margin: 0 auto;
  }

  .spNavi__item {
    border-top: 1px solid #D9D9D9;
  }

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

  .spNavi__item a,
  .spNavi__item__head {
    display: block;
    padding: 0.5em 1em;
    position: relative;
  }

  .spNavi__item--brandChild a {
    padding-left: 2em;
  }

  .spNavi__item a::before {
    position: absolute;
    content: '';
    width: 10px;
    height: 10px;
    border-top: 2px solid var(--color-main);
    border-right: 2px solid var(--color-main);
    transform: rotate(45deg) translateY(-50%);
    top: 50%;
    right: 1.5em;
  }

  .spNavi__item__head.open {
    border-bottom: 1px solid #D9D9D9;
  }

  .spNavi__item__head::before {
    content: "";
    display: block;
    width: 1em;
    height: 2px;
    background: var(--color-main);
    position: absolute;
    top: 50%;
    right: 1em;
  }

  .spNavi__item__head::after {
    content: "";
    display: block;
    width: 1em;
    height: 2px;
    background: var(--color-main);
    position: absolute;
    top: 50%;
    right: 1em;
  }

  .spNavi__item__head::after {
    transform: rotate(-90deg);
    transition: all 0.3s;
  }

  .spNavi__item__head.open::after {
    transform: rotate(0);
  }

  .spNavi__childList {
    display: none;
  }

  .spNavi__childItem a {
    margin-left: 1em;
  }

  .spNavi__btnList {
    width: 90%;
    max-width: 260px;
    margin: var(--gutter) auto;
  }

  .spNavi__btn {
    margin: 1em 0;
    font-size: 1.8rem;
    line-height: 1;
    position: relative;
  }

  .spNavi__btn__space {
    margin: 1em 0;
    height: 1px;
    background: var(--color-palegray);
  }

  .spNavi__btn__txt {
    margin-left: 2em;
  }

  .spNavi__btn__ico {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1.2em;
    height: 1.2em;
    position: absolute;
    top: 50%;
    left: 1em;
    transform: translateY(-50%);
  }

  .spNavi__btn__ico img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .spNavi__btn a {
    display: block;
    color: #fff;
    border: 1px solid var(--color-main);
    background: var(--color-main);
    padding: 1em;
  }

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

  .spNavi__btn--login a {
    background-color: #fff;
    color: var(--color-main);
  }

  .spNavi__btn--login a::before {
    border-color: var(--color-main);
  }

  .spNavi__btn--login .spNavi__btn__txt {
    margin-left: .5em;
  }

  .spNavi__social {
    display: flex;
    justify-content: center;
    gap: 1em;
    margin: var(--gutter) 0;
  }

  .spNavi__social__item {
    width: 50px;
    height: 50px;
  }

  .spNavi__subSitemap {
    display: flex;
    justify-content: center;
    gap: 1em;
    font-size: 1.3rem;
    padding-bottom: 50px;
  }

  /* 会員ログイン後　ボタンとモーダルの内部 */
  .header__spMemberBtn {
    width: 40px;
    border: 1px solid var(--color-red);
    font-size: 10px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
    color: var(--color-red);
    font-weight: bold;
    padding: 0 7px;
  }

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

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

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

  .memberModal__menuItem a {
    background: #fff;
    color: var(--color-main);
    border: 1px solid var(--color-main);
    display: block;
    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;
    padding: 15px 0;
  }

  .memberModal__closeWrap {
    padding-bottom: 20px;
  }

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

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

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

  .footFix .ancPagetop {
    bottom: 10px;
  }


  /*フッターバナー*/
  .footerBnrBox__item a {
    display: block;
    height: 100%;
    color: #fff;
    padding: clamp(20px, 8vw, 70px) 0;
    position: relative;
  }

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

  .footerBnrBox__item a>p {
    width: 80%;
    max-width: 480px;
    margin-right: auto;
    margin-left: auto;
  }

  .footerBnrBox__item__head {
    font-size: clamp(16px, 4.2vw, 20px);
  }

  .footerBnrBox__item__ttl {
    font-size: clamp(20px, 7.2vw, 40px);
    margin-bottom: 10px;
  }

  .footerBnrBox__item__txt {
    font-size: clamp(13px, 3.6vw, 18px);
    line-height: 1.8;
  }

  /*フッター*/
  .footer {
    padding-top: var(--gutter-wide);
  }

  .footerLogo {
    width: 60%;
    max-width: 320px;
    margin: 5% auto;
  }

  .footerSitemap__inner {
    margin: var(--gutter-wide) auto 0;
    justify-content: center;
    gap: 2em;
  }

  .footerSitemap__bnr {
    width: 80%;
    max-width: 480px;
    margin: 2rem auto;
  }

  /*企業情報*/
  .footerCompany {
    width: 90%;
    max-width: 600px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .footerCompanyTtl {
    text-align: center;
  }

  .footerCompanyTel {
    display: inline-block;
    text-align: left;
  }

  /*SNS icon*/
  .footerSocial {
    justify-content: center;
  }

  /*外部リンク*/
  .footerLink__item {
    text-align: center;
  }

  .footerLink__item--groupsite a img {
    margin: 2em;
  }

  /*サイトマップ（サブ）*/
  .footerSubSitemap__itemList {
    margin: var(--gutter) 0;
    justify-content: center;
  }

  /*コピーライト*/
  .footerCopy {
    font-size: 12px;
  }

  /*SP固定メニュー*/
  .footerMenu {
    width: 100%;
    height: 50px;
    padding: 0;
    position: fixed;
    bottom: 0px;
    z-index: 999;
    clear: both;
    background: var(--color-darkwarmgray);
    border-top: 1px solid #fff;
  }

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

  .footerMenu__item {
    width: calc(100% /3);
    height: 50px;
    line-height: 1.2;
    text-align: center;
    vertical-align: middle;
    border: 1px solid #E6E6E6;
  }

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

  .footerMenu__item img {
    width: 1.2em;
    height: 1.2em;
    margin-right: 5px;
  }

  .footerActions__btnWire form {
    width: 220px;
  }

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

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

  /*--BREAD--*/
  #bread {
    padding: clamp(5px, 0.8vw, 10px);
    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__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%;
  }


  /*==================================================
  　 回遊バナー SP : strollBnrBox
  ==================================================*/

  .strollBnrBox__item {
    width: 90%;
    max-width: 480px;
    margin: 2em auto;
  }

  .strollBnrBox__item__ttl {
    font-size: clamp(16px, 6.4vw, 36px);
  }

  .strollBnrBox__item__sub {
    font-size: clamp(14px, 4.8vw, 16px);
  }
}