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

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

  --font-en: "Roboto", sans-serif;
  --font-ja: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", YuGothic, "Yu Gothic medium", Meiryo, "sans-serif";

  --color-main: #111;
  --color-red: #E30C41;
  --color-orange: #F5AB00;
  --color-yellow: #F5AA00;
  --color-ygreen: #8FC31E;
  --color-green: #159744;
  --color-blue: #006EBA;
  --color-lightblue: #26A7E2;
  --color-navy: #153BB8;
  --color-purple: #A40282;
  --color-pink: #f72b80;
  --color-salmon: #ff9898;
  --color-black: #111;
  --color-darkgray: #999;
  --color-gray: #E9E9E9;
  --color-lightgray: #ccc;
  --color-palegray: #F5F5F5;
  --color-palegreen: #F1F9EF;
  --color-paleorange: #ffefee;
  --color-beige: #E3E2D9;
  --color-white: #fff;

  --gutter-supernarrow: 20px;
  --gutter-narrow: 40px;
  --gutter: 70px;
  --gutter-wide: 100px;
  --gutter-superwide: 120px;

  --rad-common: 0;

  --font-60: clamp(3rem, 6vw, 6rem);
  --font-40: clamp(2.8rem, 4vw, 4rem);
  --font-24: clamp(2.2rem, 2.5vw, 2.4rem);
  --font-22: clamp(2rem, 2vw, 2.2rem);
  --font-20: clamp(1.8rem, 2vw, 2rem);
  --font-18: clamp(1.6rem, 2vw, 1.8rem);
  --font-16: clamp(1.5rem, 2vw, 1.6rem);
  --font-14: clamp(1.4rem, 2vw, 1.4rem);
  --font-12: clamp(1.2rem, 1.5vw, 1.2rem);
}

@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: var(--font-ja);
  font-size: 10px;
  font-weight: 500;
  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;
  }
}

.scroll-fade-up {
  opacity: 0;
  transform: translateY(100px);
  transition: none; /* 初期は transition 無効 */
}
.scroll-fade-up.animate {
  transition: opacity 700ms, transform 700ms;
}

/*==================================================
  共通パーツ
==================================================*/
/*
===== バナー ==========================================
*/
/* 1カラムバナー */
.bnrBox {
  margin: clamp(30px, 5vw, 60px) auto;
  text-align: center;
  max-width: 90%;
}

/* 会員登録バナー */
.bnrBox-signup {
  position: relative;
}

.bnrBox-signup__count {
  position: absolute;
  font-family: var(--font-en);
  color: var(--color-red);
  font-size: clamp(3rem, 6.8vw, 8rem);
  bottom: 12%;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 900;
  line-height: 1;
}

/*==================================================
  HEADER
==================================================*/
.header__inner {
  max-width: var(--width-content);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/*ロゴ・件数*/
.header__logoWrap {
  display: flex;
}

.header__logo {
  width: 280px;
  aspect-ratio: 500 / 84;
  flex-shrink: 0;
}

.header__logo a {
  display: block;
  width: 100%;
  height: 100%;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background: url(../img/common/logo_site.webp) no-repeat left center / contain;
}

/* counter */
.header__counter {
  width: 40%;
  padding: .8em 1em;
  vertical-align: middle;
  margin: 0 0 0 3em;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  position: relative;
  font-weight: 800;
}

.header__counter::before {
  content: "";
  display: block;
  width: 1.8rem;
  height: 1.7rem;
  background: url(../img/common/header__counter__deco.svg) no-repeat left center / contain;
  position: absolute;
  top: -5px;
  left: -1em;
}

.header__counter::after {
  content: "";
  display: block;
  width: 1.8rem;
  height: 1.7rem;
  background: url(../img/common/header__counter__deco.svg) no-repeat left center / contain;
  position: absolute;
  bottom: -5px;
  left: -1em;
  transform: scale(1, -1);
}

.header__counter__num {
  font-weight: 900;
  font-size: clamp(2.2rem, 2.2vw, 2.6rem);
  line-height: 1;
  font-family: var(--font-en);
  vertical-align: text-bottom;
  margin-right: 2px;
}

.header__pcBtnWrap {
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  margin-top: 14px;
}

.header__pcBtn:not(:first-of-type) {
  margin-left: 5px;
}

.header__pcBtn a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  text-decoration: none;
  line-height: 1;
  padding: 5px;
  font-weight: bold;
  white-space: nowrap;
}

