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

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

  --font-en: "Barlow Semi Condensed", sans-serif;

  --weight-button: 700;

  --color-main: #0C3388;
  --color-red: #FC5000;
  --color-orange: #FC5000;
  --color-winered: #870C42;
  --color-magenta: #C3125E;
  --color-yellow: #F8C600;
  --color-gold: #DCB65D;
  --color-ygreen: #8ECC11;
  --color-green: #8ECC11;
  --color-blue: #0C3388;
  --color-skyblue: #187FC4;
  --color-lightblue: #00ADA9;
  --color-waterblue: #E9F6FC;
  --color-navy: #153BB8;
  --color-purple: #662D90;
  --color-pink: #f72b80;
  --color-salmon: #ff9898;
  --color-black: #000;
  --color-black222: #222;
  --color-darkgray: #666;
  --color-gray: #999;
  --color-lightgray: #ccc;
  --color-palegray: #F5F5F5;
  --color-palegreen: #F1F9EF;
  --color-paleorange: #ffefee;

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

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


/*h1*/
.header__txt {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 11px;
  line-height: 1;
  padding: 0.5em 0;
}

/*ボタン*/
.header__pcBtnWrap {
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  gap: 25px;
  margin: var(--gutter-supernarrow) auto 15px;
}

.header__pcBtn a {
  display: block;
  text-align: center;
  text-decoration: none;
  line-height: 1;
  font-size: clamp(1.7rem, 2vw, 2.2rem);
  font-weight: 500;
  position: relative;
}

.header__pcBtn--signup a {
  color: var(--color-blue);
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--gutter-supernarrow);
}

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

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

/*電話番号・営業時間*/
.header__telBox {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  justify-content: center;
  flex-wrap: nowrap;
}

.header__telNum {
  font-family: var(--font-en);
  font-weight: bold;
  font-size: clamp(3rem, 5vw, 4.8rem);
  line-height: 1.2;
}

.header__telNum--label {
  font-size: 0.55em;
}

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

/*
  ===== globalnavigation ==========================================
  */
.pcNavi {
  background: var(--color-blue);
  width: 100%;
}

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

.pcNavi__item {
  width: calc(100% / 5);
  height: 60px;
  color: #fff;
  display: flex;
  align-items: stretch;
  position: relative;
}

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

.pcNavi__item>a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0;
  text-align: center;
  font-weight: bold;
  font-size: clamp(1.8rem, 2vw, 2.2rem);
  text-decoration: none;
  white-space: nowrap;
}

.pcNavi__item--home>a {
  font-family: var(--font-en);
  font-size: clamp(2rem, 2.9vw, 2.8rem);
}

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

/*Gナビに子アイテムなし*/
/*
.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 ==========================================
*/

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

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

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

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

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

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

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

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

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

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

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

/*
===== pcFix ==========================================
*/


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

}

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

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

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

#pcFix.fixed .pcNavi__item a {
  font-size: clamp(1.2rem, 1.6vw, 1.4rem);
}

#pcFix.fixed .pcNavi__item--home a {
  font-size: clamp(1.5rem, 1.7vw, 1.8rem);
}


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

.footFix .ancPagetop a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  padding-top: 15px;
  color: #fff;
  background: var(--color-black);
  position: relative;
  font-family: var(--font-en);
  font-size: 22px;
  font-weight: bold;
}

.footFix .ancPagetop a::before {
  content: "";
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-68%);
  width: 16px;
  height: 13px;
  color: #fff;
  font-size: 20px;
  line-height: 1;
  text-align: center;
  font-family: monospace;
  content: "↑";
}

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

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


/*フッター*/
.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: var(--gutter) 0;
}

/*店舗情報*/
.footer__shopInfoBox {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 50px;
}

.footer__logo {
  width: 523px;
}

.footer__shopName {
  font-size: clamp(1.8rem, 2vw, 2.4rem);
  font-weight: bold;
  line-height: 1.5;
}

.footer__telNum {
  font-family: var(--font-en);
  font-size: clamp(3.3rem, 4vw, 4.8rem);
  font-weight: bold;
  line-height: 1.2;
}

.footer__telNum--label {
  font-size: 0.55em;
}

.footer__shopName,
.footer__shopTelBox {
  margin-bottom: 15px;
}

/*.footer__shopAddress,
.footer__shopTime {

}/

/*フッターリンク*/
.footer__linkBox {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 90px;
}

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

.footer__btn {
  width: 260px;
}

.footer__btn a {
  display: block;
  text-align: center;
  padding: 20px 0;
  font-size: 1.8rem;
  font-weight: var(--weight-button);
  line-height: 1.4;
  position: relative;
}

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

.footer__btn--contact a {
  background: var(--color-gold);
}

.footer__btn a::after {
  position: absolute;
  content: "";
  display: inline-block;
  top: 50%;
  right: 21px;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background-color: #fff;
  clip-path: polygon(3px 0px,
      /* 上頂点 */
      12px 6px,
      /* 右頂点 */
      3px 12px
      /* 下頂点 */
    );
}

.footer__btn--contact a::after {
  background: var(--color-black);
}

/*ログアウトボタン*/
input[type="submit"].footer__logout {
  width: 100%;
  padding: 20px 0;
  border-radius: 0;
  font-size: 1.8rem;
  font-weight: var(--weight-button);
  line-height: 1.4;
}

