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

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

  --font-en: 'Sen', sans-serif;
  --font-num: 'Sen', 'Helvetica', sans-serif;

  --color-main: #D14070;
  --color-red: #C81B19;
  --color-orange: #FC5000;
  --color-yellow: #FED700;
  --color-lightyellow: #fff574;
  --color-ygreen: #7AC843;
  --color-green: #7AC843;
  --color-lightgreen: #afe788;
  --color-blue: #1453A8;
  --color-lightblue: #11B6F7;
  --color-purple: #662D90;
  --color-pink: #e789a8;
  --color-salmon: #ff9898;
  --color-brown: #331900;
  --color-lightbrown: #9f7c4f;
  --color-black: #222;
  --color-darkgray: #666;
  --color-gray: #ccc;
  --color-lightgray: #eee;
  --color-palegray: #f6f6f6;
  --color-palegreen: #def3d9;
  --color-paleyellow: #fffbcb;
  --color-paleorange: #fff1ed;
  --color-palepink: #ffeaf2;
  --color-lightpink: #fff3f8;

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

  --rad-common: 10px;
  --rad-inner: 8px;
  --rad-full: 50vh;
}

@media only screen and (max-width: 767px) {
  :root {
    --gutter-supernarrow: 3%;
    --gutter-narrow: 5%;
    --gutter: 8%;
    --gutter-wide: 12%;
  }
}

/*==================================================
  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);
  height: -webkit-fill-available;
}

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

body {
  font-size: 1.6rem;
  overflow-x: hidden;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  padding-top: 100px;
}

main {
  display: block;
  word-break: break-word;
  position: relative;
  min-height: 400px;
  z-index: 0;
  overflow: hidden;
}

a {
  text-decoration: none;
}

@media (any-hover:hover) {
  a {
    -webkit-transition: all .3s;
    transition: all .3s;
  }

  a:hover,
  a:active {
    text-decoration: none;
    filter: alpha(opacity=70);
    -moz-opacity: 0.7;
    opacity: 0.7;
  }
}

.yureru-s {
    animation: yureru-s 2s infinite;
}
@keyframes yureru-s {
    0% {
        transform: translate(2px, 0px);
    }
    5% {
        transform: translate(-2px, 0px);
    }
    10% {
        transform: translate(2px, 0px);
    }
    15% {
        transform: translate(-2px, 0px);
    }
    20% {
        transform: translate(2px, 0px);
    }
    25% {
        transform: translate(-2px, 0px);
    }
    30% {
        transform: translate(0px, 0px);
    }
}

/*==================================================
  COMMON
==================================================*/

.btn__assessment__3step {
  white-space: nowrap;
  width: 300px;
  height: auto;
}

.btn__assessment__3step a {
  font-size: 1.8rem;
  font-weight: 500;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  width: 100%;
  height: 100%;
  padding: 0;
  background: var(--color-main);
  border: 2px solid var(--color-main);
  transition: color 0.3s, background-color 0.3s;
  filter: drop-shadow(0 3px 0 rgba(0, 0, 0, 0.15));
  position: relative;
  transition: all 0.3s;
  margin-right: 0;
  margin-left: auto;
}

.btn__assessment__3step__catchBox {
  font-size: 0.78em;
  font-weight: bold;
  position: relative;
}

.btn__assessment__3step__catchNum {
  font-size: 2.2em;

}

.btn__assessment__3step__catchFlow {
  position: absolute;
  top: 4px;
  right: 5px;
}

.btn__assessment__3step__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.4;
  margin-left: 0.5em;
  padding-left: 0.3em;
  border-left: 1px solid rgba(255, 255, 255, 0.27);
}

.btn__assessment__3step__txt {
  font-weight: bold;
}

.btn__assessment__3step__subtxt {
  font-size: 0.67em;
  font-weight: normal;
}

.btn__assessment__3step a::after {
  position: absolute;
  content: "";
  display: block;
  background: url(../img/common/icon_arrow.svg) no-repeat 0 0 / contain;
  width: 16px;
  height: 14px;
  right: 0.5em;
  top: calc(50% - 1vh);
  transition: 0.3s;
}

@media (any-hover:hover) {
  .btn__assessment__3step a:hover {
    transform: translate(0, -3px);
    opacity: 1;
    filter: drop-shadow(0 6px 0 rgba(0, 0, 0, 0.15));
  }
}

.btn__assessment__sellersContact {
  white-space: nowrap;
  width: 300px;
  height: auto;
  aspect-ratio: 300 / 50;
}

