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

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

  --color-main: #004680;
  --color-red: #FA8030;
  --color-orange: #FA8030;
  --color-yellow: #FEE000;
  --color-ygreen: #8ECC11;
  --color-green: #8ECC11;
  --color-blue: #004680;
  --color-lightblue: #E1F0F9;
  --color-navy: #153BB8;
  --color-purple: #662D90;
  --color-pink: #f72b80;
  --color-salmon: #ff9898;
  --color-black: #222;
  --color-white: #fff;
  --color-darkgray: #666;
  --color-gray: #B6BFC6;
  --color-lightgray: #ccc;
  --color-palegray: #F5F5F5;
  --color-palegreen: #F1F9EF;
  --color-paleorange: #FAF4ED;
  --color-bluegray: #6FA5C8;

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

  --rad-common: 5px;
  --rad-full: 100px;
  
  --font-en: "Roboto", sans-serif;

  --font-12: clamp(1.2rem, 2vw, 1.2rem);
  --font-14: clamp(1.4rem, 2vw, 1.4rem);
  --font-16: clamp(1.5rem, 2vw, 1.6rem);
  --font-18: clamp(1.6rem, 2vw, 1.8rem);
  --font-20: clamp(1.8rem, 2vw, 2rem);
  --font-22: clamp(1.9rem, 2vw, 2.2rem);
  --font-24: clamp(2rem, 2vw, 2.4rem);
  --font-26: clamp(2.2rem, 2vw, 2.6rem);
  --font-28: clamp(2.3rem, 2vw, 2.8rem);
  --font-30: clamp(2.4rem, 2vw, 3rem);
}

@media only screen and (max-width: 767px) {
  :root {
    --gutter-supernarrow: 10px;
    --gutter-narrow: 15px;
    --gutter: 25px;
    --gutter-wide: 35px;
    --gutter-superwide: 60px;
  }
}

@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);
  -webkit-tap-highlight-color: initial;
}

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

body {
  font-size: 1.4rem;
  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;
}

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

/* ホバー下線 */
@keyframes leadLine {
  0%, 100% {
    transform: scaleX(0);
  }

  35%, 75% {
    transform: scaleX(1);
  }
}

.underline {
  background: linear-gradient(transparent 70%, var(--color-yellow) 70%);
}

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

.header__inner {
  max-width: var(--width-content);
  margin: 0 auto;
}

.header__txt {
  font-size: clamp(1rem, 2vw, 1.1rem);
  margin-bottom: 2px;
}

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

.header__left {
  width: 30%;
}

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

.header__right {
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  align-items: center;
  gap: 3rem;
}

/* globalnavigation */
.pcNavi__list {
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.pcNavi__item>a {
  display: block;
  width: 100%;
  text-align: center;
  font-weight: bold;
  font-size: var(--font-18);
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.5s ease;
}

@media (any-hover:hover) {
  .pcNavi__item>a:hover {
    color: var(--color-blue);
    opacity: 1;
    transition: all 0.5s ease;
    position: relative;
    display: inline-block;
  }
  .pcNavi__item>a:hover::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 2px;
    background: var(--color-blue);
    transform: scaleX(0);
    transform-origin: left;
    animation: leadLine 1s ease-in-out infinite;
  }
}

/* btn */
.header__btn {
  width: 200px;
}

.header__btn a {
  background: var(--color-orange);
  color: var(--color-white);
  display: flex;
  align-items: center;
  width: 200px;
  text-align: center;
  padding: 4px;
  border: 1px solid var(--color-orange);
  border-radius: var(--rad-common);
  text-decoration: none;
  line-height: 1;
  font-weight: 500;
  position: relative;
  transition: all 0.5s ease;
}

.header__btn--bubble {
  position: absolute;
  left: 50%;
  top: -20px;
  transform: translateX(-50%);
  min-width: 120px;
  padding: 6px 14px;
  background: #fff;
  border: 1px solid var(--color-orange);
  border-radius: var(--rad-common);
  font-size: 11px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  color: var(--color-black);
}

.header__btn--bubble::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -7px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 6px 0 6px;
  border-color: var(--color-orange) transparent transparent transparent;
}

.header__btn--bubble::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 5px 0 5px;
  border-color: var(--color-white) transparent transparent transparent;
}

