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

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

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

  --color-main: #003880;
  --color-red: #FF5E00;
  --color-orange: #FF5E00;
  --color-yellow: #F8C600;
  --color-ygreen: #5cb516;
  --color-green: #8ECC11;
  --color-blue: #003880;
  --color-lightblue: #028AD3;
  --color-navy: #153BB8;
  --color-purple: #662D90;
  --color-pink: #f72b80;
  --color-salmon: #ff9898;
  --color-black: #111;
  --color-darkgray: #666;
  --color-gray: #999;
  --color-lightgray: #ccc;
  --color-palegray: #F5F5F5;
  --color-paleblue: #9DB8DB;
  --color-thinblue: #F0FAFF;
  --color-palegreen: #F1F9EF;
  --color-paleorange: #ffefee;
  --color-white: #fff;

  --gutter-supernarrow: clamp(1rem, 6vw, 2rem);
  --gutter-narrow: clamp(2rem, 6vw, 4rem);
  --gutter: clamp(2.7rem, 6vw, 5rem);
  --gutter-wide: clamp(5rem, 6vw, 7rem);
  --gutter-superwide: clamp(6rem, 6vw, 12rem);

  --rad-common: 5px;

  --font-60: clamp(3.2rem, 6vw, 6rem);
  --font-40: clamp(3rem, 4vw, 4rem);
  --font-36: clamp(2.8rem, 4vw, 3.6rem);
  --font-32: clamp(2.6rem, 2.5vw, 3.2rem);
  --font-30: clamp(2.5rem, 2.5vw, 3rem);
  --font-26: clamp(2.3rem, 2.5vw, 2.6rem);
  --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 (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;
  line-height: 1.6;
  background: #fff;
  color: var(--color-black);
}

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

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

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

a {
  text-decoration: none;
}

@media (any-hover:hover) {

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

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

/*==================================================
  HEADER
==================================================*/
.header {
  padding: 15px 0;
}

/* h1 */
.header__h1Box_txt {
  width: min(96%, var(--width-content));
  margin: 0 auto;
  font-size: 1.1rem;
  font-weight: bold;
  line-height: 1;
  white-space: nowrap;
  padding-bottom:  5px;
  text-overflow: ellipsis;
  overflow: hidden;
}

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

/*ロゴ・件数*/
.headerLogo__inner {
  display: flex;
  align-items: center;
  gap: 15px;
}

.header__logo {
  width: 387px;
  aspect-ratio: 387 / 60;
  flex-shrink: 0;
}

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

/* 件数 */
.header__counter {
  background: var(--color-lightblue);
  border-radius: 50px;
  color: var(--color-white);
  font-weight: bold;
  padding: 3px 20px;
}

.header__counter__num {
  font-size: 2.8rem;
  font-family: var(--font-en);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: .05em;
}

.header__counter__txt {
  font-size: var(--font-14);
}

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

.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-size: var(--font-14);
  font-weight: bold;
  white-space: nowrap;
}

.header__pcBtn--signup a,
.header__pcBtn--login a,
.header__pcBtn--member a {
  background: var(--color-orange);
  color: var(--color-white);
  border-radius: var(--rad-common);
}

@media (any-hover:hover) {
  .header__pcBtn a:hover {
    opacity: 1;
    color: var(--color-lightblue);
  }
  .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-darkgray);
  width: 100%;
  height: 100%;
  line-height: 1;
  color: #fff;
  font-weight: bold;
  padding: 0 1rem;
}

.header__telBox {
  margin-top: 10px;
  text-align: right;
  margin-left: auto;
  width: fit-content;
}

.header__telNum {
  font-family: var(--font-en);
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .05em;
  position: relative;
  padding-left: 20px;
}

.header__telNum::before {
  content: "";
  width: 2rem;
  height: auto;
  aspect-ratio: 20 / 20;
  background: url(../img/common/icon_tel.svg) no-repeat center / contain;
  position: absolute;
  top: 7px;
  left: -5px;
}