.btn__assessment__sellersContact a {
  font-size: 1.55rem;
  font-weight: 500;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50vh;
  width: 100%;
  height: 100%;
  padding: 0;
  background: var(--color-main);
  border: 2px solid var(--color-main);
  transition: color 0.3s, background-color 0.3s;
  filter: drop-shadow(0 4px 0 rgba(0, 0, 0, 0.15));
  position: relative;
  transition: all 0.3s;
}

.btn__assessment__sellersContact img {
  height: 2.2em;
  max-width: 100%;
  object-fit: contain;
  margin-right: 0.4em;
  filter: brightness(100);
}

.btn__assessment__sellersContact__txt {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  line-height: 1.4;
}

.btn__assessment__sellersContact__txt__main {
  font-weight: bold;
}

.btn__assessment__sellersContact__txt__sub {
  font-size: 0.8em;
}

.btn__assessment__sellersContact a::after {
  content: "";
  border-left: 6px solid #fff;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  transition: 0.3s;
}


@media (any-hover:hover) {
  .btn__assessment__sellersContact a:hover {
    transform: translate(0, -3px);
    opacity: 1;
    filter: drop-shadow(0 7px 0 rgba(0, 0, 0, 0.15));
  }


}

/*==================================================
  HEADER
==================================================*/
#header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  background-color: #fff;
}

.home #header {
  background-color: transparent;
  box-shadow: none;
  transition: 0.3s;
}

.home #header.fixed{
  background: rgb(255 255 255 / 0.75);
  backdrop-filter: blur(3px);
}

#header .header__inner {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#header .header__linkBox {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-shrink: 0;
}

#header .header__h1Box {
  padding: 0.15em 0;
}

#header h1 {
  width: min(1200px, 96%);
  font-size: 1.2rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin: 0 auto;
  color: #666;
  text-align: right;
}

#header .header__infoBox__inner {
  display: flex;
  align-items: flex-end;
  margin-bottom: 5px;
  gap: 30px;
}

#header .header__logo {
  max-height: 60px;
  aspect-ratio: 264 / 63;
}

#header .header__logo__company {
  margin: 0 2% 0 1%;
  width: 140px;
}

#header .header_area {
  border-bottom: 2px solid var(--color-black);
  margin-bottom: .4em;
}

#header .header_area .arealink {
  position: relative;
  padding-right: 1.5em;
  font-size: clamp(1.2rem, 1.2vw, 1.5rem);
  font-weight: bold;
}

#header .header_area .arealink::after {
  position: absolute;
  content: "";
  display: block;
  background: url(../img/common/icon_arrow_black.svg) no-repeat 0 0 / contain;
  width: 15px;
  height: 13px;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
}

@media (any-hover: hover) {
  #header .header_area .arealink:hover {
    opacity: 1;
  }

  #header .header_area .arealink:hover::after {
    right: -.25em;
  }
}

.header__linkBox__list {
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-right: 30px;
  font-weight: bold;
}

@media (any-hover:hover) {
  .header__linkBox__list a:hover {
    color: var(--color-main);
    opacity: 1;
  }
}

/*btn*/
.header__btnList {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0;
}

/* header.fixed */
#header.fixed {
  position: fixed;
}

#header.fixed .header__h1Box {
  display: none;
}

#header.fixed .header__inner {
  align-items: center;
}

#header.fixed .header__logo {
  height: 40px;
  padding: 2px 0;
}

#header.fixed .header__logo img {
  height: 100%;
}

#header.fixed .header__logo__company {
  width: 100px;
}

#header.fixed .header__btnList {
  padding: 0;
}




/*==================================================
  FOOTER
==================================================*/
#footer {
  width: 100%;
  margin-top: var(--gutter);
  background: var(--color-lightgray);
}

.footer__shoprsv {
  display: flex;
  min-height: 580px;
  background: #fff;
}

.footer__shoprsv__imgBox {
  width: 50%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

.footer__shoprsv__img {
  height: 100%;
  max-height: 480px;
}

.footer__shoprsv__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 0 2rem 0;
  overflow: hidden;
}

.footer__shoprsv__imgBox__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  width: 100%;
  padding: 15px;
  gap: 5px;
  border-bottom: 2px solid var(--color-main);
  position: relative;
}

.footer__shoprsv__imgBox__txtBox {
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  flex-direction: column;
  gap: 5px;
}