.footer__sitemap {
  width: 90%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

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

.footer__sitemapItem {
  font-size: 1.6rem;
  font-weight: 500;
}

/*SNS icon*/
.footer__snsBox {
  margin-top: 10px;
}

.snsBox {
  display: flex;
  gap: 10px;
}

.snsBox__item {
  width: 30px;
}

/*フッターバナー*/
.footer__bnrBox a {
  display: block;
  width: min(70%, 300px);
  margin: 0 auto var(--gutter);
}

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

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

/*sideFix*/
.sideFix {
  z-index: 10000;
  position: fixed;
  bottom: 90px;
  right: 0;
  width: 50px;
}

.sideFix__list {
  width: 50px;
}

.sideFix__item {
  margin-bottom: 10px;
}

.sideFix__link {
  display: flex;
  border-radius: var(--rad-button) 0 0 var(--rad-button);
  transform: scale(1);
  height: 180px;
  width: 50px;
  position: relative;
  font-weight: var(--weight-button);
  line-height: 1.4;
  font-size: 1.8rem;
  letter-spacing: 0.25em;
  writing-mode: vertical-rl;
  text-orientation: upright;
  text-align: center;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: transform 0.2s ease-in-out;
}

.sideFix__item--signup .sideFix__link {
  background-color: var(--color-blue);
  color: #fff;
}

.sideFix__item--contact .sideFix__link {
  background-color: var(--color-gold);
}

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

/*==================================================
  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;
  opacity: 1 !important;
  border: 1px solid #fff;
  pointer-events: auto;
}

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

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

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

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

.slick-prev::before {
  background: url(../img/common/arrow_left.svg) !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;
}


/*==================================================
  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
  ==================================================*/

  .footer__inner {
    justify-content: center;
    gap: 30px;
  }

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

  .footer__shopList {
    text-align: center;
  }

  .footer__shopName,
  .footer__shopTelBox {
    margin-bottom: 10px;
  }

  .footer__snsBox {
    justify-content: center;
  }

  .footer__linkBox {
    justify-content: center;
    gap: 30px;
  }

  .footer__sitemap {
    width: 100%;
  }


}

/*==================================================
  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
  ==================================================*/

  /*ヘッダー固定*/
  #spFix {
    width: 100vw;
    background: rgb(255 255 255 / 0.95);
    backdrop-filter: blur(3px);
    z-index: 373;
    height: 72px;
    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: 43%;
  }

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

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

  .header__spBtn--signup a {
    display: block;
    border: 1px solid var(--color-black);
    color: #fff;
    background: var(--color-blue);
    width: 45px;
    height: 45px;
    text-align: center;
    white-space: nowrap;
    padding: 5px 0;
    line-height: 1.2;
  }

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

  .header__spBtn--memberMenu a {
    display: block;
    color: #fff;
    background: var(--color-blue);
    /*width: 45px;
    height: 43px;*/
    width: 65px;
    height: 31px;
    font-size: 12px;
    text-align: center;
    white-space: nowrap;
    padding: 7px 0;
    line-height: 1.3;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .spNavi {
    display: none;
    /*position: fixed;
    z-index: 1000;*/
    /*padding: var(--gutter-supernarrow);*/
    overflow-y: scroll;
    background: rgb(255 255 255 / 0.95);
    height: calc(100dvh - 56px);
  }

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

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

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

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

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

  .spNavi__btn--contact a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    padding: 10px;
    background: var(--color-gold);
    position: relative;
  }

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

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

  .spNavi__btn--estates a {
    background: var(--color-blue);
    color: #fff;
    border: none;
  }

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

  .spNavi__btn--estates .spNavi__mainLink img {
    filter: invert(100%) brightness(200%);
  }

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

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

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

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

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

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

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

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

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

  .spNavi__subMenuBtn {
    margin: 0.5em 0;
  }

  .spNavi__subMenuBtn a {
    background: #fff;
    color: var(--color-black);
    border: solid 1px var(--color-black);
  }

  /*その他リスト*/
  .spNavi__list {
    display: flex;
    flex-wrap: wrap;
    /*border: 2px solid #ccc;*/
  }

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

  /*.spNavi__item:nth-last-child(2),*/
  /*.spNavi__item:last-child {
    border-bottom: none;
  }*/

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

  /*アイテム数が奇数になるためそれにかかる対応*/
  /*.spNavi__item:nth-last-child(2) {
    border-bottom: 1px solid #E0E0E0;
  }

  .spNavi__item--sitemap {
    width: 100%;
  }*/

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

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

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


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

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

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

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

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

  .memberModal__body {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    max-width: 290px;
    width: 98%;
    background: #F6F5EF;
  }

  /*==================================================
    FOOTER SP
  ==================================================*/
  /*footFix*/
  .footFix {
    bottom: 10%;
  }

  .footFix .ancPagetop {
    bottom: 10px;
  }

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

  .footer__logo {
    width: min(90%, 370px);
  }

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

  .footer__shopList {
    text-align: center;
  }

  .footer__shopName,
  .footer__shopTelBox {
    margin-bottom: 10px;
  }

  .footer__btnWrap {
    flex-direction: column;
  }

  .footer__snsBox {
    justify-content: center;
  }

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

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

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

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

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

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

  .footerFixMenu__item--estate a::before {
    background: url(../img/common/icon_search.svg) no-repeat center / contain;
    aspect-ratio: 53 / 53;
    filter: invert(100%) brightness(200%);
  }

  .footerFixMenu__item--favorite a::before {
    background: url(../img/common/icon_heart_line_white.svg) no-repeat center / contain;
    filter: brightness(0);
    aspect-ratio: 136 / 113;
  }

  .footerFixMenu__item--contact a::before {
    background: url(../img/common/icon_contact.svg) no-repeat center / contain;
    aspect-ratio: 57 / 57;
  }

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

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

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

  /*slick arrow*/
  .slick-arrow.slick-prev,
  .slick-arrow.slick-prev::before {
    left: 10px !important;
  }

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

}