.header__telTime {
  line-height: 1.2;
  font-size: var(--font-18);
  font-weight: bold;
  margin-top: 5px;
}

/*
  ===== globalnavigation ==========================================
  */
.pcNavi {
  border-bottom: solid 1px var(--color-gray);
  margin-bottom: var(--gutter-wide);
}

.pcNavi__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: min(96%, var(--width-content));
  margin: 0 auto;
}

.pcNavi__list {
  width: 66%;
  display: flex;
  align-items: center;
}

.pcNavi__item {
  width: calc(100% / 4);
  padding: 10px 0;
  position: relative;
}

.pcNavi__item>a {
  display: flex;
  gap: 10px;
  width: 100%;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  border-right: 1px dotted var(--color-gray);
  min-height: 60px;
}

.pcNavi__item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--color-blue);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pcNavi__item:last-child>a {
  border: none;
}

.pcNavi__item.link_outside>a {
  position: relative;
}

.pcNavi__item.link_outside>a::after {
  content: "";
  width: .7em;
  height: .7em;
  display: inline-block;
  background: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cg%20transform%3D%22translate(-13%20-11)%22%3E%3Cpath%20d%3D%22M27%2C12h9v9%22%20fill%3D%22none%22%20stroke%3D%22%23333%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%222%22%2F%3E%3Cpath%20d%3D%22M32%2C26v8H14V16h8%22%20fill%3D%22none%22%20stroke%3D%22%23333%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%222%22%2F%3E%3Cline%20y1%3D%2211%22%20x2%3D%2211%22%20transform%3D%22translate(24%2013)%22%20fill%3D%22none%22%20stroke%3D%22%23333%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%222%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center / contain;
}

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

.pcnavi__iconBox {
  width: 40px;
}

/* マップと種別リンク */
.pcNavi__btnBox {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 34%;
}

.pcNavi__btnBox_item {
  width: calc(100% / 2);
  text-align: center;
  color: var(--color-white);
  font-size: var(--font-20);
  font-weight: bold;
  transition: box-shadow .25s ease;
  box-shadow: inset 0 0 0 0 var(--color-white);
}

.pcNavi__btnBox_item>a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3px;
  height: 80px;
  position: relative;
  line-height: 1.3;
}

@media (any-hover:hover) {
  .pcNavi__btnBox_item:hover>a {
    opacity: 1;
  }
  .pcNavi__btnBox_item:hover {
    box-shadow: inset 0 0 0 2px var(--color-white); 
  }
}

.pcNavi__btnBox--map {
  background: var(--color-blue);
}

.pcNavi__btnBox--map .pcnavi__iconBox {
  width: 24px;
}

.pcNavi__btnBox--search {
  background: var(--color-lightblue);
}

.pcNavi__btnBox--search .pcnavi__iconBox {
  width: 20px;
}

.pcNavi__btnBox--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__btnBox_item:hover .pcNavi__childItem {
    overflow: visible;
    height: 54px;
    background-color: var(--color-lightblue);
    border-top: 1px solid var(--color-white);
  }
}

.pcNavi__childItem>a {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: var(--color-white);
  font-size: var(--font-14);
  text-decoration: none;
  line-height: 1;
}

@media (any-hover:hover) {
  .pcNavi__childItem a:hover {
    background: var(--color-white);
    color: var(--color-lightblue);
    border: 1px solid var(--color-lightblue);
    opacity: 1;
  }
}

/* スクロール固定 */
#pcNavi.fixed {
  position: fixed;
  top: 0;
  z-index: 9999;
  width: 100%;
  background: var(--color-white);
  margin-bottom: 0;
}

#pcNavi.fixed .pcNavi__item {
  padding: 5px 0;
}

#pcNavi.fixed .pcNavi__item>a {
  min-height: 35px;
  font-size: var(--font-16);
  line-height: 1.1;
}