.footer__shoprsv__txtBox {
  width: 50%;
  background-color: var(--color-main);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  font-size: clamp(1.4rem, 1.3vw, 1.8rem);
  padding: var(--gutter) 0;
  padding-right: clamp(50px, 15vw, 100px);
}


.footer__shoprsv__imgBox__subtxtBox {
  font-size: clamp(1.4rem, 1.4vw, 1.8rem);
  font-weight: bold;
  color: #fff;
  line-height: 1.2;
  display: flex;
  width: 100%;
  gap: 5px;
  justify-content: center;
}

.footer__shoprsv__imgBox__subtxt {
  background-color: var(--color-main);
  padding: 5px;
  width: 60%;

}

.footer__shoprsv__imgBox__subtxt:first-of-type {
  width: 40%;
}

.footer__shoprsv__imgBox__maintxt {
  font-size: clamp(2rem, 2vw, 3.6rem);
  font-weight: bold;
  color: var(--color-main);
  line-height: 1;
}

.footer__shoprsv__imgBox__maintxt .font_en {
  font-size: 1.4em;
}

.footer__shoprsv__imgBox__quo {
  max-width: 20%;
  filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.2));
}

.footer__shoprsv__icon-lifuku {
  filter: brightness(100);
  margin-bottom: 10px;
}

.footer__shoprsv__mainttl {
  font-size: 1.6em;
  font-weight: bold;
  line-height: 1.4;
}

.footer__shoprsv__area {
  font-size: 1.8em;
}

.footer__shoprsv__appraisal {
  font-size: 1.3em;
}

.footer__shoprsv__logo {
  display: inline-block;
  background: #fff;
  padding: 5px;
  width: 114px;
  margin-right: 5px;
}


.footer__shoprsv__list {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
  gap: 10px;
}

.footer__shoprsv__listBox {
  position: relative;

}

.footer__shoprsv__listBox::after {
  content: "";
  background: url(../img/common/footer_shoprsv_pro.webp) no-repeat center / cover;
  width: clamp(100px, 13vw, 212px);
  height: auto;
  aspect-ratio: 212 / 203;
  display: block;
  position: absolute;
  top: 70px;
  left: clamp(280px, 28.5vw, 320px);
}


.footer__shoprsv__item {
  width: 93px;
  height: auto;
  aspect-ratio: 93 / 40;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  font-size: 1em;
}

.footer__shoprsv__txt {
  font-size: 1em;
  text-align: center;
}


.footer__shoprsv__btn {
  width: 420px;
  height: auto;
  aspect-ratio: 420 / 94;
  margin-top: 20px;
  max-width: 80%;
}

.footer__shoprsv__btn a {
  border: 2px solid var(--color-main);
  background-color: #fff;
  color: var(--color-main);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 1.5em;
  position: relative;
}

.footer__shoprsv__btn img {
  height: 1em;
  margin-right: 0.5em;
  margin-top: 0.15em;
}

.footer__shoprsv__btn a::after {
  position: absolute;
  content: "";
  display: block;
  background: url(../img/common/icon_arrow_color.svg) no-repeat 0 0 / contain;
  width: 22px;
  height: 20px;
  right: 1em;
  top: calc(50%);
  transform: translateY(-50%);
  transition: right 0.3s;
}

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


  .footer__shoprsv__btn a:hover img {
    filter: brightness(100);
  }

  .footer__shoprsv__btn a:hover::after {
    background: url(../img/common/icon_arrow.svg) no-repeat 0 0 / contain;
    right: 16px;
  }

}


#footer .footer__inner {
  padding: var(--gutter-wide) 0;
  width: 30%;
}

#footer .footer__logo {
  display: flex;
  align-items: flex-end;
  max-width: 197px;
  aspect-ratio: 394 / 146;
}

#footer .footer__infoBox {
  background: linear-gradient(to bottom, #fff, #fff 50%, transparent 50%, transparent)
}

#footer .footer__infoBox__inner {
  border: 2px solid var(--color-lightgray);
  border-radius: 1rem;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--gutter-narrow) 2rem;
  gap: 100px;
}

#footer .footer__shopWrap {
  width: 70%;
  display: grid;
  gap: 30px;
}

#footer .footer__shopDetail {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#footer .footer__shopInfo {
  width: 34%;
}

#footer .footer__shopName {
  color: var(--color-main);
  font-weight: bold;
}

#footer .footer__company__address {
  font-size: 1.5rem;
  line-height: 1.2;
}

/* tel */
#footer .footer__company__tel {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  width: calc((100% - 34%) - 30px);
}

