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

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

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

  --color-main: #00A63C;
  --color-red: #CE0000;
  --color-orange: #FF8000;
  --color-yellow: #FFD21E;
  --color-ygreen: #8ECC11;
  --color-green: #00A63C;
  --color-blue: #0068B6;
  --color-lightblue: #00ADA9;
  --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: #eee;
  --color-palegreen: #F1F9EF;
  --color-paleorange: #ffefee;

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

  --rad-common: 5px;
  --rad-wide: 10px;
  --rad-round: 50vh;

}

@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: 16px;
  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;
  }
}

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

/*==================================================
  HEADER
==================================================*/
.header {
  font-size: 14px;
}

.header__inner {
  max-width: var(--width-content);
  margin: 1em auto 1.5em;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  width: 60%;
  margin-right: 2%;
  /* padding: 3% 0 0; */
  display: block;
  justify-content: space-between;
  align-items: center;
}

.header__logo a img {
  width: clamp(18em, 38vw, 490px);
}

.header__logo a span {
  display: inline-block;
  font-weight: bold;
  border: 2px solid var(--color-black);
  padding: .5em 1em;
  margin-left: 1em;
  font-size: clamp(.75em, 1vw, 1em);
}

.header__pcBtnWrap {
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-top: 5px;
}

.header__pcBtn a {
  display: block;
  width: 120px;
  text-align: center;
  padding: 1em 0;
  text-decoration: none;
  line-height: 1;
  font-weight: bold;
  position: relative;
}

.header__pcBtn a::after {
  position: absolute;
  content: '';
  display: block;
  width: 1px;
  height: 16px;
  background: var(--color-lightgray);
  transform:rotate(25deg);
  left: 0;
  top: calc(50% - 6px);
}

.header__pcBtn--emember a {
  color: var(--color-green);
  position: static;
}

.header__pcBtn--emember a::after {
  content: none;
}

input[type="submit"].header__pcLogoutBtn {
  width: 120px;
  color: var(--color-darkgray);
  line-height: 1;
  border-radius: 0;
  background: none;
  padding: 1em 0;
}

/* 事業用サイトリンク */
.header__pcBtn .incomeSite a {
  width: 100%;
  border-radius: var(--rad-round);
  background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(17,65,101,1) 100%);
  color: #fff;
  padding: 1em 2.5em 1em 2em;
}

.header__pcBtn .incomeSite a::after {
  position: absolute;
  font-family: 'Font Awesome 5 Free';
  color: #fff;
  font-weight: 900;
  content: '\f35d';
  font-size: .8em;
  left: auto;
  right: 1.5em;
  top: 35%;
  width: auto;
  height: auto;
  background: none;
  transform: none;
}

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

.header__telNum {
  font-weight: bold;
  word-break: keep-all;
  font-size: clamp(1.75rem, 2.6vw, 3.4rem);
  position: relative;
  margin-right: 10px;
  padding-left: 25px;
}

.header__telTime {
  line-height: 1.2;
  font-size: clamp(0.75em, 0.705em + 0.23vw, 0.875em);
}

.header__telTime span {
  display: block;
}

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

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

/* PCとタブレットのみ */
@media print, screen and (min-width: 768px) {
  .header.fixed {
    padding-bottom: 150px;
  }
}

.pcNavi__item {
  width: 20%;
  position: relative;
}

.pcNavi__item::after {
  position: absolute;
  content: '';
  display: block;
  width: 1px;
  height: 16px;
  background: var(--color-lightgray);
  transform:rotate(25deg);
  left: 0;
  top: calc(50% - 6px);
}

.pcNavi__item:first-child::after {
  content: none;
}

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

.fixed .pcNavi__list .pcNavi__item > a {
  padding: .5em 0;
}

.pcNavi__item a:first-letter {
  color: var(--color-green);
}

.pcNavi__item .enFont {
  display: block;
  color: var(--color-lightgray);
  font-size: 12px;
  letter-spacing: .05em;
  line-height: 1.4;
}

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

  .pcNavi__item>a:hover i {
    color: #FFF;
  }
}

.pcNavi__item--parent {
  list-style: none;
  padding: 0;
  position: relative;
}

.pcNavi__childList {
  position: absolute;
  width: 100%;
  display: block;
  z-index: 999;
}

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

@media (any-hover:hover) {
  .pcNavi__item:hover .pcNavi__childItem {
    overflow: visible;
    height: 54px;
    background-color: rgba(0, 0, 0, 0.9);
    border-bottom: 1px solid #666;
  }
}

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

@media (any-hover:hover) {
  .pcNavi__childItem a:hover {
    background-color: rgba(0, 0, 0, 1);
    opacity: 1;
  }
}

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

.pcMemberNavi__ttl span {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pcMemberNavi__ttl .ph {
  font-size: 18px;
  margin-right: 3px;
}

.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: #333;
  /* border-radius: 3px; */
}