#pcNavi.fixed .pcnavi__iconBox {
  width: 25px;
}

#pcNavi.fixed .pcNavi__btnBox_item {
  font-size: var(--font-18);
}

#pcNavi.fixed .pcNavi__btnBox_item>a {
  height: 45px;
}

/* 下層ページの調整 */
.pcNavi-noTop {
  border-top: 1px solid var(--color-gray);
  margin-bottom: 0;
}

/*
  ===== bannerWrap ==========================================
  */
.bannerWrap a img {
  position:relative;
	top:0;
  transition:0.3s;
}

@media (any-hover:hover) {
  .bannerWrap a:hover {
    opacity: 1;
  }
  .bannerWrap a:hover img {
    top: 8px;
    transition:0.3s;
  }
}

/*
  ===== indexTtl ==========================================
  */
.indexTtl {
  display: flex;
  align-items: center;
  font-weight: bold;
  margin-bottom: var(--gutter-narrow);
}

.indexTtl__ttlEn {
  font-family: var(--font-en);
  font-size: var(--font-40);
  font-weight: 900;
  color: var(--color-blue);
  letter-spacing: .1em;
  line-height: 1;
  margin-right: 15px;
  position: relative;
  padding-left: 20px;
}

.indexTtl__ttlEn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background-color: var(--color-blue);
}

.indexTtl__ttlJa {
  font-weight: bold;
  letter-spacing: .05em;
}

.indexTtl .txt_dots {
  background-image: radial-gradient(circle at center, var(--color-orange) 20%, transparent 20%);
  background-position: top right;
  background-repeat: repeat-x;
  background-size: 1em 0.5em;
  color: var(--color-orange);
  padding-top: .4em;
}

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

.pcMemberNavi {
  margin: 0 auto;
  padding: 5px;
  background: var(--color-palegray);
  text-align: center;
}

.pcMemberNavi__box {
  margin: 0 auto;
}

.pcMemberNavi__ttl {
  width: 160px;
  text-align: center;
  vertical-align: middle;
  font-weight: bold;
  border-right: dotted 1px #333333;
}

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

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

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

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

input[type="submit"].pcMemberNavi__loginBtn,
input[type="submit"].pcMemberNavi__logoutBtn {
  border: none;
  padding: 5px 10px;
  color: var(--color-white);
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
  background: var(--color-orange);
  border-radius: var(--rad-common);
}

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

.footFix_member {
  position: absolute;
  right: 10px;
  bottom: 130px;
  width: 100px;
  transition: .3s;
}

.footFix .ancPagetop a {
  width: 60px;
  height: 60px;
  position: absolute;
  right: 30px;
  bottom: 50px;
  background: var(--color-blue);
  border: 1px solid var(--color-white);
  border-radius: var(--rad-common);
  color: var(--color-white);
  font-family: var(--font-en);
  font-size: var(--font-18);
  font-weight: 900;
  text-align: center;
  letter-spacing: .05em;
  padding-top: 30px;
  transition: .3s;
}