.header__pcBtn--signup a,
.header__pcBtn--login a,
.header__pcBtn--member a {
  background: var(--color-red);
  color: var(--color-white);
}

@media (any-hover:hover) {
  .header__pcBtn--signup a:hover,
  .header__pcBtn--login a:hover,
  .header__pcBtn--member a:hover {
    opacity: 1;
    background: none;
    color: var(--color-red);
  }
}

form.header__pcLogoutBtnWrap {
  height: 100%;
}

input[type="submit"].header__pcLogoutBtn {
  background: var(--color-black);
  width: 100%;
  height: 100%;
  line-height: 1;
  color: #fff;
  font-weight: bold;
  padding: 0 1rem;
}

.header__telBox {
  margin: 10px 0 18px;
  text-align: right;
}

.header__telNum {
  font-family: var(--font-en);
  font-size: clamp(3rem, 3vw, 3.8rem);
  font-weight: bold;
  line-height: 1;
  position: relative;
}

.header__telNum__tit {
  font-size: clamp(2rem, 3vw, 2.2rem);
}

.header__telTime {
  line-height: 1.2;
  font-weight: 500;
  margin-top: 5px;
}

.header__telTime .time {
  margin-right: 10px;
}

/*
  ===== globalnavigation ==========================================
  */
.pcNavi {
  border-top: solid 1px var(--color-main);
  border-bottom: solid 1px var(--color-main);
}

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

.pcNavi__item {
  width: 20%;
  border-right: 1px solid var(--color-main);
}

.pcNavi__item:first-of-type {
  border-left: 1px solid var(--color-main);
}

.pcNavi__item>a {
  display: block;
  width: 100%;
  padding: 12px 0;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  font-size: var(--font-12);
  font-weight: 500;
}

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

.hnavi__item__en {
  display: block;
  font-family: var(--font-en);
  font-size: var(--font-18);
  font-weight: 900;
  letter-spacing: .1em;
  line-height: 1;
}

.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: var(--color-black);
    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;
  }
}

/*ヘッダー固定*/
#pcNavi.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: #fff;
  animation: header-slidein 0.5s;
  filter: drop-shadow(0 0 3px rgba(0, 0, 0, 0.4));
}

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

  100% {
    transform: translateY(0);

  }
}

/*
  ===== loginfixbox ==========================================
  */
.pcMemberNavi.fixed {
  position: fixed;
  top: 0;
  z-index: 10000;
  width: 100%;
}

.pcMemberNavi {
  margin: 0 auto;
  padding: 10px;
  background: rgba(204, 204, 204, 0.9);
  text-align: center;
}

.pcMemberNavi__box {
  margin: 0 auto;
}

.pcMemberNavi__ttl {
  width: 160px;
  text-align: center;
  vertical-align: middle;
  font-weight: bold;
  border-right: dotted 1px var(--color-black);
}

.pcMemberNavi__itemBox {
  vertical-align: middle;
  padding: 2px 20px;
  text-align: center;
}

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

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

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

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

/*==================================================
  TITLE COMMON
==================================================*/
.index__ttl {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--gutter-narrow);
  font-size: var(--font-18);
  font-weight: bold;
}

.index__ttlEn {
  font-family: var(--font-en);
  font-size: var(--font-60);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.15em;
  margin-bottom: 3px;
}

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

.footFix .ancPagetop a {
  width: 29px;
  height: 40px;
  position: absolute;
  right: 20px;
  bottom: 50px;
  font-family: var(--font-en);
  font-weight: bold;
  letter-spacing: .05em;
  padding-top:25px;
  transition: .3s;
}

.ancPagetop a::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 5px;
  transform: translateX(-50%) rotate(-90deg);
  background: url(../img/common/icon_arrow.svg) no-repeat center / contain;
  width: 22px;
  height: auto;
  aspect-ratio: 22 / 22;
  pointer-events: none;
  filter: brightness(0);
}

@media (any-hover:hover) {
  .footFix .ancPagetop a:hover {
    opacity: 1;
    transform: translateY(-8px);
  }
}

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

.sideFixBtn__item {
  margin-bottom: 10px;
  background-color: var(--color-main);
}