/*==================================================
  FOOTER
==================================================*/
/*footFix*/

.footFix {
  width: 100%;
  position: fixed;
  bottom: 0;
  z-index: 999;
}
.footFix .ancPagetop {
  width: 60px;
  height: 60px;
  position: absolute;
  right: 10px;
  bottom: 50px;
}

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

.footFix .sidefix .fixBtnList li {
  margin-bottom: 10px;
}

.footFix .sidefix .fixBtnList li a,
.footFix .sidefix .fixBtnList .fixBtn_logout .footerActions__logoutBtn {
  display: flex;
  flex-flow: row;
  align-items: center;
  border-radius: var(--rad-round) 0 0 var(--rad-round);
  background: var(--color-darkgray);
  width: 150px;
  height: 50px;
  padding-left: 1.5em;
  position: relative;
  /* padding-top: 50px; */
  font-weight: bold;
  font-size: 16px;
  box-shadow: 0px 0px 0px 1px rgba(255, 255, 255, .3);
}

.footFix .sidefix .fixBtnList li a span {
  font-size: 10px;
  display: block;
  margin-left: 5px;
  padding: 5px;
  background: var(--color-yellow);
  color: var(--color-black);
  border-radius: var(--rad-round);
}

.footFix .sidefix .fixBtnList li.fixBtn_shopreserv a {
  background-color: var(--color-yellow);
  color: var(--color-black);
}

.footFix .sidefix .fixBtnList li.fixBtn_regist a {
  background-color: var(--color-main);
  color: #fff;
}

.footFix .sidefix .fixBtnList li.fixBtn_shop a {
  background-color: var(--color-blue);
  color: #fff;
}

.footFix .sidefix .fixBtnList li.fixBtn_shopreserv a::before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 25px;
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2232%22%20height%3D%2232%22%20fill%3D%22%23000000%22%20viewBox%3D%220%200%20256%20256%22%3E%3Cpath%20d%3D%22M208%2C32H184V24a8%2C8%2C0%2C0%2C0-16%2C0v8H88V24a8%2C8%2C0%2C0%2C0-16%2C0v8H48A16%2C16%2C0%2C0%2C0%2C32%2C48V208a16%2C16%2C0%2C0%2C0%2C16%2C16H208a16%2C16%2C0%2C0%2C0%2C16-16V48A16%2C16%2C0%2C0%2C0%2C208%2C32ZM72%2C48v8a8%2C8%2C0%2C0%2C0%2C16%2C0V48h80v8a8%2C8%2C0%2C0%2C0%2C16%2C0V48h24V80H48V48ZM208%2C208H48V96H208V208Zm-68-76a12%2C12%2C0%2C1%2C1-12-12A12%2C12%2C0%2C0%2C1%2C140%2C132Zm44%2C0a12%2C12%2C0%2C1%2C1-12-12A12%2C12%2C0%2C0%2C1%2C184%2C132ZM96%2C172a12%2C12%2C0%2C1%2C1-12-12A12%2C12%2C0%2C0%2C1%2C96%2C172Zm44%2C0a12%2C12%2C0%2C1%2C1-12-12A12%2C12%2C0%2C0%2C1%2C140%2C172Zm44%2C0a12%2C12%2C0%2C1%2C1-12-12A12%2C12%2C0%2C0%2C1%2C184%2C172Z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E');
  background-repeat: no-repeat;
  background-size: contain;
  margin: 0 5px 0 0;
}

.footFix .sidefix .fixBtnList li.fixBtn_regist a::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2232%22%20height%3D%2232%22%20fill%3D%22%23ffffff%22%20viewBox%3D%220%200%20256%20256%22%3E%3Cpath%20d%3D%22M230.92%2C212c-15.23-26.33-38.7-45.21-66.09-54.16a72%2C72%2C0%2C1%2C0-73.66%2C0C63.78%2C166.78%2C40.31%2C185.66%2C25.08%2C212a8%2C8%2C0%2C1%2C0%2C13.85%2C8c18.84-32.56%2C52.14-52%2C89.07-52s70.23%2C19.44%2C89.07%2C52a8%2C8%2C0%2C1%2C0%2C13.85-8ZM72%2C96a56%2C56%2C0%2C1%2C1%2C56%2C56A56.06%2C56.06%2C0%2C0%2C1%2C72%2C96Z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E');
  background-repeat: no-repeat;
  background-size: contain;
  margin: 0 5px 0 0;
}