.header__btn--free {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-right: 12px;
  background: var(--color-yellow);
  border-radius: var(--rad-common);
  color: var(--color-black);
  font-size: var(--font-14);
  font-weight: bold;
  line-height: 1;
  flex-shrink: 0;
}

.header__btn--text {
  color: var(--color-white);
  font-size: var(--font-18);
  font-weight: bold;
  line-height: 1;
  white-space: nowrap;
}

@media (any-hover:hover) {
  .header__btn a:hover {
    opacity: 1;
    background: var(--color-white);
    color: var(--color-orange);
    transition: all 0.5s ease;
  }
  .header__btn a:hover::after {
    border-color: var(--color-orange);
  }
  .header__btn a:hover .header__btn--text {
    color: var(--color-orange);
  }
}

/* 矢印 */
.header__btn a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  width: 7px;
  height: 7px;
  border-top: 1px solid var(--color-white);
  border-right: 1px solid var(--color-white);
  transform: translateY(-50%) rotate(45deg);
}

/*
  ===== fixed ==========================================
  */
.header.fixed {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10000;
  background: rgba(255, 255, 255, 0.97);
  padding: 10px 10px 8px;
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.2));
  animation: header-slidein 0.3s;
}

.header.fixed .header__btn {
  margin-top: 10px;
}

.header.fixed .header__logo a {
  max-width: 240px;
}

.header.fixed .header__btn--free {
  width: 35px;
  height: 35px;
}

.header.fixed .pcNavi__item>a {
  font-size: var(--font-16);
}

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

  100% {
    transform: translateY(0);

  }
}

/*==================================================
  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 .ancPagetop a {
  color: var(--color-white);
  text-align: center;
  border: 1px solid var(--color-white);
  background: var(--color-blue);
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  padding-top: 30px;
  width: 60px;
  height: 60px;
  font-size: 1.6rem;
  letter-spacing: .05em;
  border-radius: var(--rad-common);
}
.footFix .ancPagetop a::before {
  content: '';
  position: absolute;
  top: 18px;
  pointer-events: none;
  width: 10px;
  height: 10px;
  border-top: 3px solid var(--color-white);
  border-right: 3px solid var(--color-white);
  transform: rotate(-45deg);
}

.footFix span {
  font-family: var(--font-en);
}

#footer {
  background: var(--color-lightblue);
  margin-top: var(--gutter-wide);
}

.footer__inner {
  padding: clamp(5rem, 6vw, 10rem) 0 clamp(2rem, 6vw, 4rem);
}

.footer__linkTop {
  display: flex;
  justify-content: space-between;
  margin-bottom: var(--gutter-wide);
}

/*店舗情報*/
.footer__shopList {
  width: min(95%, 550px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(1.3rem, 2.3vw, 2rem);
}

.footer__shopItem {
  display: flex;
  align-items: flex-start;
  align-self: stretch;
  gap: clamp(1rem, 2.3vw, 1.5rem);
}

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

.footer__shopImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--rad-common);
}

.footer__shopInfo {
  line-height: 1;
}

.footer__shopName {
  color: var(--color-blue);
  font-size: var(--font-18);
  font-weight: bold;
  margin-bottom: 8px;
  letter-spacing: .05em;
}

.footer__telNum {
  font-size: var(--font-16);
  font-family: var(--font-en);
  font-weight: bold;
  margin-bottom: 5px;
  padding-left: 20px;
  position: relative;
}