.sideFixBtn__item.sideFixBtn__item--signup,
.sideFixBtn__item.sideFixBtn__item--member {
  background-color: var(--color-red);
}

.sideFixBtn__link {
  width: 150px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background-color: var(--color-main);
  color: var(--color-white);
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: .05em;
  position: relative;
  transition: .3s;
}

.sideFixBtn__item--member .sideFixBtn__link {
  font-size: var(--font-18);
}

@media (any-hover:hover) {
  .sideFixBtn__link:hover {
    opacity: 1;
    transform: translateX(-10px);
  }
}

.sideFixMenu__subtxtWrap {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.sideFixMenu__subtxt {
  background-color: var(--color-yellow);
  color: var(--color-main);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.01em;
  width: 86px;
  height: 16px;
  animation: dokidoki 1.5s infinite;
}

@keyframes dokidoki {
    0% {
        transform: scale(1.05)
    }
    5% {
        transform: scale(1)
    }
    95% {
        transform: scale(1)
    }
    100% {
        -webkit-transform: scale(1.05)
    }
}

.sideFixMenu__subtxt::before {
  content: "";
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid var(--color-yellow);
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
}

.sideFixBtn__item--signup .sideFixBtn__link,
.sideFixBtn__item--member .sideFixBtn__link {
  background: var(--color-red);
}

.footerSitemap {
  width: 100%;
  margin: 0 auto var(--gutter);
  border-top: 5px solid var(--color-black);
  padding: var(--gutter) 0;
  background: url(../img/index/bg_search.webp);
}

.footerSitemap_inner {
  display: flex;
  justify-content: space-between;
  width: var(--width-content);
  margin: auto;
}

.footerSitemap__item {
  line-height: 1;
  margin-bottom: 15px;
  background-size: 5px;
  padding-left: 10px;
  position: relative;
}

.footerSitemap__item::before {
  position: absolute;
  font-family: 'Font Awesome 5 Free';
  color: var(--color-black);
  font-weight: 900;
  content: '\f054';
  font-size: 8px;
  left: 0;
  top: 30%;
  width: auto;
  height: auto;
  background: none;
  transform: none;
}

.footerSitemap__item a {
  text-decoration: none;
}

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

.footerSiteInfo__inner {
  display: flex;
  justify-content: space-between;
  max-width: var(--width-content);
  margin: 0 auto var(--gutter-narrow); 
}

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

.footer__logo {
  margin-bottom: 50px;
  width: 417px;
  aspect-ratio: 417 / 70;
}

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

.footer__btnList .btn_archive {
  width: 250px;
}

.footer__btnList .btn_archive a {
  width: 100%;
  font-size: var(--font-18);
}

.footer__shopBox {
  max-width: 50%;
}

.footer__shopItem {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--gutter-narrow);
}

.footer__shopItem:not(:last-child) {
  margin-bottom: var(--gutter);
}

.footer__shopImgBox {
  width: 150px;
  height: 90px;
  aspect-ratio: 150 / 90;
  margin-right: clamp(10px, 2.3vw, 16px);
  flex-shrink: 0;
}

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

.footer__shopTelBox {
  margin-bottom: 1rem;
}

.footer__telNum {
  font-weight: bold;
  font-size: clamp(2rem, 9vw, 2.2rem);
  font-family: var(--font-en);
  line-height: 1.1!important;
}

.footer__telNum span {
  font-size: clamp(3rem, 9vw, 3.8rem);
}

.footer__shopName {
  font-size: clamp(2rem, 9vw, 2.4rem);
  font-weight: bold;
  display: inline-block;
  margin-bottom: 1rem;
}

.footer__shopTel {
  font-size: 2.5rem;
  font-weight: bold;
}

.footer__shopAddress,
.footer__shopTime {
  margin-bottom: 4px;
  font-feature-settings: "palt";
  letter-spacing: 0.01em;
}

.footer__shopSnsList {
  display: flex;
  gap: clamp(10px, 1.2vw, 15px);
  margin-top: 10px;
}

.footer__shopSnsList li {
  width: 35px;
}


/*SNS icon*/
.footerSocial{
  display:flex;
  gap: 10px;
}

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

.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 {
  background: url('../img/common/page_title01_bg.webp') center;
  background-size: cover;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: 50px 10px;
}

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

#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: 5px 0;
  font-size: clamp(1.2rem, 1.5vw, 1.3rem);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