.ancPagetop a::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 10px;
  transform: translateX(-50%) rotate(-90deg);
  background-color: var(--color-white);
  background-repeat: no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 11'><path d='M11.8538 5.86485L7.35375 10.5055C7.25993 10.6022 7.13268 10.6566 7 10.6566C6.86732 10.6566 6.74007 10.6022 6.64625 10.5055C6.55243 10.4087 6.49972 10.2775 6.49972 10.1407C6.49972 10.0038 6.55243 9.87261 6.64625 9.77586L10.2931 6.01567H0.5C0.367392 6.01567 0.240215 5.96134 0.146447 5.86465C0.0526785 5.76795 0 5.63679 0 5.50004C0 5.36329 0.0526785 5.23214 0.146447 5.13544C0.240215 5.03874 0.367392 4.98442 0.5 4.98442H10.2931L6.64625 1.22422C6.55243 1.12747 6.49972 0.996246 6.49972 0.859418C6.49972 0.722589 6.55243 0.591365 6.64625 0.494613C6.74007 0.397861 6.86732 0.343506 7 0.343506C7.13268 0.343506 7.25993 0.397861 7.35375 0.494613L11.8538 5.13524C11.9002 5.18313 11.9371 5.23999 11.9623 5.30259C11.9874 5.36518 12.0004 5.43228 12.0004 5.50004C12.0004 5.5678 11.9874 5.6349 11.9623 5.6975C11.9371 5.76009 11.9002 5.81696 11.8538 5.86485Z'/></svg>");
  width: 19px;
  height: auto;
  aspect-ratio: 164 / 150;
  pointer-events: none;
}

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

.footerBnrBox {
  margin-bottom: var(--gutter);
}

.footerBnrBox__list {
  margin: auto;
  display: flex;
  justify-content: space-between;
}

.footerBnrBox__item {
  background-color: var(--color-blue);
  width: 280px;
  display: flex;
  border-radius: 5px;
  transition: all 0.3s;
}

.footerBnrBox__item a {
  color: var(--color-white);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 15px;
  position: relative;
  border-radius: var(--rad-common);
  width: 100%;
}

.footerBnrBox__item:nth-child(even) {
  background: var(--color-lightblue);
}

.footerBnrBox__item a::after {
  content: '';
  position: absolute;
  width: 15px;
  height: auto;
  aspect-ratio: 164 / 150;
  background-color: var(--color-white);
  background-repeat: no-repeat;
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 11'><path d='M11.8538 5.86485L7.35375 10.5055C7.25993 10.6022 7.13268 10.6566 7 10.6566C6.86732 10.6566 6.74007 10.6022 6.64625 10.5055C6.55243 10.4087 6.49972 10.2775 6.49972 10.1407C6.49972 10.0038 6.55243 9.87261 6.64625 9.77586L10.2931 6.01567H0.5C0.367392 6.01567 0.240215 5.96134 0.146447 5.86465C0.0526785 5.76795 0 5.63679 0 5.50004C0 5.36329 0.0526785 5.23214 0.146447 5.13544C0.240215 5.03874 0.367392 4.98442 0.5 4.98442H10.2931L6.64625 1.22422C6.55243 1.12747 6.49972 0.996246 6.49972 0.859418C6.49972 0.722589 6.55243 0.591365 6.64625 0.494613C6.74007 0.397861 6.86732 0.343506 7 0.343506C7.13268 0.343506 7.25993 0.397861 7.35375 0.494613L11.8538 5.13524C11.9002 5.18313 11.9371 5.23999 11.9623 5.30259C11.9874 5.36518 12.0004 5.43228 12.0004 5.50004C12.0004 5.5678 11.9874 5.6349 11.9623 5.6975C11.9371 5.76009 11.9002 5.81696 11.8538 5.86485Z'/></svg>");
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}

@media (any-hover:hover) {
  .footerBnrBox__item:hover {
    border-radius: 100px;
  }
  .footerBnrBox__item a:hover {
    opacity: 1;
  }
}

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

.footerBnrBox__itemTtl span {
  display: block;
}

.footerBnrBox__itemTtl .footerBnrBox__itemTtl-en {
  font-family: var(--font-en);
  font-size: var(--font-26);
  letter-spacing: .05em;
}

.footerBnrBox__itemTtl .footerBnrBox__itemTtl-ja {
  font-size: var(--font-14);
}

#footer {
  border-top: 5px solid var(--color-blue);
  padding-top: var(--gutter-narrow);
}

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

.footerSiteInfo__left {
  width: 50%;
}

.footerSiteInfo__logo {
  width: 450px;
  max-width: 100%;
  margin-bottom: 10px;
}

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