#footer .footer__company__tel__icon {
  display: flex;
  align-items: center;
  margin-right: 5px;
}

#footer .footer__company__tel__icon img {
  width: clamp(20px, 2.4vw, 24px);
}

#footer .footer__company__tel__num {
  font-family: var(--font-num);
  font-weight: bold;
  font-size: clamp(3rem, 3.8vw, 4rem);
}

#footer .footer__company__tel__time {
  font-size: clamp(1.3rem, 2vw, 1.5rem);
  font-feature-settings: "palt";
  display: flex;
  align-items: flex-end;
  padding-bottom: 0.2em;
}

#footer .footer__navBox {
  background: #fff;
  padding: var(--gutter-wide) 0;
}

#footer .footnavi__btnList {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--gutter);
}

#footer .footnavi__btn a {
  font-size: 1.6rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  color: var(--color-main);
}

#footer .footnavi__btn.shop-reserve {
  margin: 0 5rem;
}

#footer .footnavi__btn__icon {
  width: 40px;
  height: 40px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin-right: 7px;
  background-color: var(--color-main);
  border: 2px solid var(--color-main);
  transition: 0.3s;
}

#footer .footnavi__btn__icon img {
  filter: brightness(100);
}

#footer .footnavi__btn__icon.shop-reserve img,
#footer .footnavi__btn__icon.contact img {
  width: 20px;
}


/* footer__social */
#footer .footer__social {
  display: flex;
  justify-content: center;
}

#footer .footer__social li {
  width: 32px;
  height: 32px;
  margin: var(--gutter) 10px 0;
}

/* footer__linkBox */
.footer__linkBox {
  margin: var(--gutter) auto 0;
  text-align: center;
}

.footer__linkBox__ttl {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  padding: 0 55px;
}

.footer__linkBox__ttl:before,
.footer__linkBox__ttl:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 45px;
  height: 1px;
  background-color: var(--color-black);
}

.footer__linkBox__ttl:before {
  left: 0;
}

.footer__linkBox__ttl:after {
  right: 0;
}

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

.footer__linkBox__item {
  width: 288px;
  max-width: 70%;
  border: 1px solid var(--color-gray);
}

@media (any-hover:hover) {
  #footer .footnavi__btn a:hover {
    opacity: 1;
  }

  #footer .footnavi__btn a:hover .footnavi__btn__icon {
    background-color: #fff;

  }

  #footer .footnavi__btn a:hover .footnavi__btn__icon img {
    filter: none;
  }
}

/* footer__bottom */
#footer .footer__bottom {
  background: var(--color-gray);
  text-align: center;
  width: 100%;
  padding: 20px 0;
}

#footer .footer__bottom__itemList {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#footer .footer__bottom__item {
  padding: 0 clamp(1em, 2vw, 2em);
  line-height: 1;
  font-size: clamp(1.3rem, 2vw, 1.4rem);
}

#footer .footer__bottom__item:nth-of-type(2) {
  border-right: 1px solid var(--color-black);
  border-left: 1px solid var(--color-black);
}

#footer address {
  font-style: normal;
  font-size: clamp(1.2rem, 2vw, 1.3rem);
}

/*pagetop*/
#footFix {
  z-index: 100;
  position: fixed;
  bottom: 120px;
  right: 0;
  width: 60px;
  height: 60px;
}

#footFix .ancPagetop a {
  color: #fff;
  text-align: center;
  background: var(--color-darkgray);
  border-radius: var(--rad-common) 0 0 var(--rad-common);
  opacity: .8;
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  padding-top: 20px;
  font-size: 14px;
  letter-spacing: 1px;
  font-family: var(--font-en);
  transition: 0.3s;
}

#footFix .ancPagetop a::before {
  position: absolute;
  content: "";
  display: block;
  background: url(../img/common/icon_arrow.svg) no-repeat 0 0 / contain;
  width: 16px;
  height: 14px;
  left: 50%;
  top: 12px;
  transform: translateX(-50%) rotate(-90deg);
  transition: 0.3s;
}

@media (any-hover: hover) {
  #footFix .ancPagetop a:hover {
    opacity: 1;
  }

  #footFix .ancPagetop a:hover::before {
    top: 8px;
  }
}

/*==================================================
  sideFix
==================================================*/
.sideFixBnrBox {
  position: fixed;
  top: 20%;
  right: 0;
}

.sideFixBnr_reserve {
  width: 231px;
  position: relative;
  border-radius: 10px 0 0 10px;
  background: #fff;
  border: 1px solid #fff;
  border-right: none;
}