.footFix .sidefix .fixBtnList li.fixBtn_shop a::before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 25px;
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2232%22%20height%3D%2232%22%20fill%3D%22%23ffffff%22%20viewBox%3D%220%200%20256%20256%22%3E%3Cpath%20d%3D%22M232%2C96a7.89%2C7.89%2C0%2C0%2C0-.3-2.2L217.35%2C43.6A16.07%2C16.07%2C0%2C0%2C0%2C202%2C32H54A16.07%2C16.07%2C0%2C0%2C0%2C38.65%2C43.6L24.31%2C93.8A7.89%2C7.89%2C0%2C0%2C0%2C24%2C96h0v16a40%2C40%2C0%2C0%2C0%2C16%2C32v72a8%2C8%2C0%2C0%2C0%2C8%2C8H208a8%2C8%2C0%2C0%2C0%2C8-8V144a40%2C40%2C0%2C0%2C0%2C16-32V96ZM54%2C48H202l11.42%2C40H42.61Zm50%2C56h48v8a24%2C24%2C0%2C0%2C1-48%2C0Zm-16%2C0v8a24%2C24%2C0%2C0%2C1-35.12%2C21.26%2C7.88%2C7.88%2C0%2C0%2C0-1.82-1.06A24%2C24%2C0%2C0%2C1%2C40%2C112v-8ZM200%2C208H56V151.2a40.57%2C40.57%2C0%2C0%2C0%2C8%2C.8%2C40%2C40%2C0%2C0%2C0%2C32-16%2C40%2C40%2C0%2C0%2C0%2C64%2C0%2C40%2C40%2C0%2C0%2C0%2C32%2C16%2C40.57%2C40.57%2C0%2C0%2C0%2C8-.8Zm4.93-75.8a8.08%2C8.08%2C0%2C0%2C0-1.8%2C1.05A24%2C24%2C0%2C0%2C1%2C168%2C112v-8h48v8A24%2C24%2C0%2C0%2C1%2C204.93%2C132.2Z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E');
  background-repeat: no-repeat;
  background-size: contain;
  margin: 0 5px 0 0;
}

.footFix .ancPagetop {
  width: 60px;
  height: 60px;
  position: absolute;
  right: 0;
  bottom: 70px;
}

.footFix .ancPagetop .pagetop_btn {
  color: #fff;
  text-align: center;
  background: var(--color-darkgray);
  background-image: none;
  opacity: .7;
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  font-size: 12px;
  letter-spacing: 1px;
  border-radius: var(--rad-common) 0 0 var(--rad-common);
}

.footFix .ancPagetop .pagetop_btn .fas {
  margin-bottom: 5px
}

.footFix .ancPagetop .pagetop_btn:hover {
  opacity: 1;
}

/* お問い合わせ */
.footerBnrBox {
  padding: var(--gutter-wide) 0;
}

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

.footerBnr__ttl {
  text-align: center;
  font-size: clamp(2rem, 1.4rem + 3vw, 4.5rem);
  font-weight: 900;
}

.footerBnr__ttl .enFont {
  display: block;
  color: var(--color-gray);
  font-size: clamp(1.125rem, 0.761rem + 1.82vw, 2.125rem);
}

.footerBnr__box {
  display: flex;
  justify-content: space-between;
  flex-flow: row wrap;
}

.footerBnr__item {
  width: 32%;
}

/* 子要素が3つのとき、幅を49%に変更 */
.footerBnr__box > *:nth-last-child(3):first-child,
.footerBnr__box > *:nth-last-child(3):first-child ~ * {
  width: 49%;
}

.footerBnr__item.catalogBox__item {
  width: 100% !important;
}

/* TOP共通 バナー */
.registBox__item {
  background: url(../img/common/bnr_registBox_bg.webp) center no-repeat;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-flow: column wrap;
  position: relative;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
}

.reserveBox__item {
  background: url(../img/common/bnr_reserveBox_bg.webp) center no-repeat;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-flow: column wrap;
  position: relative;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.contactBox__item {
  background: url(../img/common/bnr_contactBox_bg.webp) center no-repeat;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-flow: column wrap;
  position: relative;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
}

.registBox__item::after,
.reserveBox__item::after,
.contactBox__item::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  transform: skewX(-24deg);
  left: -50%;
  z-index: 0;
}

.registBox__item::after {
  background: var(--color-green);
}

.reserveBox__item::after {
  background: var(--color-yellow);
}

.contactBox__item::after {
  background: var(--color-blue);
}

.registWrap {
  z-index: 1;
  width: 80%;
  text-align: center;
  padding: var(--gutter) 0;
}

.registWrap .registBox__ttl,
.registWrap .reserveBox__ttl,
.registWrap .contactBox__ttl {
  font-size: clamp(2.5rem, 2.4rem + 1.2vw, 4rem);
  font-weight: 900;
}

.registWrap .registBox__ttl span,
.registWrap .reserveBox__ttl span,
.registWrap .contactBox__ttl span {
  display: block;
  font-size: 1.5rem;
}

.registWrap .registBox__txt,
.registWrap .reserveBox__txt,
.registWrap .contactBox__txt {
  margin: 1em 0 2em;
  font-weight: bold;
}