.footerSiteInfo__companyTtl {
  font-weight: bold;
}

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

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

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

.footer__shopImgBox {
  width: 100px;
  height: 100px;
  aspect-ratio: 100 / 100;
  flex-shrink: 0;
}

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

.footer__shopname {
  font-weight: bold;
}

.footer__shopAddress {
  margin-bottom: 10px;
}

.footer__shopTelBox {
  margin-bottom: 5px;
}

.footer__telNum {
  font-weight: 900!important;
  font-size: var(--font-30);
  font-family: var(--font-en);
  line-height: 1.1!important;
  position: relative;
  padding-left: 25px;
}

.footer__telNum::before {
  content: "";
  width: 2rem;
  height: auto;
  aspect-ratio: 20 / 20;
  background: url(../img/common/icon_tel.svg) no-repeat center / contain;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.footerSiteInfo__right {
  width: 45%;
}

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

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

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

.footerActions__btnWrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: var(--gutter-narrow);
}

.footerActions__btn {
  width: calc((100% - 15px) / 2);
}

.footerActions__logoutForm {
  width: 90%;
  max-width: 260px;
  margin: auto;
}

.footerActions__logoutForm .btn_archive {
  width: 100%;
}

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

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

.footerSitemap__item {
  font-size: var(--font-14);
  line-height: 1;
  margin-bottom: 10px;
}

.footerSitemap__item a {
  text-decoration: none;
}

.footerSitemap__item.link_outside a {
  position: relative;
}

.footerSitemap__item.link_outside a::after {
  content: "";
  width: .7em;
  height: .7em;
  display: inline-block;
  background: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cg%20transform%3D%22translate(-13%20-11)%22%3E%3Cpath%20d%3D%22M27%2C12h9v9%22%20fill%3D%22none%22%20stroke%3D%22%23333%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%222%22%2F%3E%3Cpath%20d%3D%22M32%2C26v8H14V16h8%22%20fill%3D%22none%22%20stroke%3D%22%23333%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%222%22%2F%3E%3Cline%20y1%3D%2211%22%20x2%3D%2211%22%20transform%3D%22translate(24%2013)%22%20fill%3D%22none%22%20stroke%3D%22%23333%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%222%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center / contain;
  margin-left: 5px;
}

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

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

.footerSocial__item {
  width:32px;
  height:32px;
  margin:var(--gutter-narrow) 10px;
}

.footerCopy {
  display: block;
  width: 100%;
  padding: 10px 0;
  font-style: normal;
  font-size: var(--font-12);
  color: var(--color-white);
  background: var(--color-blue);
  text-align: center;
}

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

/*==================================================
  MAIN
==================================================*/
/*************** メインタイトル ****************/
.ttlWrap {
  background: var(--color-blue);
  color: var(--color-white);
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding: 50px 0;
}

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

#container {
  margin: 0 auto !important;
}

/*投稿box*/
#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;
  color: var(--color-white);
}

#bread>span:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border-top: 1px solid var(--color-white);
  border-right: 1px solid var(--color-white);
  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: var(--font-22);
  font-weight: bold;
  padding: 15px 0;
  border-bottom: solid 2px var(--color-black);
  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: var(--font-22);
  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: var(--color-white);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  text-shadow: none !important;
  padding: 5px;
  background: var(--color-blue);
}

.oc_bar01:after,
.srchbox01 .selectbox01 .selectbox_ttl:after {
  cursor: pointer;
  line-height: 100%;
  display: block;
  content: "－";
  float: right;
  color: var(--color-white);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  text-shadow: none !important;
  padding: 5px;
  background: var(--color-blue);
}

.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 {
  left: 100px !important;
}

.slick-arrow.slick-next {
  right: 100px !important;
}

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