.footer__telNum::before {
  content: "";
  position: absolute;
  background: url(../img/common/icon_tel.svg) no-repeat center / contain;
  width: 16px;
  height: 15px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.footer__telNum--number {
  font-size: clamp(2rem, 2.5vw, 2.2rem);
}

.footer__shopAddress,
.footer__shopTime {
  font-size: var(--font-14);
  font-weight: 500;
  margin-bottom: 5px;
}

.footer__shopAddress,
.footer__shopTime {
  line-height: 1.4;
}

/* SNS */
.footer__snsBox {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.snsBox__item {
  width: 50px;
}

/*フッターリンク*/
.footer__linkBox {
  width: min(90%, 470px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3rem;
  padding-top: 15px;
}

/* ボタン */
.contactBox__btnWrap {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.contactBox__item {
  position: relative;
  width: 230px;
}

.contactBox__subTtl {
  position: absolute;
  left: 50%;
  top: -20px;
  transform: translateX(-50%);
  min-width: 120px;
  padding: 6px 14px;
  background: #fff;
  border: 1px solid var(--color-blue);
  border-radius: var(--rad-common);
  font-size: 11px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  color: var(--color-black);
}

.contactBox__subTtl::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -7px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 6px 0 6px;
  border-color: var(--color-blue) transparent transparent transparent;
}

.contactBox__subTtl::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 5px 0 5px;
  border-color: var(--color-white) transparent transparent transparent;
}

.contactBox__item a {
  background: var(--color-blue);
  border: 1px solid var(--color-blue);
  border-radius: var(--rad-common);
  color: var(--color-white);
  font-size: var(--font-16);
  text-align: center;
  width: 100%;
  display: block;
  padding: 8px 0;
    transition: all 0.5s ease;
}

.contactBox__item a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 7px;
  height: 7px;
  border-top: 2px solid var(--color-white);
  border-right: 2px solid var(--color-white);
  transform: translateY(-50%) rotate(45deg);
}

.contactBox__item--emember .contactBox__subTtl {
  border: 1px solid var(--color-orange);
}

.contactBox__item--emember .contactBox__subTtl::before {
  border-color: var(--color-orange) transparent transparent transparent;
}

.contactBox__item--emember a {
  background: var(--color-orange);
  border: 1px solid var(--color-orange);
}

@media (any-hover:hover) {
  .footer__linkBox .contactBox__item a:hover {
    opacity: 1;
    background: var(--color-white);
    color: var(--color-blue);
    transition: all 0.5s ease;
  }
  .footer__linkBox .contactBox__item a:hover::after {
    border-color: var(--color-blue);
  }
  .footer__linkBox .contactBox__item--emember a:hover .contactBox__itemTxt {
    color: var(--color-orange);
  }
  .footer__linkBox .contactBox__item--emember a:hover::after {
    border-color: var(--color-orange);
  }
}

/*サイトマップ*/
.footer__sitemapWrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  line-height: 1;
}

.footer__sitemap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer__sitemapTtl {
  color: var(--color-blue);
  position: relative;
  font-size: var(--font-18);
  font-weight: bold;
  letter-spacing: .05em;
}

.footer__sitemapList {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.footer__sitemapItem {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
}

.footer__sitemapItem::before {
  content: "";
  width: 8px;
  height: 1px;
  background: var(--color-black);
  top: 1px;
}

/* フッター下部ブロック */
.footer__linkBottom {
  text-align: center;
}

/* ロゴ */
.footer__logo {
  margin-bottom: 2rem;
}
.footer__logo img {
  width: 340px;
}

/* 対応エリア */
.footer__areaList {
  font-size: var(--font-14);
  margin-bottom: clamp(3rem, 3vw, 5rem);
  color: var(--color-darkgray);
}
.footer__areaList__Wrap {
  display: flex;
  justify-content: center;
}
.footer__areaList__Wrap li a {
  line-height: 1;
}
.footer__areaList__Wrap li a::after {
  content: "｜";
}
.footer__areaList__Wrap li:last-child a::after {
  content: none;
}

/* ページリンク */
.footer__linkBottom .footer__sitemapLinkList {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  font-size: var(--font-12);
  margin-bottom: var(--gutter);
}

/* 会社ロゴ */
.footer__companyLogo {
  border: 1px solid #777;
  background: var(--color-white);
  display: inline-block;
  width: 60%;
  max-width: 180px;
  padding: 10px;
}

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

/* recaptcha */
.grecaptcha-badge {
  visibility: hidden;
}

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

.ttlWrap::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 47px;
  background-image: url(../img/index/bg_fvBox_01.svg);
  background-repeat: repeat-x;
  background-position: center bottom;
  background-size: 30%;
  opacity: 0.8;
}

.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 {
  font-size: 1.2rem;
  width: min(var(--width-content), 100%);
  margin: 0 auto;
  padding: 5px 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

#bread>span:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border-top: 1px solid #666;
  border-right: 1px solid #666;
  transform: rotate(45deg);
  margin-right: 5px;
}

#bread a {
  display: inline-block;
  margin-right: 5px;
  padding-left: 5px;
  text-decoration: underline;
}

@media (any-hover:hover) {
  #bread a:hover {
    text-decoration: none;
  }
}

/*投稿box*/
#postbox {
  width: 100%;
  margin: 0 auto;
  margin-bottom: var(--gutter);
}