/* 共通 ここまで */
.catalogBox__item {
  background: url(../img/common/bnr_catalogBox_bg.webp) center no-repeat;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-flow: column wrap;
  position: relative;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  margin-top: var(--gutter-narrow);
}

.catalogBox__item::after {
  content: "";
  display: block;
  position: absolute;
  width: 60%;
  height: 100%;
  transform: skewX(-24deg);
  left: -10%;
  z-index: 0;
}

.catalogBox__item::after {
  background: var(--color-orange);
}

.catalogBox__item .registWrap {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--gutter);
}

.catalogBox__item .registWrap .btn_archive {
  min-width: 320px;
}

/* バナーここまで */
#footer {
  font-size: 14px;
}

.footerSiteInfo__logo {
  background: var(--color-green);
  padding: 5%;
  text-align: center;
}

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

.footerSiteInfo__logo a span {
  display: inline-block;
  font-weight: bold;
  border: 2px solid #fff;
  padding: .5em 1em;
  margin-left: 1em;
  font-size: clamp(1em, 1vw, 1.5em);
  color: #fff;
}

.footerSiteInfo {
  background: var(--color-palegray);
  padding: var(--gutter) 0;
}

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

.footerLeft {
  width: 36%;
}

.footerSiteInfo__shop {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2em;
}

.footerSiteInfo__shop dt {
  margin-right: 2em;
}

.footerSiteInfo__shop dt img {
  width: 180px;
  height: 180px;
  object-fit: cover;
}

.footerSiteInfo__shop .ft_shop_name {
  font-weight: 900;
  font-size: clamp(1.25rem, 0.977rem + 1.36vw, 2rem);
  margin-bottom: .25em;
}

.footerSiteInfo__shop .ft_shop_name:first-letter {
  color: var(--color-green);
}

.footerSiteInfo__shop .ft_shop_tel .enFont {
  display: block;
  font-weight: 700;
  font-size: clamp(2rem, 2rem + 2vw, 3rem);
  margin-top: .25em;
}

.footerSiteInfo__shop .ft_shop_time {
  font-size: 12px;
  margin-top: .5em;
}

.footerSiteInfo__shop dd {
  width: 70%;
}

.footerSiteInfo__btn .incomeSite a {
  display: block;
  text-align: center;
  max-width: 300px;
  width: 100%;
  border-radius: var(--rad-round);
  background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(17,65,101,1) 100%);
  color: #fff;
  padding: 1em 2.5em 1em 2em;
  font-weight: bold;
  font-size: clamp(1em, 1em + 0.68vw, 1.5rem);
  position: relative;
}

.footerSiteInfo__btn .incomeSite a::after {
  position: absolute;
  font-family: 'Font Awesome 5 Free';
  color: #fff;
  font-weight: 900;
  content: '\f35d';
  font-size: .8em;
  left: auto;
  right: 1.5em;
  top: 35%;
  width: auto;
  height: auto;
  background: none;
  transform: none;
}

.footerActions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 20px auto 50px;
  max-width: 1080px;
}

.footerActions__btnWrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  width: 40%;
  max-width: 410px;
  margin-right: 2%;
}

.footerActions__btn {
  width: calc((100% - 10px) / 2);
  max-width: 200px;
  text-align: center;
  padding: 10px 0;
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  border-radius: 3px;
  position: relative;
}

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

.footerActions__btn--emember {
  border: 1px solid var(--color-red);
  background-color: var(--color-red);
}

.footerActions__btn--shoprsv {
  background-color: var(--color-green);
  border: 1px solid var(--color-green);
}

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

.footerActions__telWrap {
  flex-shrink: 0;
}

.footerActions__pcTel {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: nowrap;
  gap: 10px;
  margin-bottom: 10px;
}

.footerActions__pcTelNum {
  font-size: 38px;
  text-indent: 0.5em;
  font-weight: bold;
  line-height: 1;
  padding-left: 16px;
  position: relative;
}

.footerActions__pcTelNum::before {
  position: absolute;
  font-family: 'Font Awesome 5 Free';
  color: var(--color-gray);
  font-weight: 900;
  content: '\f879';
  font-size: 30px;
  left: -20px;
  top: 60%;
  transform: translateY(-50%);
}

.footerActions__pcTelTime {
  font-size: 17px;
  line-height: 1.2;
  font-weight: bold;
}

.footerRight {
  width: 60%;
}

.footerSitemap {
  display: flex;
  flex-flow: row wrap;
}

.footerSitemap__parent {
  width: 31%;
  margin: 0 0 2em 2%;
}

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

.footerSitemap__item::before {
  position: absolute;
  font-family: 'Font Awesome 5 Free';
  color: var(--color-darkgray);
  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;
  line-height: 1.4;
}

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