.sideFixBnr_close {
  position: absolute;
  top: -10px;
  right: 5px;
  width: 22px;
  height: 22px;
  border-radius: 22px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 1px 0 rgba(0, 0, 0, .2);
}

@media (any-hover: hover) {
  .sideFixBnr_close:hover {
    opacity: 1;
    cursor: pointer;
  }
}


/* reCAPTCHA */
.grecaptcha-badge {
  bottom: 40px !important;
}


/*==================================================
  MAIN
==================================================*/
/*************** メインタイトル ****************/
.ttlWrap {
  height: 200px;
  text-align: center;
  background: #f7f7f7 url(../img/common/mainTtl_bg.webp) no-repeat left -20px center;
  background-size: auto 150%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-bottom: 80px;
}

.mainTtl {
  font-size: clamp(2.6rem, 4vw, 4rem);
  font-weight: 800;
  line-height: 1.4;
}


/*--BREAD--*/
#bread {
  width: min(var(--width-content), 100%);
  margin: 0 auto;
  padding: 5px 0;
  font-size: 1.3rem;
  position: absolute;
  top: 200px;
  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,
#bread>span>[property="name"] {
  display: inline-block;
  margin-right: 5px;
  padding-left: 5px;
}

#bread a:hover {
  text-decoration: none;
}

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

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

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

/*サブタイトル*/
#main .secTtl {
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  font-weight: bold;
  line-height: 1.3;
  text-align: center;
  margin: var(--gutter) auto var(--gutter-narrow);
  padding: 0.5em 0;
  border-bottom: 4px double var(--color-black);
}

#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,
.oc_bar02,
.srchbox01 .selectbox01 .selectbox_ttl,
.srchbox01 .selectbox01 .selectbox_ttl_open,
.srchbox01 .selectbox01 h3 {
  cursor: pointer;
  font-size: 1.6em;
  font-weight: bold;
}

.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 .blogPage 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::before {
  left: 0;
}

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

.slick-next,
.slick-prev {
  z-index: 99 !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: 16px !important;
  height: 16px !important;
  background: #999 !important;
  border-radius: 8px;
  opacity: 1 !important;
}

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

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



/*
  ===== contentsBox ==========================================
  */
.contentsBox {
  margin: 60px auto 80px;
  padding: 50px 0 60px;
  text-align: center;
  overflow: hidden;
}

.contentsBox__inner {
  position: relative;
}

.contentsBox__ttl {
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  font-weight: bold;
  color: var(--color-main);
  text-align: center;
  line-height: 1.2;
  position: relative;
  display: block;
}

.contentsBox__ttl:before {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 100%;
  height: 2px;
  background-color: var(--color-main);
}

.contentsBox__ttl:before {
  left: 0;
}

.contentsBox__mainttl {
  background-color: #fff;
  z-index: 1;
  position: relative;
  padding: 0 10px
}

.contentsBox__subttl {
  font-family: var(--font-en);
  font-weight: bold;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--color-black);
  position: absolute;
  top: -1.3em;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.contentsBox__txt {
  font-size: clamp(1.55rem, 2vw, 2rem);
  text-align: center;
  margin: var(--gutter) auto;
}

.contentsBox__item {
  display: inline-block;
  width: min(48%, 585px);
}

.contentsBox__item a {
  display: block;
  aspect-ratio: 585 / 210;
  overflow: hidden;
  border: 1px solid var(--color-main);
  border-radius: 5px;
}

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

.contentsBox__item:not(:last-of-type) {
  margin: 0 clamp(10px, 3vw, 20px);
}

#contentsBoxArrows {
  width: min(98%, 1280px);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: space-between;
  z-index: 2;
  pointer-events: none;
}

#contentsBoxArrows img {
  transition: 0.3s;
  cursor: pointer;
  pointer-events: auto;
}

@media (any-hover:hover) {
  #contentsBoxArrows img:hover {
    opacity: 0.6;
  }
}

.contentsBox .slick-dots {
  bottom: -55px;
  left: 0;
}

/*
    ===== attentionBox ==========================================
    */
.attentionBox {
  text-align: center;
  margin: var(--gutter) auto;
  font-size: clamp(1.2rem, 1.6vw, 1.4rem);
}

.attentionBox__ttl {
  font-weight: bold;
  color: var(--color-main);
  margin-bottom: 1em;
}

.attentionBox__list {
  font-weight: bold;
  display: inline-flex;
  flex-direction: column;
  text-align: left;
  margin: 1em auto;
}