/*サブタイトル*/
#main .secTtl {
  font-size: clamp(1.7rem, 2vw, 1.8rem);
  font-weight: bold;
  padding: 15px 0;
  background-size: 8px;
  border-bottom: solid 1px var(--color-blue);
  line-height: 1.3;
  margin-bottom: 20px;
}

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

#postbox .wp-caption {
  max-width: 100% !important;
}

/*(開閉タイトル)*/
.oc_bar01,
.oc_bar01_open,
.srchbox01 .selectbox01 .selectbox_ttl,
.srchbox01 .selectbox01 .selectbox_ttl_open {
  cursor: pointer;
}

.oc_bar01,
.oc_bar01_open,
.srchbox01 .selectbox01 .selectbox_ttl,
.srchbox01 .selectbox01 .selectbox_ttl_open,
.srchbox01 .selectbox01 h3 {
  cursor: pointer;
  margin: 10px 0;
  font-size: 1.6em;
  font-weight: bold;
  color: var(--color-blue);
}

.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: var(--rad-common);
  -webkit-border-radius: var(--rad-common);
  -moz-border-radius: var(--rad-common);
  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: var(--rad-common);
  -webkit-border-radius: var(--rad-common);
  -moz-border-radius: var(--rad-common);
  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,
.slick-arrow.slick-prev::before {
  left: 0 !important;
}

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

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

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

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

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

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

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

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

/*==================================================
  査定導線
==================================================*/
.estates__appraisal {
  background: var(--color-lightblue);
  margin-top: var(--gutter);
  text-align: center;
  padding: 50px 0;
}

.estates__appraisal .estates__appraisal__ttl {
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 900;
  margin-bottom: var(--gutter);
  position: relative;
  display: inline-block;
  padding: 0 75px;
}

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

.estates__appraisal .estates__appraisal__ttl::before {
  left: 0;
}

.estates__appraisal .estates__appraisal__ttl::after {
  right: 0;
}

.estates__appraisal .contactBox__btnWrap {
  justify-content: center;
  gap: 15px;
}

.estates__appraisal .contactBox__item {
  width: 35%;
}

.estates__appraisal .contactBox__item a {
  font-size: var(--font-20);
  padding: 15px 0;
}

.estates__appraisal .contactBox__itemTxt {
  display: flex;
  justify-content: center;
  align-items: center;
}