.footerSitemap__child {
  padding-left: 1em;
}

/*SNS icon*/
.footerSocial{
  display:flex;
  justify-content: center;
  margin:var(--gutter-narrow) 0;
}

.footerSocial__item {
  width:32px;
  height:32px;
  margin:0 10px;
}

.footerCopy {
  display: block;
  width: 100%;
  padding: 10px 0;
  font-style: normal;
  font-size: 12px;
  letter-spacing: .05em;
  color: #fff;
  background: var(--color-black);
  text-align: center;
  position:relative;
}

.externalBnr__list {
  display: flex;
  justify-content: space-around;
}

/* recaptcha */
.grecaptcha-badge {
  bottom: 0px !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;
  /* height: 180px; */
  padding: var(--gutter);
}

.mainTtl {
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 900;
  text-align: center;
  padding-top: .25em;
  /* display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; */
}

.mainTtl:first-letter {
  color: var(--color-green);
}

#container {
  margin: 0 auto !important;
}

.sectionttl {
  position: relative;
  font-size: 24px;
  font-weight: 900;
  text-align: left;
  margin: var(--gutter) 0;
  padding-left: var(--gutter);
}

.sectionttl .enFont {
  font-size: clamp(3rem, 1.6rem + 3vw, 6rem);
  font-weight: 700;
  padding-right: var(--gutter-supernarrow);
}

.sectionttl::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 5px;
  height: 100%;
  content: '';
  background-color: var(--color-green);
  -webkit-transform: skewX(-24deg);
  transform: skewX(-24deg);
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}

.articlettl {
  text-align: left;
  font-weight: bold;
  margin-bottom: var(--gutter-narrow);
}

.articlettl .enFont {
  font-size: clamp(2rem, 2.2rem + 1.2vw, 3.75rem);
  font-weight: 700;
}

.articlettl .enFont:first-letter {
  color: var(--color-green);
}

.articlettl span {
  display: block;
  font-size: clamp(0.75rem, 0.659rem + 0.45vw, 1rem);
}