.attentionBox__annotation {
  font-size: 0.9em;
}


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

  /*==================================================
    HEADER PC/TABLET
  ==================================================*/
  #header {
    height: 100px;
  }

  #header.fixed {
    height: 60px;
  }

  #header.fixed .btn__assessment__3step a {
    font-size: 1.6rem;
    padding: 0;
    width: 270px;
  }

  #header.fixed .btn__assessment__sellersContact a {
    height: 40px;
    font-size: 1.5rem;
  }

  #header.fixed .btn__assessment__3step__txt,
  #header.fixed .btn__assessment__sellersContact__txt {
    line-height: 1.2;
  }

  #header.fixed .header__linkBox__list {
    margin-right: 0;
  }

  #header.fixed .header__infoBox__inner {
    margin: 10px 0;
  }

  /*==================================================
    FOOTER PC/TABLET
  ==================================================*/
  /*footernavi*/
  #footer .footnavi {
    display: flex;
    justify-content: center;
    font-size: clamp(1.2rem, 1.6vw, 1.4rem);
  }

  #footer .footnavi__itemList {
    margin-left: 2em;
  }

  #footer .footnavi__itemList:first-of-type {
    margin-left: 0;
  }

  #footer .footnavi__itemList li {
    line-height: 1.2;
    margin-bottom: 1.5rem;
  }

  #footer .footnavi__itemList li:last-of-type {
    margin-bottom: 0;
  }

  #footer .footnavi__itemList li a {
    text-decoration: none;
  }

  #footer .footnavi__itemList li a:hover {
    text-decoration: underline;
  }

}

/*==================================================
  TABLET SETTINGS : Max1026px Min767px
==================================================*/
@media print,
screen and (max-width: 1026px) and (min-width: 767px) {

  .footer__shoprsv {
    min-height: auto;
  }

  .footer__shoprsv__imgBox__subtxt {
    font-size: clamp(1.4rem, 1.8vw, 1.6rem);
  }

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

  .footer__shoprsv__imgBox__quo {
    position: absolute;
    top: -6vw;
    right: 2%;
    width: 20%;
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.3));
  }

  .footer__shoprsv__txtBox {
    padding: var(--gutter) 0;
  }

  .footer__shoprsv__listBox::after {
    width: 90px;
    top: 67px;
    left: 240px;
  }

  .footer__shoprsv__txt {
    font-size: 13px;
    text-align: left;
    margin-right: clamp(80px, 12vw, 100px);
    margin-left: 10px;
  }

  .footer__shoprsv__mainttl {
    font-size: 1.8em;
  }

}