.slick-next::before,
.slick-prev::before {
  background-color: var(--color-white);
  mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 11'><path d='M11.8538 5.86485L7.35375 10.5055C7.25993 10.6022 7.13268 10.6566 7 10.6566C6.86732 10.6566 6.74007 10.6022 6.64625 10.5055C6.55243 10.4087 6.49972 10.2775 6.49972 10.1407C6.49972 10.0038 6.55243 9.87261 6.64625 9.77586L10.2931 6.01567H0.5C0.367392 6.01567 0.240215 5.96134 0.146447 5.86465C0.0526785 5.76795 0 5.63679 0 5.50004C0 5.36329 0.0526785 5.23214 0.146447 5.13544C0.240215 5.03874 0.367392 4.98442 0.5 4.98442H10.2931L6.64625 1.22422C6.55243 1.12747 6.49972 0.996246 6.49972 0.859418C6.49972 0.722589 6.55243 0.591365 6.64625 0.494613C6.74007 0.397861 6.86732 0.343506 7 0.343506C7.13268 0.343506 7.25993 0.397861 7.35375 0.494613L11.8538 5.13524C11.9002 5.18313 11.9371 5.23999 11.9623 5.30259C11.9874 5.36518 12.0004 5.43228 12.0004 5.50004C12.0004 5.5678 11.9874 5.6349 11.9623 5.6975C11.9371 5.76009 11.9002 5.81696 11.8538 5.86485Z'/></svg>");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  width: 25px;
  height: 22px;
  opacity: 1!important;
  position: absolute;
  top: 50%;
}

.slick-next::before {
  right: 0;
  transform: translate(-50%, -50%);
}

.slick-prev::before {
  left: 50%;
  transform: translate(-50%, -50%) rotate(180deg);
}

.slick-dots li,
.slick-dots li button {
  width: 40px !important;
  height: 8px !important;
}

.slick-dots li button:before {
  content: "" !important;
  width: 40px !important;
  height: 8px !important;
  background: var(--color-white);
  border: 1px solid var(--color-blue);
  opacity: 1 !important;
}

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

.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__inner:last-child {
  margin-bottom: 0;
}

.shopInfoBox__imgBox {
  width: 50%;
  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: start;
  flex-grow: 1;
  line-height: 1.1;
}

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

.shopInfoBox__dataIcon {
  margin-right: .7rem;
}

.shopInfoBox__shopCommentBox {
  margin: 1.5rem 0 var(--gutter-narrow);
}

.shopInfoBox__shopCommentTtl {
  font-weight: bold;
}

.shopInfoBox__dataBox .btn_archive {
  margin: 0;
}