/*投稿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: 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;
  font-size: 12px;
}

@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;
  font-size: 1.6em;
  font-weight: bold;
  padding: 1em;
}

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

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

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

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

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

.slick-prev::before {
  background: url(../img/common/arrow_left.webp) !important;
  background-size: contain !important;
}

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

.slick-dots li button:before {
  content: "" !important;
  width: 13px !important;
  height: 13px !important;
  background: #999;
  border-radius: 8px;
  opacity: 1 !important;
}

.slick-dots li.slick-active button:before {
  background: #333;
}

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

/*==================================================
  PC only SETTINGS : Min768px 
==================================================*/
@media screen and (min-width: 768px) {
  
  /* fixed */
  .header #pcNavi.fixed {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    background: #fff;
    animation: header-slidein 0.5s;
    box-shadow:  0 0 3px 0px rgba(64,41,23,0.4);
  }
  
  @keyframes header-slidein {
    0% {
      transform: translateY(-200px);
    }
  
    100% {
      transform: translateY(0);
  
    }
  }
  .header #pcNavi.fixed .inner {
    align-items: center;
    max-width: 98%;
    margin: 5px auto 0;
  }
  
  .header #pcNavi.fixed >ul>li>a {
    font-size: 14px;
    padding: 0.5em;
    min-height: auto;
  }
  /* #header #hnavi.fixed .inner .leftcont {
    padding: 5px 0;
  }
  #header.fixed .inner .header_num_box,
  #header.fixed .headcontactBox {
    display: none;
  }
  #header.fixed .inner .leftcont .site_name a img {
    width: 282px;
  }
  #header.fixed .inner .leftcont .site_name a span {
    font-size: 10px;
  }
  #header.fixed .headbtnBox li.logout {
    left: -125px;
  } */
}

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

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

  .header__logo {
    width: 55%;
  }

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

  .catalogBox__item .registWrap {
    padding: 20px;
  }

  .catalogBox__item .registWrap .btn_archive a {
    width: 80%;
  }


  .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: 0 10px;
    width: 98%;
    overflow: hidden;
  }


}

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

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

  /*==================================================
    HEADER SP
  ==================================================*/
  .header {
    display: block;
    padding: 0;
    position: relative;
  }
  .headerWrap {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    top: 0;
    left: 0;
    z-index: 998;
    background-color: rgba(255, 255, 255, 1);
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
  }

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

  .header__logo {
    width: 100%;
    margin: 2px 0 5px 5px;
  }

  .header__logo a span {
    font-size: 10px;
    padding: 1px 1em;
    width: 100%;
    text-align: center;
    margin: 0;
    border-width: 1px;
  }

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

  .header__spBtn i {
    font-size: 16px;
  }

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

  #header .inner .leftcont {
    width: 100%;
    padding: 5px;
    margin: 0;
  }

  #header .inner .header_num_box,
  #header .inner .leftcont .site_name a span {
    display: none;
  }

  #header .inner .leftcont .site_name {
    padding: 5px;
    width: 220px;
  }

  #header .inner .leftcont .site_name a img {
    width: 100%;
  }

  .header__spContactBox {
    /* position: fixed; */
    right: 0;
    top: 0;
    z-index: 999;
  }

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

  .header__spContactBox .header__spBtnWrap>li a img {
    width: 40px;
    height: 40px;
  }

  .header__spContactBox .header__spBtnWrap .dropbtn {
    background: var(--color-black);
    color: #fff;
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    font-size: 10px;
    padding: 5px;
    line-height: 1.2;
  }

  .header__spContactBox .header__spBtnWrap .dropbtn span {
    width: 50%;
    height: 2px;
    background-color: #fff;
    display: block;
    position: absolute;
    transition: ease .3s;
  }

  .header__spContactBox .header__spBtnWrap .dropbtn span:first-of-type {
    top: 10px;
  }

  .header__spContactBox .header__spBtnWrap .dropbtn span:nth-of-type(2) {
    top: 18px;
  }

  .header__spContactBox .header__spBtnWrap .dropbtn span:nth-of-type(3) {
    top: 26px;
  }

  .header__spContactBox .header__spBtnWrap .dropbtn.active {
    transform: translateX(0);
  }

  .header__spContactBox .header__spBtnWrap .dropbtn.active span:first-of-type {
    top: 15px;
    transform: rotate(45deg);
  }

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

  .header__spContactBox .header__spBtnWrap .dropbtn.active span:nth-of-type(3) {
    top: 15px;
    transform: rotate(-45deg);
  }

  .header__spContactBox .enFont {
    font-style: normal;
  }

  /*ヘッダーメニュー*/
  .spNavi {
    width: 100%;
    position: fixed;
    z-index: 1000;
    top: 50px;
  }
  .spNavi .dropmenu {
    display: none;
    /* border: 2px solid var(--color-black);
    background-color: #fff; */
    /* height: calc(100vh - 140px); */
    background: rgba(255, 255, 255, 0.95);
    height: 100vh;
    overflow-y: scroll;
    z-index: 100;
  }

  .spNavi .dropmenu .spNavi__linkBtn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1em;
  }

  .spNavi .dropmenu .spNavi__linkBtn li {
    width: 48%;
  }

  .spNavi .dropmenu .spNavi__linkBtn li a {
    display: flex;
    flex-flow: row;
    justify-content: center;
    align-items: center;
    border-radius: var(--rad-round);
    width: 100%;
    height: 50px;
    position: relative;
    font-weight: bold;
    font-size: 16px;
  }
  
  .spNavi .dropmenu .spNavi__linkBtn .spNavi__shopreserv a {
    background-color: var(--color-yellow);
    color: var(--color-black);
  }
  
  .spNavi .dropmenu .spNavi__linkBtn .spNavi__shopInfo a {
    background-color: var(--color-blue);
    color: #fff;
  }
  
  .spNavi .dropmenu .spNavi__linkBtn .spNavi__shopreserv a::before {
    content: "";
    display: inline-block;
    width: 25px;
    height: 25px;
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2232%22%20height%3D%2232%22%20fill%3D%22%23000000%22%20viewBox%3D%220%200%20256%20256%22%3E%3Cpath%20d%3D%22M208%2C32H184V24a8%2C8%2C0%2C0%2C0-16%2C0v8H88V24a8%2C8%2C0%2C0%2C0-16%2C0v8H48A16%2C16%2C0%2C0%2C0%2C32%2C48V208a16%2C16%2C0%2C0%2C0%2C16%2C16H208a16%2C16%2C0%2C0%2C0%2C16-16V48A16%2C16%2C0%2C0%2C0%2C208%2C32ZM72%2C48v8a8%2C8%2C0%2C0%2C0%2C16%2C0V48h80v8a8%2C8%2C0%2C0%2C0%2C16%2C0V48h24V80H48V48ZM208%2C208H48V96H208V208Zm-68-76a12%2C12%2C0%2C1%2C1-12-12A12%2C12%2C0%2C0%2C1%2C140%2C132Zm44%2C0a12%2C12%2C0%2C1%2C1-12-12A12%2C12%2C0%2C0%2C1%2C184%2C132ZM96%2C172a12%2C12%2C0%2C1%2C1-12-12A12%2C12%2C0%2C0%2C1%2C96%2C172Zm44%2C0a12%2C12%2C0%2C1%2C1-12-12A12%2C12%2C0%2C0%2C1%2C140%2C172Zm44%2C0a12%2C12%2C0%2C1%2C1-12-12A12%2C12%2C0%2C0%2C1%2C184%2C172Z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-size: contain;
    margin: 0 5px 0 0;
  }
  
  .spNavi .dropmenu .spNavi__linkBtn .spNavi__shopInfo a::before {
    content: "";
    display: inline-block;
    width: 25px;
    height: 25px;
    background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2232%22%20height%3D%2232%22%20fill%3D%22%23ffffff%22%20viewBox%3D%220%200%20256%20256%22%3E%3Cpath%20d%3D%22M232%2C96a7.89%2C7.89%2C0%2C0%2C0-.3-2.2L217.35%2C43.6A16.07%2C16.07%2C0%2C0%2C0%2C202%2C32H54A16.07%2C16.07%2C0%2C0%2C0%2C38.65%2C43.6L24.31%2C93.8A7.89%2C7.89%2C0%2C0%2C0%2C24%2C96h0v16a40%2C40%2C0%2C0%2C0%2C16%2C32v72a8%2C8%2C0%2C0%2C0%2C8%2C8H208a8%2C8%2C0%2C0%2C0%2C8-8V144a40%2C40%2C0%2C0%2C0%2C16-32V96ZM54%2C48H202l11.42%2C40H42.61Zm50%2C56h48v8a24%2C24%2C0%2C0%2C1-48%2C0Zm-16%2C0v8a24%2C24%2C0%2C0%2C1-35.12%2C21.26%2C7.88%2C7.88%2C0%2C0%2C0-1.82-1.06A24%2C24%2C0%2C0%2C1%2C40%2C112v-8ZM200%2C208H56V151.2a40.57%2C40.57%2C0%2C0%2C0%2C8%2C.8%2C40%2C40%2C0%2C0%2C0%2C32-16%2C40%2C40%2C0%2C0%2C0%2C64%2C0%2C40%2C40%2C0%2C0%2C0%2C32%2C16%2C40.57%2C40.57%2C0%2C0%2C0%2C8-.8Zm4.93-75.8a8.08%2C8.08%2C0%2C0%2C0-1.8%2C1.05A24%2C24%2C0%2C0%2C1%2C168%2C112v-8h48v8A24%2C24%2C0%2C0%2C1%2C204.93%2C132.2Z%22%3E%3C%2Fpath%3E%3C%2Fsvg%3E');
    background-repeat: no-repeat;
    background-size: contain;
    margin: 0 5px 0 0;
  }

  .spNavi .dropmenu .spNavi__title {
    background: var(--color-black);
    color: #fff;
    font-size: 1em;
    padding: .5em 1em;
  }

  .spNavi .dropmenu .spNavi__list {
    display: flex;
    flex-flow: row wrap;
  }

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

  .spNavi .dropmenu .spNavi__list li:nth-child(even) {
    border-right: 0;
  }

  .spNavi .dropmenu .spNavi__list li a {
    display: block;
    padding: 1.2em 0.8em 1.2em 2em;
    font-size: 12px;
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    font-weight: bold;
  }

  .spNavi .dropmenu li:last-child a {
    border-bottom: 1px solid #E0E0E0;
  }

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

  .header__spContactBox .header__spBtnWrap .header__spBtn--emember a {
    display: block;
    background: var(--color-main);
    color: #fff;
    width: 50px;
    height: 50px;
    text-align: center;
    white-space: nowrap;
    padding: 7px 0;
    line-height: 1.2;
  }

  .header__spContactBox .header__spBtnWrap .header__spBtn--login a {
    display: block;
    background: var(--color-yellow);
    color: var(--color-black);
    width: 50px;
    height: 50px;
    text-align: center;
    white-space: nowrap;
    padding: 7px 0;
    line-height: 1.2;
  }

  .header__spContactBox .header__spBtnWrap .header__spBtn--emember a i,
  .header__spContactBox .header__spBtnWrap .header__spBtn--login a i {
    font-size: 16px;
  }

  .header__spContactBox .header__spBtnWrap .header__spBtn--emember a p,
  .header__spContactBox .header__spBtnWrap .header__spBtn--login a p {
    text-align: center;
    font-size: 10px;
    font-weight: 500;
  }

  .header__spContactBox .header__spBtnWrap .header__spBtn .ph {
    display: block;
    font-size: 24px;
  }

  /* 会員ログイン後　ボタンとモーダルの内部 */
  .header__spMemberBtn {
    width: 50px;
    border: 1px solid var(--color-main);
    background: var(--color-main);
    font-size: 10px;
    text-align: center;
    display: flex;
    flex-flow: column wrap;
    align-items: center;
    justify-content: center;
    line-height: 1.4;
    color: #fff;
    font-weight: 500;
    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-main);
  }

  .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: var(--rad-round);
    padding: 15px 0;
  }

  .memberModal__closeWrap {
    padding-bottom: 20px;
  }

  .memberModal__closeBtn {
    background: #999999;
    padding: 8px 0px;
    width: 80px;
    display: block;
    color: #FFF;
    border-radius: var(--rad-round);
    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
  ==================================================*/
  .footerBnr__ttl {
    margin-top: var(--gutter-narrow);
  }

  .footerBnr__box,
  .catalogBox__item .registWrap {
    flex-flow: column wrap;
  }
 
  .footerBnr__item,
  .footerBnr__item.registBox__item,
  .footerBnr__item.reserveBox__item {
    width: 100%;
    margin-top: var(--gutter-narrow);
  }

  .footerBnr__box > *:nth-last-child(3):first-child,
  .footerBnr__box > *:nth-last-child(3):first-child ~ * {
    width: 100%;
  }

  .catalogBox__item::after {
    width: 50%;
    left: -20%;
  }

  .catalogBox__item .registWrap .btn_archive {
    min-width: 90%;
  }

  /*footFix*/
  .footFix {
    bottom: 10%;
  }

  .footFix .ancPagetop {
    bottom: 10px;
  }

  .footerBnrBox {
    padding: 5% 10px;
  }

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

  .footerBnrBox__item {
    width: 100%;
  }

  .footerBnrBox__item a {
    padding: 10px 20px;
    min-height: 60px;
    border-radius: 2px;
    flex-direction: initial;
    justify-content: flex-start;
    position: relative;
  }

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

  .footerBnrBox img,
  .footerBnrBox__item:nth-of-type(2) img,
  .footerBnrBox__item:last-of-type img {
    width: clamp(20px,8vw,80px);
  }

  .footerBnrBox__itemTtl {
    margin-top: 0;
    margin-left: 20px;
    font-size: clamp(16px,5vw,24px)
  }

  .footerSiteInfo__inner {
    flex-direction: column;
  }

  .footerSiteInfo__logo {
    margin: 0 auto;
  }

  .footerSiteInfo__logo a {
    text-align: center;
  }

  .footerSiteInfo__logo a span {
    margin: 1em 0 0;
  }

  .footerSiteInfo__company {
    width: 100%;
    padding: 1em;
    border-left: none;
  }

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

  .footerSiteInfo__btn {
    margin: 0 auto;
  }

  .footerActions {
    flex-direction: column;
    margin: 20px auto;
    width: 98%;
    overflow: hidden;
  }

  .footerActions__btnWrap {
    flex-direction: column;
    width: 100%;
    margin: 0;
  }

  .footerActions__btn {
    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: 90px;
    padding: 0 1%;
    position: fixed;
    bottom: 0;
    right: 0;
    display: block;
    align-items: center;
    justify-content: space-between;
    z-index: 99;
    background: rgba(255,255,255,.3);
  }

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

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

  .footerMenu .fixBtnList li a,
  .footerMenu .fixBtnList li .footerFixMenu__item__telBtn,
  .footerMenu .fixBtnList li .footerActions__logoutBtn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 96%;
    border-radius: var(--rad-round);
    margin: 2%;
    padding: .5em;
    /* box-shadow: 0px 0px 0px 1px rgba(255, 255, 255, .3); */
    font-weight: 600;
  }

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

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

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

  /* recaptcha */ 
  .grecaptcha-badge {
    bottom: 5px !important;
  }

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

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

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

  .footerFixMenu__tel__item p {
    text-align: center;
  }

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

  .footerActions__btnWire form {
    width: 220px;
  }

  .footerSiteInfo__btn .incomeSite a {
    max-width: 100%;
  }

  .footerRight {
    width: 100%;
  }
  
  .externalBnr__list {
    width: 100%;
    flex-flow: column wrap;
    align-items: center;
    justify-content: center;
  }

  .externalBnr__item {
    margin-top: 1em;
  }

  .footerCopy {
    font-size: 10px;
  }

  .footerSiteInfo {
    padding-bottom: 20px;
  }

  /*==================================================
    MAIN SP
  ==================================================*/
  #main {
    padding-top: 50px;
  }

  .ttlWrap {
    padding: 3em 1em 2em;
    height: auto;
  }

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

  .sectionttl {
    font-size: 18px;
  }

  .sectionttl:has(.enFont) {
    padding-left: 2.3em;
  }

  .sectionttl .enFont {
    display: block;
    font-size: 2.2em;
  }

  /*--BREAD--*/
  #bread {
    white-space: nowrap;
    overflow: hidden;
    overflow-x: scroll;
    -webkit-overflow-scrolling: auto;
  }

  #bread a,
  #bread span {
    font-size: 10px;
  }

  /*サブタイトル*/
  #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,
  .signupPage .oc_bar01,
  .signupPage .oc_bar01_open,
  .signupPage .oc_bar02,
  .memberPage .oc_bar01,
  .memberPage .oc_bar01_open,
  .memberPage .oc_bar02 {
    font-size: 1.2em;
  } */



}