#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(2rem, 2vw, 2.2rem);
  font-weight: bold;
  line-height: 1.3;
  margin: var(--gutter-narrow) 0 var(--gutter-supernarrow);
}

#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: 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: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  transform: translate(-50%,-50%);
}

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

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

.slick-next,
.slick-prev {
  z-index: 99 !important;
  width: 45px !important;
  height: 45px !important;
  background: var(--color-black)!important;
}

.slick-next::before {
  background: url(../img/common/icon_arrow.svg) no-repeat !important;
}

.slick-prev::before {
  background: url(../img/common/icon_arrow.svg) no-repeat !important;
  transform: translate(-50%, -50%) scale(-1, 1);
}

/*dots*/
.slick-dots li {
  margin: 0 5px !important;
}

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

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

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

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

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

.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;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.shopInfoBox__imgBox {
  width: 46%;
  max-width: 550px;
}

.shopInfoBox__imgList {
  position: relative;
}

.shopInfoBox__img {
  text-align: center;
}

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

.shopInfoBox__dataBox {
  width: 50%;
  max-width: 600px;
}

.shopInfoBox__dataWrap {
  margin-bottom: 1rem;
}

.shopInfoBox__data,
.shopInfoBox__shopCommentTtl {
  display: flex;
  align-items: center;
  flex-grow: 1;
}

.shopInfoBox__data.shopname {
  font-size: var(--font-20);
  margin-bottom: clamp(1.4rem, 2vw, 2rem);
  font-weight: bold;
}

.shopInfoBox__dataIcon {
  margin-right: 1rem;
}