.shopInfoBox__dataBox .btn_archive .btn_archive_link {
  background: var(--color-ygreen);
}

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


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

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

  .header__logoWrap {
    width: 56%;
  }

  .header__logo {
    width: 60%;
  }

  .header__counter {
    padding: 3px 10px;
  }

  .header__counter__num {
    font-size: 2rem;
  }

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

  /*
  ===== globalnavigation ==========================================
  */
  .pcNavi__inner {
    width: 100%;
  }

  .pcnavi__iconBox,
  .pcNavi__btnBox--map .pcnavi__iconBox,
  .pcNavi__btnBox--search .pcnavi__iconBox
  {
    width: 20px;
  }

  .pcNavi__item>a {
    font-size: 1.4rem;
  }

  .pcNavi__btnBox_item {
    font-size: 1.4rem;
    padding: 0 5px;
  }

  #pcNavi.fixed .pcNavi__item>a,
  #pcNavi.fixed .pcNavi__btnBox_item>a {
    font-size: 1.4rem;
  }

  #pcNavi.fixed .pcnavi__iconBox {
    width: 20px;
  }

  .pcNavi__btnBox--parent {
    padding: 0 15px;
  }

  .pcNavi.fixed .pcNavi__btnBox_item>a {
    line-height: 1;
  }

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

  .footerSiteInfo {
    padding: 30px 10px;
  }

  .footerActions {
    padding: 0 10px;
  }

  .footerBnrBox__list {
    flex-wrap: wrap;
    gap: 15px;
  }

  .footerBnrBox__item {
    width: 49%;
  }

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

  .footerActions_logoutBtn {
    max-width: unset;
  }

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

  /*==================================================
    shopInfoBox PC/TABLET
  ==================================================*/
  .shopInfoBox__imgBox,
  .shopInfoBox__dataBox {
    width: 48%;
  }


}

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

  /*==================================================
    HEADER SP
  ==================================================*/
  .header {
    padding: 5px 0;
  }

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

  .header__inner {
    width: 60%;
    flex-grow: 1;
    padding-left: 5px;
  }

  .header__logoWrap {
    width: 100%;
  }

  .header__h1Box_txt {
    font-size: 1rem;
    margin: 0;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
  }

  .header__logo {
    width: 95%;
  }

  /*ヘッダーボタン*/
  .header__spContactBox {
    width: 32%;
  }

  .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;
    border: 1px solid 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: flex;
    background: var(--color-orange);
    border-radius: var(--rad-common);
    justify-content: center;
    gap: 4px;
    align-items: center;
    color: var(--color-white);
    font-weight: bold;
    width: 70px;
    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;
  }

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

  #spFix.fixed .header__h1Box {
    padding-top: 3px;
  }

  #spFix.fixed .header__logo {
    width: 85%;
  }

  /*ドロップダウンメニュー*/
  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%;
    padding: 10px;
  }

  .spNavi__btnList {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
  }

  .spNavi__btn {
    width: 49%;
  }

  .spNavi__btn a {
    background: var(--color-blue);
    border-radius: var(--rad-common);
    color: var(--color-white);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-decoration: none;
    line-height: 1;
    letter-spacing: .05em;
    padding: 1em .5em;
    font-weight: bold;
  }

  .spNaviWrap__listWrap {
    padding: 0 20px 60px;
  }

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

  .spNavi__ttl-en {
    color: var(--color-blue);
    font-family: var(--font-en);
    font-size: 2.6rem;
    font-weight: 900;
    padding-right: 5px;
    letter-spacing: .05em;
  }

  .spNavi__ttl-en::after {
    content: '/';
    font-size: 2rem;
    font-weight: 500;
    padding-left: 5px;
    color: var(--color-black);
  }

  .spNavi__list {
    margin-bottom: 10px;
    font-size: 1.4rem;
  }

  .spNavi__childList {
    display: none;
  }

  .spNavi__item a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
    padding: 5px;
    height: 100%;
    position: relative;
  }

  .spNavi__item a:not(.spNavi__toggle):before {
    content: "";
    width: 9px;
    height: 1px;
    background: var(--color-gray);
    position: relative;
    top: 1px;
  }

  .spNavi__item.link_outside>a::after {
    content: "";
    width: .7em;
    height: .7em;
    display: inline-block;
    background: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2224%22%20height%3D%2224%22%20viewBox%3D%220%200%2024%2024%22%3E%3Cg%20transform%3D%22translate(-13%20-11)%22%3E%3Cpath%20d%3D%22M27%2C12h9v9%22%20fill%3D%22none%22%20stroke%3D%22%23333%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%222%22%2F%3E%3Cpath%20d%3D%22M32%2C26v8H14V16h8%22%20fill%3D%22none%22%20stroke%3D%22%23333%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%222%22%2F%3E%3Cline%20y1%3D%2211%22%20x2%3D%2211%22%20transform%3D%22translate(24%2013)%22%20fill%3D%22none%22%20stroke%3D%22%23333%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%20stroke-width%3D%222%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat center / contain;
  }

  .spNavi__item a.spNavi__toggle {
    position: relative;
    display: inline-block;
    padding-left: 20px;
    font-weight: bold;
  }

  /* ＋アイコン部分 */
  .spNavi__toggle::before {
    content: "+";
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%) rotate(0deg);
    transition: transform 0.3s ease, opacity 0.3s ease;
    font-size: 1.3em;
    line-height: 1;
    color: var(--color-blue);
  }

  /* 開いたときは−に切り替え（回転＋フェード） */
  .spNavi__item.open > .spNavi__toggle::before {
    content: "−";
    transform: translateY(-50%) rotate(180deg);
  }

  .spNavi__childList {
    padding-left: 1em;
  }

  .spNavi__list:last-child {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
  }

  .spNavi__list:last-child .spNavi__item {
    color: var(--color-darkgray);
    font-size: 1.4rem;
  }

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

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

  .memberModal__ttl {
    margin-bottom: 10px;
    padding: 10px 0;
    font-size: 16px;
    font-weight: bold;
    color: var(--color-white);
    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: var(--color-white);
    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: var(--color-white);
    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: var(--color-white);
    border-radius: 4px;
    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: 1000;
  }

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

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

  .memberModal__body {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    max-width: 290px;
    width: 98%;
    background: #F6F5EF;
  }
  
  /*==================================================
    FOOTER SP
  ==================================================*/
  /*footFix*/
  .footFix {
    bottom: 10%;
  }

  .footFix .ancPagetop {
    bottom: 10px;
  }

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

  .footerBnrBox__item {
    width: 100%;
  }

  .footerBnrBox__item a {
    padding: 10px 15px;
  }
  
  .footerSiteInfo {
    display: block;
  }

  .footerSiteInfo__left {
    width: 100%;
  }

  .footerSiteInfo__inner {
    flex-direction: column;
  }

  .footerSiteInfo__logo {
    margin: 0 auto 10px;
    width: 100%;
  }

  .footerSiteInfo__logo a {
    text-align: center;
  }

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

  .footerSiteInfo__right {
    width: 100%;
  }

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

  .footerActions__telWrap {
    width: 100%;
  }

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

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

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

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

  .footerActions__spTelTime {
    font-size: 11px;
  }

  .footerMenu {
    width: 100%;
    height: 60px;
    padding: 0;
    position: fixed;
    bottom: 0px;
    z-index: 999;
    clear: both;
    background: var(--color-white);
    border-top: 1px solid var(--color-blue);
  }

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

  .footerMenu__item {
    width: calc(100% / 5);
    height: 60px;
    line-height: 1.2;
    text-align: center;
    vertical-align: middle;
    border: 1px solid var(--color-blue);
  }

  .footerMenu__item:first-child {
    background: var(--color-blue);
    color: var(--color-white);
  }

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

  .footerMenu__item img {
    width: 34%;
    max-height: 45%;
  }

  .footerActions__btnWire form {
    width: 220px;
  }

  /*==================================================
    MAIN SP
  ==================================================*/
  .ttlWrap {
    padding: 40px 0 30px;
  }

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

  /*--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: 0;
    border-bottom: none;
  }

  #postbox input,
  #postbox textarea,
  #postbox select {
    margin: 5px 0;
  }

  /*(開閉タイトル)*/
  .oc_bar01,
  .oc_bar01_open,
  .srchbox01 .selectbox01 .selectbox_ttl,
  .srchbox01 .selectbox01 .selectbox_ttl_open,
  .srchbox01 .selectbox01 h3 {
    font-size: 1.2em;
  }

  /*==================================================
    shopInfoBox SP
  ==================================================*/
  .shopInfoBox__dataBox {
    width: 100%;
    max-width: unset;
  }

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

  .shopInfoBox__imgBox .slick-dots {
    bottom: -20px;
  }

  .shopInfoBox__dataWrap {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }

  .shopInfoBox__dataBox .btn_archive {
    margin: auto;
  }

  /*==================================================
    FOOTER
  ==================================================*/
  .footFix .ancPagetop a {
    right: 10px;
  }
}