/*==================================================
  TABLET SETTINGS : Max1000px Min767px
==================================================*/
@media print,
screen and (max-width: 1000px) and (min-width: 767px) {
  #header .header__logo {
    width: 93%;
  }

  #header .header__logo img {
    width: 100%;
  }

  #header .header_area {
    display: none;
  }

  .btn__assessment__3step {
    width: 260px;
    margin-left: 1rem;
  }

  .btn__assessment__3step a {
    width: 260px;
    font-size: 1.6rem;
  }

  .header__linkBox__list {
    font-size: clamp(1.2rem, 1.2vw, 1.3rem);
    gap: 15px;
    margin-right: 10px;
  }

  #footer .footer__logo {
    flex-wrap: wrap;
  }

  #footer .footer__logo__company {
    padding: 2% 0;
    width: 45%;
  }

  #footer .footnavi__itemList {
    margin-left: 1em;
  }

  #footer .footnavi {
    font-size: 1.1rem;
  }

}


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

  /*==================================================
    HEADER SP
  ==================================================*/
  #header {
    width: 100%;
    height: 80px;
    background: rgb(255 255 255 / 0.75);
    
  }

  #header.fixed,
  #header:has(.navWrap.active) {
    height: inherit;
    backdrop-filter: blur(3px);
  }

  #header .header__infoBox__inner {
    margin-right: 5%;
    margin-bottom: 0;
  }

  #header .header__inner {
    height: 54px;
    align-items: center;
  }

  /*固定btn*/
  #header .header__btn__item {
    font-size: clamp(1rem, 3vw, 1.2rem);
  }

  #header .header__btn__item.assessment a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 8em;
    height: 35px;
    line-height: 1.2;
    color: #fff;
    border-radius: 1rem;
    padding: 0 10px;
    box-sizing: border-box;
  }

  #header .header__btn__item__icon {
    height: 65%;
    margin-right: 3px;
  }

  #header .header__btn__item__icon img {
    height: 100%;
    max-width: 17px;
  }


  /*ハンバーガーボタン*/
  .header__btn__item.spmenu {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .spmenu__btn {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
    position: relative;
    width: 28px;
    height: 18px;
    margin-top: -10px;
  }

  .spmenu__btn span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-black);
  }

  .spmenu__btn span:nth-child(1) {
    top: 0;
  }

  .spmenu__btn span:nth-child(2) {
    top: 8px;
  }

  .spmenu__btn span:nth-child(3) {
    bottom: 0;
  }

  .spmenu__btn::after {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: -16px;
    content: 'MENU';
    display: block;
    color: var(--color-black);
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    transition: all .4s;
    font-family: var(--font-en);
    letter-spacing: 0.1em;
  }

  .spmenu__btn.active::after {
    content: 'CLOSE';
    bottom: -16px;
    text-align: center;
  }

  .spmenu__btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(-45deg);
  }

  .spmenu__btn.active span:nth-child(2) {
    opacity: 0;
  }

  .spmenu__btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(45deg);
  }


  /*ハンバーガーメニュー内*/
  .header__navWrap__itemList {
    display: flex;
    justify-content: center;
  }

  .header__navWrap__item {
    padding: 0 1em;
    line-height: 1;
    font-size: 1.4rem;
  }

  .header__navWrap__item:nth-child(2) {
    border-right: 1px solid #ccc;
    border-left: 1px solid #ccc;
  }

  .header__spBtn .header__btn__itemList {
    display: flex;
    align-items: center;
  }

  .header__spBtn .header__btn__itemList .assessment a {
    background-color: var(--color-main);
  }

  .header__btnList {
    margin: var(--gutter-narrow) auto;
    padding: 0;
  }

  .btn__assessment__3step,
  .btn__assessment__sellersContact {
    width: 100%;
  }

  .btn__assessment__3step a {
    font-size: 2rem;
  }

  .btn__assessment__sellersContact a {
    font-size: clamp(1.5rem, 4.5vw, 1.8rem);
  }

  /*navi*/
  #header .navWrap {
    display: none;
    padding: var(--gutter-narrow);
    height: calc(100vh - 54px);
    overflow-y: scroll;
  }


  /*spnavi*/
  #header .spnavi {
    margin-top: 10px;
    background: #fff;
  }

  #header .spnavi__itemList {
    display: flex;
    flex-wrap: wrap;
    border: 2px solid #ccc;
    border-bottom: 1px solid #ccc;
  }

  #header .spnavi__itemList li {
    width: 50%;
    font-size: 1.3rem;
    border-bottom: 1px solid var(--color-lightgray);
  }

  #header .spnavi__itemList li:nth-of-type(odd) {
    border-right: 1px solid var(--color-lightgray);
  }

  #header .spnavi__itemList li a {
    display: block;
    padding: 10px;
  }

  /* header.fixed */
  #header.fixed {
    box-shadow: 0 -1px 4px rgba(0, 0, 0, 0.5);
  }

  #header.fixed .header__logo {
    height: auto !important;
  }

  #header .header__logo img,
  #header.fixed .header__logo img {
    max-height: 45px;
  }


  /*==================================================
    FOOTER SP
  ==================================================*/
  .footer__shoprsv {
    flex-direction: column;
  }

  .footer__shoprsv__imgBox {
    width: 100%;
  }

  .footer__shoprsv__imgBox__subtxt {
    font-size: clamp(1.2rem, 3.6vw, 1.8rem);
  }

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

  .footer__shoprsv__imgBox__quo {
    position: absolute;
    top: -12vw;
    right: 1%;
    width: 20%;
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.3));
  }

  .footer__shoprsv__txtBox {
    width: 100%;
    padding: var(--gutter) 0;
    overflow: hidden;
  }

  .footer__shoprsv__listBox {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 5%;
  }

  .footer__shoprsv__list {
    flex-direction: column;
  }

  .footer__shoprsv__listBox::after {
    position: relative;
    top: 0;
    left: 0;
    width: 140px;
  }

  .footer__shoprsv__mainttl {
    font-size: 1.65em;
  }

  .footer__shoprsv__btn a {
    font-size: 1.8rem;
  }

  #footer .footer__infoBox__inner {
    flex-direction: column;
    gap: 15px;
  }

  #footer .footer__logo {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }

  #footer .footer__logo a {
    max-width: 90%;
  }

  #footer .footer__logo .footer__logo__company {
    width: 50%;
    padding: 3% 0 2%;
  }

  #footer .footer__company__address {
    text-align: center;
    margin: 3% auto;
  }

  #footer .footer__shopDetail {
    display: block;
  }

  #footer .footer__shopWrap,
  #footer .footer__shopInfo,
  #footer .footer__company__tel {
    width: 100%;
  }

  #footer .footer__shopWrap {
    gap: 20px;
  }

  #footer .footer__shopName {
    text-align: center;
  }

  #footer .footer__navBox {
    width: 100%;
    padding: var(--gutter-narrow) 0;
  }

  #footer .footnavi__btnList {
    margin: 0 auto;
    width: 80%;
    max-width: 300px;
    flex-direction: column;
  }

  #footer .footnavi__btn {
    display: flex;
    width: 100%;
  }

  #footer .footnavi__btn.shop-reserve {
    margin: 2% auto;
  }

  #footer .footnavi__btn a {
    border-radius: 50vh;
    color: #fff;
    position: relative;
    width: 100%;
    padding: 10px;
    background: var(--color-main);
  }

  #footer .footnavi__btn__icon {
    border: none;
    width: 30px;
    height: 30px;
  }

  #footer .footnavi__btn__icon::after {
    display: none;
  }

  #footer .footer__company__tel a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
  }

  #footer .footer__company__tel__icon img {
    width: clamp(24px, 6.4vw, 36px);
  }

  #footer .footer__company__tel__num {
    font-size: clamp(1.6rem, 10vw, 5rem);
  }

  #footFix {
    bottom: 86px;
  }

  /* reCAPTCHA */
  .grecaptcha-badge {
    bottom: 2px !important;
  }

  /* footer__bottom */
  #footer .footer__bottom {
    padding: 15px 0 125px;
  }


  /*フッター固定メニュー*/
  .footerFixMenu {
    height: 58px;
  }

  .footerFixMenu__itemList {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 58px;
    display: flex;
    background: #fff;
  }

  .footerFixMenu__item {
    width: calc(100% / 5);
    box-shadow: inset -1px 0 0 0 #ccc;
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1.2;
    border-top: 1px solid var(--color-black);
  }

  .footerFixMenu__item:last-of-type {
    box-shadow: none;
  }

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

  .footerFixMenu__item a::before,
  .footerFixMenu__item .footerFixMenu__item__telBtn::before {
    content: "";
    display: block;
    width: 4em;
    height: 4em;
    margin: 5px;
  }

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

  /*アイコン設定*/
  .footerFixMenu__item.assessment a::before {
    background: url('../img/common/icon_calculator_white.svg') no-repeat center / contain;
    filter: brightness(100);
  }

  .footerFixMenu__item.shop-reserve a::before {
    background: url('../img/common/icon_calendar_black.svg') no-repeat center / contain;
  }

  .footerFixMenu__item.shops a::before {
    background: url('../img/common/icon_shop_black.svg') no-repeat center / contain;
  }

  .footerFixMenu__item.event a::before {
    background: url('../img/common/icon_fleg_black.svg') no-repeat center / contain;
  }

  .footerFixMenu__item.tel a::before {
    background: url('../img/common/icon_tel_black.svg') no-repeat center / contain;
  }

  .footFixBtnBox {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 2%;
    left: 0;
    width: 100%;
    z-index: 999;
  }

  .footFixBtn {
    width: 96%;
    position: relative;
    max-width: 400px;
    margin: 0 auto;
  }

  .footFixBtn.btn__assessment__3step a {
    font-size: clamp(1.8rem, 5.6vw, 2rem);
    border: 1px solid #fff;
  }

  .footFixBtn.btn__assessment__sellersContact a {
    font-size: clamp(1.6rem, 5vw, 1.8rem);
  }

  /*==================================================
    MAIN SP
  ==================================================*/
  .ttlWrap {
    height: 120px;
    margin: 0 0 60px;
  }

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


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


  /*
  ===== contentsBox ==========================================
  */
  .contentsBox {
    margin: var(--gutter) auto;
  }

  .contentsBox__list {
    height: auto;
  }

  .contentsBox__item {
    max-width: 80vw;
  }

  .contentsBox .slick-dots {
    bottom: -40px;
  }

  /*
  ===== attentionBox ==========================================
  */
  .attentionBox {
    text-align: left;
  }

  .attentionBox__list {
    margin: var(--gutter-narrow) auto;
  }
}