.shopInfoBox__shopCommentBox {
  background: var(--color-beige);
  padding: 15px;
  margin-bottom: 2.5rem;
}

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

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

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

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

}

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

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

  .footerSitemap_inner {
    width: 100%;
    gap: 10px;
  }

  .footerSitemap_inner ul {
    width: calc((100% / 5) - 10px);
  }

  .footerSiteInfo {
    padding: 30px 10px;
  }

  .footerActions {
    padding: 0 10px;
  }

  .footerActions__btnWrap {
    flex-direction: column;
  }

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

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

  .footerActions_logoutBtn {
    max-width: unset;
  }

  .footerSitemap {
    padding: var(--gutter) 10px;
    overflow: hidden;
  }

  .footerSiteInfo__inner {
    flex-direction: column;
    align-items: center;
    gap: 60px;
  }

  .footer__shopBox {
    max-width: 100%;
  }

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

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

    /*
  ===== バナー ==========================================
  */
  /* 会員登録バナー */
  .bnrBox-signup__count {
    bottom: 10%;
    transform: translateX(calc(-50% - 1.5em));
  }

  /*==================================================
    HEADER SP
  ==================================================*/
  header {
    display: flex;
    justify-content: space-between;
  }

  #spFix {
    width: 100%;
    height: 54px;
    display: flex;
    flex-wrap: wrap;
  }

  #spFix.fixed {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 9999;
    background: var(--color-white);
    transform: translateY(0);
    opacity: 1;
    animation: header-slidein 0.3s forwards;
    filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.3));
  }

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

  /*ロゴ・件数*/
  .header__logoWrap {
    width: 100%;
  }

  .header__logo {
    width: 100%;
    max-width: 160px;
    max-height: 42px;
  }

  .header__logo a {
    height: 100%;
    max-height: 42px;
  }

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

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

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

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

  .header__spNaviBtn span {
    width: 70%;
    height: 2px;
    background-color: var(--color-black);
    display: block;
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    transition: all .5s;
  }

  .header__spNaviBtn span:first-of-type {
    top: calc(37% - 7px);
  }

  .header__spNaviBtn span:nth-of-type(2) {
    top: 37%;
  }

  .header__spNaviBtn span:nth-of-type(3) {
    top: calc(37% + 7px);
  }

  /*ハンバーガーメニューが開いている場合*/
  .header__spNaviBtn.active span:first-of-type {
    transform: translateX(-50%) translateY(calc(-50% + 7px)) rotate(-45deg);
  }

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

  .header__spNaviBtn.active span:nth-of-type(3) {
    transform: translateX(-50%) translateY(calc(-50% - 7px)) rotate(45deg);
  }

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

  .header__spBtn--emember a::before {
    content: "";
    display: inline-block;
    width: 1em;
    height: 1em;
    background: url(../img/common/icon_member.svg) no-repeat center / contain;
  }

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

  .header__spBtn--login a::before {
    content: "";
    display: inline-block;
    width: 1em;
    height: 1em;
    background: url(../img/common/icon_login.svg) no-repeat center / contain;
  }

  /*ドロップダウンメニュー*/
  body.menu-open {
    overflow: hidden;
  }
  
  .spNaviWrap {
    width: 100%;
    z-index: 9999;
  }

  .spNavi {
    display: none;
    height: calc(100vh - 54px);
    overflow-y: scroll;
    background: rgba(255, 255, 255, .96);
    width: 100%;
  }

  .spNavi__btnList {
    display: flex;
    justify-content: space-between;
    padding: 10px;
  }

  .spNavi__btn {
    width: 49%;
  }

  .spNavi__btn a {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-decoration: none;
    line-height: 1;
    padding: 1em .5em;
    border: 1px solid var(--color-black);
    font-size: clamp(14px, 2vw, 16px);
    font-weight: bold;
    box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.80);
  }

  .spNavi__list {
    display: flex;
    flex-wrap: wrap;
    border-top: 1px solid var(--color-black);
  }

  .spNavi__item {
    width: 50%;
  }

  .spNavi__item a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 15px 15px 15px 30px;
    border-bottom: 1px solid var(--color-black);
    height: 100%;
    font-size: 14px;
    position: relative;
  }

  .spNavi__item:nth-child(odd) a {
    border-right: 1px solid var(--color-black);
  }

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

  /* 会員ログイン後　ボタンとモーダルの内部 */
  .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;
    font-weight: bold;
    color: #fff;
    background-color: var(--color-red);
  }

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

  .memberModal__menuItem a {
    font-weight: bold;
    background: #fff;
    background-size: auto 10px;
    border: 1px solid var(--color-black);
    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 var(--color-black);
    border-right: 1px solid var(--color-black);
    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;
    padding: 15px 0;
  }

  .memberModal__closeWrap {
    padding-bottom: 20px;
  }

  .memberModal__closeBtn {
    background: var(--color-black);
    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: 100vh;
    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: var(--color-white);
  }
  
  /*==================================================
    FOOTER SP
  ==================================================*/
  /*footFix*/
  .footFix {
    bottom: 10%;
  }

  .footFix .ancPagetop a {
    bottom: 40px;
  }

  .footerSiteInfo {
    border-top: 5px solid var(--color-black);
    padding-top: 3rem;
  }

  .footerSiteInfo__inner {
    flex-direction: column;
  }

  .footer__logo {
    margin: 0 auto var(--gutter);
    width: 80%;
  }

  .footer__logo a {
    text-align: center;
  }

  .footer__btnList {
    display: block;
    margin: 0 auto var(--gutter);
  }

  .footer__btnList .btn_archive {
    margin-bottom: var(--gutter-narrow);
  }

  .footer__shopBox {
    max-width: 95%;
    margin: auto;
  }

  .footer__shopItem {
    display: block;
  }

  .footer__shopImgBox {
    margin: 0 auto var(--gutter-supernarrow);
    width: 60%;
    height: auto;
  }

  .footer__shopItem__infoBox {
    text-align: center;
  }

  .footerSiteInfo__btn {
    margin: 0 auto;
  }

  .footerMenu {
    width: 100%;
    height: 60px;
    padding: 0;
    position: fixed;
    bottom: 0px;
    z-index: 999;
    clear: both;
  }

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

  .footerMenu__item {
    width: 25%;
    height: 60px;
    line-height: 1.2;
    text-align: center;
    vertical-align: middle;
    border: 1px solid var(--color-white);
    background: var(--color-black);
  }

  .footerMenu__item a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    line-height: 1.4;
    font-size: 13px;
    color: var(--color-white);
  }

  .footerMenu__item img {
    width: 20px;
    max-height: 45%;
    margin-bottom: 5px;
  }

  .footerActions__btnWire form {
    width: 220px;
  }

  /*==================================================
    MAIN SP
  ==================================================*/
  .ttlWrap {
    padding: 40px 5px 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: 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:  0 10px;
    width: 96%;
  }
  
  .shopInfoBox__ttl {
    width: 50%;
  }

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

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