.estates__appraisal .contactBox__itemTxt::before {
  content: "";
  width: 30px;
  height: 30px;
  margin-right: 5px;
  background-image: url(../img/common/icon_calculator.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.estates__appraisal .contactBox__item--shoprsv .contactBox__itemTxt::before {
  width: 26px;
  height: 26px;
  margin-right: 10px;
  background-image: url(../img/common/icon_mail.svg);
  background-repeat: no-repeat;
  background-position: center top 1px;
  background-size: contain;
}

.estates__appraisal .contactBox__subTtl {
  font-size: var(--font-16);
}

@media (any-hover:hover) {
  .estates__appraisal .contactBox__item a:hover {
    opacity: 1;
    background: var(--color-white);
    color: var(--color-blue);
    transition: all 0.5s ease;
  }
  .estates__appraisal .contactBox__item a:hover::after {
    border-color: var(--color-blue);
  }
  .estates__appraisal .contactBox__item--emember a:hover {
    color: var(--color-orange);
  }
  .estates__appraisal .contactBox__item--emember a:hover::after {
    border-color: var(--color-orange);
  }

  .estates__appraisal .contactBox__item a:hover .contactBox__itemTxt::before {
    background: url(../img/common/icon_calculator_orange.svg) no-repeat;
    background-position: center;
    background-size: contain;
    width: 30px;
    height: 30px;
  }
  
  .estates__appraisal .contactBox__item--shoprsv a:hover .contactBox__itemTxt::before {
    width: 26px;
    height: 26px;
    background-image: url(../img/common/icon_mail_blue.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center top 1px;
  }
}

/*==================================================
  shopInfoBox
==================================================*/
.shopInfoBox__ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: clamp(30px, 4vw, 36px);
  font-weight: bold;
  margin-bottom: 30px;
  line-height: 1.3;
}

.shopInfoBox__ttl--small {
  font-size: clamp(18px, 3vw, 20px);
  color: var(--color-gray);
}

.shopInfoBox__inner {
  width: 100%;
  margin: 0 auto;
  border: 1px solid var(--color-blue);
  border-radius: var(--rad-common);
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
}

.shopInfoBox__inner:last-child {
  margin-bottom: 0;
}

.shopInfoBox__imgBox {
  width: 49%;
  max-width: 500px;
}

.shopInfoBox__imgList {
  position: relative;
}

.shopInfoBox__img {
  text-align: center;
}

.shopInfoBox__img img {
  border-radius: var(--rad-common);
}

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

.shopInfoBox__dataBox {
  width: 49%;
}

.shopInfoBox__shopName {
  color: var(--color-blue);
  font-weight: bold;
  font-size: var(--font-18);
  margin-bottom: 10px;
}

.shopInfoBox__dataWrap {
  display: flex;
  margin-top: 5px;
}

.shopInfoBox__dataTtl {
  max-width: 150px;
  width: 25%;
  flex-shrink: 0;
  font-weight: 500;
}

.shopInfoBox__data {
  flex-grow: 1;
}

.shopInfoBox__shopCommentBox {
  width: 100%;
  margin-top: 30px;
  padding: 20px;
}

.shopInfoBox__shopCommentTtl {
  font-weight: bold;
  margin-bottom: 5px;
}

.shopInfoBox__map {
  width: 100%;
  height: 150px;
  margin-top: var(--gutter-supernarrow);
}

.shopInfoBox__map iframe {
  border-radius: var(--rad-common);
}


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

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

  .pcMemberNavi__box {
    width: 100%;
  }

  .pcMemberNavi__ttl {
    width: 16%;
    padding-right: 10px;
  }

  .pcMemberNavi__itemBox {
    padding: 2px 0 2px 10px;
  }

  .pcMemberNavi__item--input {
    width: 22%;
  }

  .pcMemberNavi__item--input input {
    width: 100%;
  }

  /*==================================================
    FOOTER PC/TABLET
  ==================================================*/
  .footer__linkTop {
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }

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

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


}

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

  /*==================================================
    HEADER SP
  ==================================================*/
  /*SPでヘッダー固定*/
  header {
    position: fixed;  /*SPではヘッダーを常時固定*/
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 10000;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    padding: 0;
  }

  .header__inner {
    padding: 5px 0;
  }

  .header.sphidden {
    transform: translateY(-200%);
    overflow: hidden;
  }

  .header__left {
    width: 50%;
  }

  .header__right {
    gap: 1rem;
  }

  .header__btn {
    width: 110px;
  }

  .header__btn a {
    width: 100%;
    padding: 5px 8px;
    justify-content: center;
  }

  .header__btn--free {
    margin-right: 5px;
  }

  .header__btn--text {
    font-size: 1.4rem;
    line-height: 1.3;
    text-align: left;
  }

  .header__btn a::after {
    bottom: 6px;
    top: 34px;
    right: 10px;
  }

  /*ヘッダーボタン*/
  .header__spNaviBtn {
    position: relative;
    width: 30px;
    height: 19px;
    cursor: pointer;
  }

  .header__spNaviBtn span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-black);
    border-radius: 4px;
  }

  .header__spNaviBtn, .header__spNaviBtn span {
    display: inline-block;
    transition: all .5s;
    box-sizing: border-box;
    margin-top: -1px;
  }

  .header__spNaviBtn span:nth-of-type(1) {
    top: 0;
  }

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

  .header__spNaviBtn span:nth-of-type(3) {
    bottom: 2px;
  }

  .header__spNaviBtn.active span:nth-of-type(1) {
    -webkit-transform: translateY(20px) rotate(-315deg);
    transform: translateY(8px) rotate(-315deg);
  }
  .header__spNaviBtn.active span:nth-of-type(2) {
    opacity: 0;
  }
  .header__spNaviBtn.active span:nth-of-type(3) {
    -webkit-transform: translateY(-20px) rotate(315deg);
    transform: translateY(-8px) rotate(315deg);
  }

  .header__spNaviBtn::after {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: -17px;
    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.05em;
  }

  /*ドロップダウンメニュー*/
  /* ハンバーガーメニュー用のスクロール制御 */
  body.hamburger-menu-open {
    overflow: hidden;
  }

  .spNavi {
    display: none;
    height: calc(100dvh - 53px);
    background: var(--color-white);
    overflow-y: scroll;
    padding: 20px 15px;
  }

  .spNavi .contactBox__btnWrap {
    margin: 20px 0;
  }
  .spNavi .contactBox__item {
    width: 48%;
  }

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

  .spNavi__listWrapTtl {
    color: var(--color-blue);
    font-weight: bold;
    font-size: 1.7rem;
    margin-bottom: 5px;
  }

  .spNavi__list {
    display: flex;
    flex-wrap: wrap;
  }

  .spNavi__item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    width: 50%;
  }

  .spNavi__item a {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0 5px 0 22px;
    font-size: 1.4rem;
    position: relative;
  }

  .spNavi__item a::before {
    position: absolute;
    content: "";
    width: 8px;
    height: 1px;
    background: var(--color-black);
    top: 50%;
    left: 10px;
  }

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

  .spNavi__bottomWrapItem a {
    font-size: 1.5rem;
  }

  /*
  ===== fixed ==========================================
  */
  .header.fixed {
    padding: 0;
  }
  .header.fixed .header__btn {
    margin-top: 0;
  }
  
  /*==================================================
    FOOTER SP
  ==================================================*/
  /*footFix*/
  .footFix {
    bottom: 10%;
  }

  .footFix .ancPagetop {
    bottom: 20px;
  }

  /*店舗情報*/
  .footer__linkTop {
    display: block;
  }
  .footer__shopList {
    margin: auto;
  }
  .footer__shopImgBox {
    width: 80px;
  }

  /* ロゴ */
  .footer__logo {
    width: 60%;
    margin: 0 auto var(--gutter-narrow);
  }

  /* 対応エリア */
  .footer__areaList {
    flex-direction: column;
  }
  .footer__areaList__Wrap {
    flex-wrap: wrap;
    justify-content: center;
    width: 80%;
    margin: auto;
  }

  .footerMenu {
    width: 100%;
    height: 60px;
    padding: 0;
    position: fixed;
    bottom: 5px;
    z-index: 999;
    clear: both;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
  }

  .footerMenu.is-hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .footFixBtnItem {
    width: 48%;
  }

  .footFixBtnItem a {
    border: 1px solid var(--color-white);
    border-radius: var(--rad-common);
    color: var(--color-white);
    display: block;
    padding: 10px 5px;
    position: relative;
  }

  .footFixBtn--estimate {
    background: var(--color-orange);
  }

  .footFixBtn--assessment {
    background: var(--color-blue);
  }

  /* .footFixBtnItem a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    width: 8px;
    height: 8px;
    border-top: 2px solid var(--color-white);
    border-right: 2px solid var(--color-white);
    transform: translateY(-50%) rotate(45deg);
  } */

  .footerMenu__btn--free {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55%;
    padding: 5px 0;
    background: var(--color-yellow);
    border-radius: var(--rad-common);
    color: var(--color-black);
    font-size: var(--font-14);
    font-weight: bold;
    line-height: 1;
    flex-shrink: 0;
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
  }

  .footerMenu__itemTxt {
    font-size: 1.6rem;
    display: block;
    text-align: center;
  }

  /*==================================================
    MAIN SP
  ==================================================*/
  .ttlWrap {
    min-height: 100px;
    padding: 25px 0 20px;
  }

  .ttlWrap::after {
    background-size: 80%;
  }

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

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

  /*サブタイトル*/
  #main .secTtl {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 10px;
    padding: 2% 0;
  }

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

  /*==================================================
    査定導線
  ==================================================*/
  .estates__appraisal .contactBox__btnWrap {
    flex-direction: column;
    gap: 40px;
  }

  .estates__appraisal .contactBox__item {
    width: 100%;
  }

  /*==================================================
    shopInfoBox SP
  ==================================================*/
  .shopInfoBox__inner {
    padding: 20px;
    width: 96%;
  }
  
  .shopInfoBox__dataBox {
    width: 100%;
    max-width: unset;
  }

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

  .shopInfoBox__dataTtl {
    width: 30%;
    flex-shrink: 0;
  }

  .shopInfoBox__dataTtl,
  .shopInfoBox__data {
    padding: 0;
    max-width: unset;
    text-align: left;
  }

  .shopInfoBox__shopCommentBox {
    margin-top: 3%;
    padding: 5%;
  }

  .shopInfoBox__map {
    margin-top: 3%;
  }
}
