﻿@charset "utf-8";
/* CSS Document */
/*ページ用CSS*/

/*==================================================
	GENERAL SETTINGS
==================================================*/
.navigation {
  padding: 20px;
  text-align: center;
  background: var(--color-palegray);
  border: 1px solid #E6E6E6;
  margin-top: var(--gutter);
}

.wp-pagenavi {
  max-width: var(--width-content);
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
  margin-top: var(--gutter-narrow);
}

.wp-pagenavi a,
.wp-pagenavi span {
  padding: 10px 15px;
  display: inline-block;
  text-decoration: none;
  border: 1px solid #BFBFBF;
  padding: 10px 15px;
  margin: 2px;
}

.wp-pagenavi span.current {
  background-color: var(--color-black);
  color: #fff;
  border-color: #000;
  font-weight: bold;
}

/*ACFでMAPを表示*/
.acf-map {
  width: 100%;
  height: 400px;
  border: 1px solid #E0E0E0;
  margin: 20px 0;
}

/*共通シングル*/
.singlePage #postbox {
  margin-top: var(--gutter-narrow);
}

.singlePage iframe {
  max-width: 100%;
}

.singlePage #titleBox .secTtl {
  margin-top: 0px;
  text-align: left;
}

.singlePage #titleBox .date {
  text-align: right;
  margin-bottom: 1em;
  font-size: 1.5rem;
}

.singlePage #detailBox .photo {
  text-align: center;
}

.singlePage #articleBox {
  padding: 30px 0;
}

.singlePage #articleBox .notice_tbl {
  width: 100%;
}

.singlePage #articleBox .notice_tbl th {
  width: 20%;
  padding: 20px;
  border: 1px solid #E6E6E6;
  background: var(--color-palegray);
  font-weight: bold;
  text-align: center;
}

.singlePage #articleBox .notice_tbl td {
  padding: 20px;
  border: 1px solid #E6E6E6;
}

.singlePage #articleBox .notice_tbl td span.btn_access {
  margin-left: 10px;
}

.singlePage #articleBox .notice_tbl td span.btn_access a {
  padding: 10px 20px;
  display: inline-block;
  background: var(--color-black);
  color: #FFF;
  border-radius: var(--rad-full);
  line-height: 1;
}

.singlePage #btnBox {
  margin-bottom: 50px;
}

.singlePage #btnBox p.btn_reserve,
.singlePage #btnBox p.btn_end {
  width: 50%;
  text-align: center;
  margin: 0 auto;
  font-size: clamp(1.6rem, 2vw, 1.8rem);
  font-weight: bold;
  color: #fff;
}

.singlePage #btnBox p.btn_reserve a {
  display: block;
  background: var(--color-main);
  color: #fff;
  padding: 30px 20px;
  border-radius: var(--rad-full);
  border: 2px solid var(--color-main);
  transition: 0.3s;
  position: relative;
}

.singlePage #btnBox p.btn_reserve a::after {
  content: "";
  background: url(../img/common/icon_arrow_maincolor_01.svg)no-repeat center / contain;
  filter: brightness(10) grayscale();
  width: 1em;
  height: auto;
  aspect-ratio: 16 / 14;
  position: absolute;
  right: 9.5%;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transition: top 0.3s;
}

.singlePage #btnBox p.btn_reserve a:active {
  opacity: 1;
  background: #fff;
  color: var(--color-main);
}

.singlePage #btnBox p.btn_reserve a:active::after {
  filter: unset;
  top: 53%;
}

@media (any-hover:hover) {
  .singlePage #btnBox p.btn_reserve a:hover {
    opacity: 1;
    background: #fff;
    color: var(--color-main);
  }

  .singlePage #btnBox p.btn_reserve a:hover::after {
    filter: unset;
    top: 53%;
  }
}

.singlePage #btnBox p.btn_end {
  background: #bbb;
  padding: 30px 10px;
  border-radius: var(--rad-full);
}

.singlePage #content {
  margin-top: 30px;
}

.singlePage #content p {
  margin-bottom: 10px;
}

.singlePage #mapBox {
  padding-top: 80px;
  margin-top: -50px;
}

.singlePage #mapBox .ttl {
  padding: 20px;
  text-align: center;
  color: #fff;
  font-weight: bold;
  font-size: clamp(1.6rem, 2vw, 1.8rem);
  background-color: var(--color-main);
}

.singlePage #mapBox .ttl span {
  padding-left: 30px;
  background: url(../img/common/icon_access.webp) no-repeat left center;
  background-size: 20px auto;
}

.page_title01 {
  text-align: center;
  font-size: 40px;
  font-weight: bold;
  background: url(../img/common/page_title01_bg.webp)no-repeat top center;
  padding: 50px 0;
  margin-bottom: 50px;
}

.page_title02 {
  font-size: clamp(2rem, 2vw, 2.4rem);
  text-align: center;
  font-weight: bold;
  margin-bottom: 50px;
  position: relative;
}

.page_title02::after {
  content: "";
  width: 40px;
  height: 3px;
  border-radius: var(--rad-full);
  background: var(--color-main);
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translate(-50%);
}

.btn_returntop a {
  max-width: 300px;
  width: 80%;
  display: block;
  margin: 40px auto;
  text-align: center;
  background-color: #333333;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  padding: 16px 0;
  border-radius: 3px;
  position: relative;
}

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

#map {
  width: 98% !important;
  height: auto;
  margin: 10px auto;
}

#map iframe {
  width: 100% !important;
  height: 350px !important;
}


/* 目次(TOC)用CSS */
.singlePage #toc_container {
  min-width: 30%;
  padding: 1em 1.5em .5em;
  border: 1px solid var(--color-gray);
}

.singlePage #toc_container .toc_title {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 1.4em;
  position: relative;
  padding-left: 1.3em;
  margin-bottom: .5em;
}

.singlePage #toc_container .toc_title::before {
  font-family: "Font Awesome 5 Free";
  content: '\f022';
  font-size: 1em;
  margin-right: 3px;
  color: var(--color-gray);
  font-weight: 400;
  position: absolute;
  left: 0;
}

.singlePage #toc_container .toc_title .toc_toggle {
  font-size: 1.2rem;
}

.singlePage #content #toc_container .toc_list {
  padding: 0;
}

.singlePage #content #toc_container .toc_list li {
  list-style: none;
  border-bottom: 1px dotted var(--color-lightgray);
  padding-bottom: .5em;
  margin-bottom: .5em;
  position: relative;
}

.singlePage #content #toc_container .toc_list li:last-child {
  border: 0;
  padding-bottom: 0;
}

.singlePage #content #toc_container .toc_list li ul {
  border-top: 1px dotted var(--color-lightgray);
  padding: 1em 0 0 0;
  margin: 0;
}

.singlePage #content #toc_container .toc_list li ul li {
  margin-left: 1.5em;
}

.singlePage #content #toc_container .toc_list li .toc_number {
  color: var(--color-gray);
}

/* ビジュアルエディタ用CSS */
.singlePage #content p {
  margin-bottom: 10px;
  margin-bottom: 1em;
}

.singlePage #content h1,
.singlePage #content h2,
.singlePage #content h3,
.singlePage #content h4,
.singlePage #content h5,
.singlePage #content h6 {
  font-weight: bold;
  margin: 1em 0;
}

.singlePage #content h1 {
  font-size: clamp(2.5rem, 2.273rem + 1.14vw, 3.125rem);
  border-left: 5px solid var(--color-main);
  padding: 0 0 0 .5em;
}

.singlePage #content h2 {
  font-size: clamp(2.25rem, 2.023rem + 1.14vw, 2.875rem);
  border-bottom: 3px solid var(--color-main);
  padding: 0 0 .5em;
}

.singlePage #content h3 {
  font-size: clamp(1.875rem, 1.648rem + 1.14vw, 2.5rem);
  background: var(--color-palegray);
  padding: .5em;
}

.singlePage #content h4 {
  font-size: clamp(1.625rem, 1.398rem + 1.14vw, 2.25rem);
  border-top: 1px solid var(--color-lightgray);
  border-bottom: 1px solid var(--color-lightgray);
  padding: .5em 0;
}

.singlePage #content h5 {
  font-size: clamp(1.375rem, 1.193rem + 0.91vw, 1.875rem);
  border-bottom: 1px dashed var(--color-lightgray);
  padding: 0 0 .5em;
}

.singlePage #content h6 {
  font-size: clamp(1.125rem, 0.989rem + 0.68vw, 1.5rem);
  color: var(--color-black);
}

.singlePage #content blockquote {
  padding: 1em;
  background: var(--color-palegray);
  margin: 1em 0;
}

.singlePage #content blockquote p {
  margin-bottom: 0;
}

.singlePage #content ul,
.singlePage #content ol {
  padding-left: 1.5em;
}

.singlePage #content ul li {
  list-style: disc;
  line-height: 1.6;
  margin-bottom: 1em;
}

.singlePage #content ol li {
  list-style: decimal;
  line-height: 1.6;
  margin-bottom: 1em;
}

.singlePage #content table {
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
  border-top: 1px solid var(--color-lightgray);
  border-left: 1px solid var(--color-lightgray);
}

.singlePage #content table th {
  border-right: 1px solid var(--color-lightgray);
  border-bottom: 1px solid var(--color-lightgray);
}

.singlePage #content table td {
  border-right: 1px solid var(--color-lightgray);
  border-bottom: 1px solid var(--color-lightgray);
}

.singlePage #content table th,
.singlePage #content table td {
  padding: .5em;
}

.singlePage #content a {
  text-decoration: underline;
  color: var(--color-main);
}

.singlePage #content .aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.singlePage #content .alignright {
  float: right;
  margin-left: 1.5em;
}

.singlePage #content .alignleft {
  float: left;
  margin-right: 1.5em;
}

.singlePage #content {
  display: flow-root;
}

.singlePage #content pre {
  white-space: pre-wrap;
  word-wrap: break-word;
}

/* ビジュアルエディタ用CSSここまで */


/*
===== 中古を買ってリフォ-ム/リノベ-ション ==========================================
*/
.reformPage .ttlWrap {
  padding: 19px 0;
  background: url(../img/page/renovation/main_ttl_bg.webp) no-repeat top center;
  height: unset;
}

.reformPage .contents-inner {
  margin-bottom: 50px;
}

.reformPage .catchBox .inner-top {
  background-color: var(--color-palegray);
  padding: 50px 0;
  margin-bottom: 50px;
}

.reformPage .catchBox .inner-bottom p {
  text-align: center;
}

.reformPage .meritBox #merit_index {
  background: url(../img/page/renovation/meritBox_link_bg.webp) repeat top center;
  padding: 50px 0;
}


.reformPage .meritBox #merit_index ul {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  margin-top: 20px;
}

.reformPage .meritBox #merit_index li {
  width: 23%;
  border: 2px solid #333;
  background: #FFF;
}

.reformPage .meritBox #merit_index li a {
  display: block;
  padding: 30px clamp(5px, 1.2vw, 15px) 60px;
  font-weight: bold;
  background: url(../img/page/renovation/meritBox_itemList_arrow.webp) no-repeat center bottom 10px;
  height: 100%;
}

.reformPage .meritBox #merit_index li span.num {
  font-size: 24px;
  display: block;
  text-align: center;
}

.reformPage .meritBox #merit_index li span.num span {
  margin-left: 5px;
  font-size: 32px;
}

.reformPage .meritBox #merit_index li span.com {
  font-size: 14px;
  display: block;
  text-align: center;
  margin: clamp(15px, 1.5vw, 30px) 0 0 !important;
}

.reformPage .meritBox .merit01,
.reformPage .meritBox .merit03 {
  background-color: var(--color-palegray);
  padding: 50px 0 75px;
  margin-bottom: 50px;
}

.reformPage .meritBox h2 {
  text-align: center;
}

.reformPage .meritBox .inner h3 {
  font-size: 32px;
  font-weight: bold;
  padding-top: var(--gutter-wide);
  margin-top: calc(-1 * var(--gutter-wide));
}

.reformPage .meritBox .inner h3 span.num {
  display: inline-block;
  background: var(--color-main);
  max-width: 160px;
  width: 30%;
  text-align: center;
  color: #FFF;
  font-size: 28px;
  margin-right: 10px;
}

.reformPage .meritBox .inner h3 span.num span {
  font-size: 32px;
  margin-left: 5px;
}

.reformPage .meritBox .inner .contentBox {
  font-size: 18px;
  margin: 30px 0;
}

.reformPage .meritBox .inner .contentBox span {
  color: var(--color-orange);
  font-weight: bold;
}

.reformPage .meritBox .inner .btnBox {
  margin-top: 50px;
}

.reformPage .meritBox .inner .btnBox a {
  display: block;
  width: 70%;
  margin: 0 auto;
  padding: 40px 60px;
  background: url(../img/page/renovation/meritBox_btn_arrow.webp) no-repeat 97% center/3% #333;
  color: #FFF;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  border-radius: 5px;
}

.reformPage .contact .contactBox {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
}

.reformPage .contact .contactBox .shop_reserve,
.reformPage .contact .contactBox .emember {
  max-width: 520px;
  width: 49%;
  border: 2px solid #333;
}

.reformPage .contact .contactBox h3 {
  background: #333;
  text-align: center;
  color: #FFF;
  font-size: 20px;
  font-weight: bold;
  padding: 10px 0;
}

.reformPage .contact .contactBox .infoWrap {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.reformPage .contact .contactBox dl.count {
  display: flex;
  justify-content: center;
  align-items: center;
}

.reformPage .contact .contactBox dl.count dt {
  padding: 10px 30px;
  border: 2px solid #333;
  text-align: center;
  font-weight: bold;
  font-size: 24px;
  margin-right: 10px
}

.reformPage .contact .contactBox dl.count dd {
  font-weight: bold;
  font-size: 18px;
}

.reformPage .contact .contactBox dl.count dd span {
  font-family: 'Arial', sans-serif;
  font-size: 60px;
  vertical-align: middle;
}

.reformPage .contact .contactBox p {
  font-weight: bold;
  font-size: 20px;
  margin: 20px 0;
  text-align: center;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.reformPage .contact .btn_reserve {
  background-color: var(--color-green);
  padding: 20px;
  font-weight: bold;
  font-size: 32px;
  text-align: center;
  color: #fff;
}

.reformPage .contact .btn_emember {
  background-color: var(--color-red);
  padding: 20px;
  font-weight: bold;
  font-size: 32px;
  text-align: center;
  color: #fff;
}


/*来店予約訴求・会員登録訴求・電話番号*/
.reformPage .contact .phone_number {
  background: #fff7d9;
  padding: 20px 0;
  margin: 30px 0;
}

.reformPage .contact .phone_number p.com {
  text-align: center;
  font-weight: bold;
  font-size: 24px;
  margin: 0 !important;
}

.reformPage .contact .phone_number dl {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.reformPage .contact .phone_number dt {
  background: #333;
  color: #FFF;
  font-size: 18px;
  font-weight: bold;
  padding: 5px 18px 7px;
  text-align: center;
}

.reformPage .contact .phone_number dd {
  margin-left: 20px;
  font-family: 'Arial', sans-serif;
  font-size: 36px;
  font-weight: bold;
}

.reformPage .contact .phone_number dl i {
  font-size: 28px;
}

.reformPage .meritBox .merit03 .itemBox ul {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}

.reformPage .meritBox .merit03 .itemBox ul li {
  width: 200px;
  height: 200px;
  padding: 15px;
  border-radius: 100%;
  text-align: center;
  background: #FFF;
  font-weight: bold;
  font-size: 18px;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  -webkit-align-items: center;
  position: relative;
  z-index: 1;
}

.reformPage .meritBox .merit03 .itemBox ul li i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 100px;
  z-index: -1;
  color: #E6E5CA;
}

.reformPage .meritBox .merit04 .questionBox {
  border: 2px solid #333333;
  margin: 50px;
  padding: 20px 50px 30px;
}

.reformPage .meritBox .merit04 .questionBox h5 {
  color: var(--color-orange);
  font-size: 28px;
  font-weight: bold;
  text-align: center;
}

.reformPage .meritBox .merit04 .questionBox p {
  margin-top: 20px;
  font-size: 18px;
}

.reformPage .meritBox .merit04 .questionBox p span {
  color: var(--color-orange);
  font-size: 16px;
  font-weight: bold;
}

.reformPage .reasonBox {
  background: url(../img/page/renovation/reasonBox_bg.webp) no-repeat top center;
  padding: 90px 0 50px;
}

.reformPage .reasonBox h2 {
  text-align: center;
  padding: 20px 0;
  font-size: 30px;
  font-weight: bold;
  border: solid 1px #FFF;
  width: 100%;
  color: #FFF;
}

.reformPage .reasonBox h2 span {
  font-size: 1.2em;
}


.reformPage .reasonBox .itemList_reason {
  font-weight: bold;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  width: 100%;
  margin: 10px auto;
}

.reformPage .reasonBox .itemList_reason li {
  width: 33%;
  color: #FFF;
  padding: 30px 0;
  font-size: 18px;
}

.reformPage .reasonBox .itemList_reason li.reason01 {
  background: var(--color-orange);
}

.reformPage .reasonBox .itemList_reason li.reason02 {
  background: var(--color-lightblue);
}

.reformPage .reasonBox .itemList_reason li.reason03 {
  background: var(--color-green);
}

.reformPage .reasonBox .itemList_reason li span.com {
  display: block;
  text-align: center;
  font-size: 20px;
}

.reformPage .reasonBox .itemList_reason li span.num {
  display: block;
  text-align: center;
  font-size: 16px;
}

.reformPage .reasonBox .itemList_reason li span.num span {
  font-size: 16px;
  margin-left: 5px;
}

.reformPage .reasonBox .itemList_link {
  width: 100%;
  margin: 20px 0;
}

.reformPage .reasonBox .itemList_link li+li {
  margin-top: 10px;
}

.reformPage .reasonBox .itemList_link li a {
  display: block;
  font-size: 28px;
  font-weight: bold;
  padding: 40px;
  border-radius: 5px;
  text-align: center;
  background: #FFF;
  position: relative;
}

.reformPage .reasonBox .itemList_link li a::after {
  position: absolute;
  content: '';
  width: 20px;
  height: 20px;
  border-top: 4px solid #333;
  border-right: 4px solid #333;
  right: 7%;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

/*
===== 来店予約 ==========================================
*/

.shop-reservePage .ttlWrap {
  background: url(../img/page/shop_reserve/main_ttl_bg.webp) no-repeat top center/cover;
  height: unset;
  padding: 0;
}

.shop-reservePage .mainTtl {
  max-width: 50%;
  margin: 0 auto;
}

.shop-reservePage .contents-inner {
  margin: var(--gutter-wide) auto;
}


.shop-reservePage #shopInfoBox {
  margin: var(--gutter-wide) 0;
}

.shop-reservePage .flowBox .comment {
  font-weight: bold;
  text-align: center;
  font-size: 32px;
  margin: 50px 0;
}

.shop-reservePage .flowList {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.shop-reservePage .flowItem {
  border: 3px solid var(--color-main);
  border-radius: var(--rad-common);
  padding: 20px;
  text-align: center;
  width: calc((100% - 80px)/5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  position: relative;
}

.shop-reservePage .flowItem+.flowItem::before {
  position: absolute;
  content: '';
  background: url(../img/common/arrow_right.webp) center/100% no-repeat;
  width: 39px;
  height: 39px;
  left: -32px;
  top: 50%;
  transform: translateY(-50%);
}

.shop-reservePage .flowItem.finish {
  background-color: var(--color-main);
  color: #fff;
}

.shop-reservePage .flowItem h3 {
  font-size: clamp(2rem, 1.8vw, 2.6rem);
  margin-bottom: 20px;
  font-weight: bold;
}

.shop-reservePage .flowItem p {
  font-size: clamp(1.3rem, 1.2vw, 1.7rem);
  margin-bottom: 20px;
  font-weight: 500;
  flex-grow: 1;
}

.shop-reservePage .flowItem .icon {
  width: 80%;
  max-height: 100px;
  text-align: center;
}

/*
===== イベント予約:event-reservePage ==========================================
*/
.event-reservePage #postbox {
  margin-top: var(--gutter);
}

/*
===== お問い合わせ:contactPage ==========================================
*/
.contactPage #postbox {
  margin-top: var(--gutter);
}

.contactPage .contact_note {
  font-size: 16px;
  margin: 30px;
  text-align: center;
}

/*
===== カタログ請求:catalogPage ==========================================
*/
.catalogPage #postbox {
  margin-top: var(--gutter);
}

/*
===== プライバシーポリシー:privacyPage ==========================================
*/
.privacyPage #postbox {
  margin-top: var(--gutter);
}

.privacyPage .contents-inner dl dt {
  font-size: 16px;
  font-weight: bold;
  margin-top: 20px;
}

.privacyPage .contents-inner dl dd {
  margin-top: 10px;
}

.privacyPage .contents-inner ul {
  margin: 20px;
}

.privacyPage .contents-inner ul li {
  margin-bottom: 20px;
  list-style: disc outside;
}

/*
===== サイトマップ:sitemapPage ==========================================
*/

.sitemapPage #postbox {
  margin: var(--gutter-wide) auto;
}

.sitemapPage .sitemapBox {
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 1.8rem;
}

.sitemapPage .sitemapBox__list {
  flex-direction: column;
  gap: 1.5em;
  font-size: 0.8em;
}

.sitemapPage .sitemapBox__ttl {
  margin-bottom: 1.4em;
}

/*
===== errpage ==========================================
*/
.err404Page .contents-inner {
  padding: var(--gutter-narrow);
}

.err404Page .err404 {
  margin: 30px 0;
  padding: 50px 20px;
  border: 5px solid #E6E6E6;
}

/*
===== お知らせ:topicsPage ==========================================
*/
/*お知らせ:一覧*/
.topicsPage #postbox {
  margin-top: var(--gutter);
}

.topicsArchive__item a {
  padding: clamp(20px, 4vw, 40px);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px 20px;
  border-bottom: 1px solid var(--color-lightgray);
  font-size: 1.5rem;
}

.topicsArchive__date {
  margin-right: 0.5em;
  font-family: var(--font-en);
  font-weight: bold;
  flex-shrink: 0;
}

.topicsArchive__ttl {
  text-decoration: underline;
  display: inline-block;
}

.topicsArchive__icon {
  flex-shrink: 0;
  display: inline-block;
  margin-left: 10px;
}

.topicsArchive__icon.cate_new {
  padding: 0.2em 0.5em;
}


/*
===== イベント情報:eventPage  ==========================================
*/
.eventArchive #postbox {
  margin-top: var(--gutter-wide);
}

/*イベント情報:一覧*/
.eventArchive__inner {
  display: flex;
  justify-content: space-between;
}

.eventArchive__list {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 50px 2%;
  width: 80%;
  margin: 0 auto;
}

.eventArchive__item {
  width: 49%;
  border: 1px solid #eee;
}

.eventArchive__item--end {
  filter: grayscale();
}

.eventArchive__itemLink {
  display: block;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 5px rgba(17, 17, 17, 0.1));
  position: relative;
  background: #fff;
  transform: scale(1);
  transition: 0.3s;
  padding: 10px;
}

.eventArchive__itemLink::after {
  content: "";
  border-radius: 50%;
  width: clamp(40px, 5vw, 50px);
  height: clamp(40px, 5vw, 50px);
  background: url(../img/common/icon_arrow_white_01.svg) no-repeat center / 36% auto var(--color-main);
  position: absolute;
  right: 20px;
  bottom: 20px;
  display: block;
  transition: 0.3s;
}


.eventArchive__itemLink:active {
  filter: drop-shadow(0 0 8px rgba(17, 17, 17, 0.1));
  transform: scale(1.02);
}

.eventArchive__itemLink:active::after {
  transform: scale(1.1);
  background-color: var(--color-red);
}


@media (any-hover:hover) {
  .eventArchive__itemLink:hover {
    opacity: 1;
    filter: drop-shadow(0 0 8px rgba(17, 17, 17, 0.1));
    transform: scale(1.02);
  }

  .eventArchive__itemLink:hover::after {
    transform: scale(1.1);
    background-color: var(--color-red);
  }
}

.eventArchive__new {
  position: absolute;
  right: -10px;
  top: -35px;
  filter: drop-shadow(2px 2px 10px rgba(98, 33, 20, 0.15));
  z-index: 1;
  width: clamp(100px, 12vw, 124px);
}

.eventArchive__photo {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  background: var(--color-palegray);
  position: relative;
  overflow: hidden;
}

.eventArchive__photo img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
  transition: 0.3s;
}

.eventArchive__iconWrap {
  position: absolute;
  bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 5px;
  flex-direction: column;
}

.eventArchive__infoWrap {
  padding: 10px 10px 15px;
}

.eventArchive__itemTtl {
  font-size: clamp(1.6rem, 1.8vw, 2rem);
  font-weight: bold;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  font-feature-settings: 'palt';
  letter-spacing: 0.1em;
}

.eventArchive__date {
  font-size: clamp(1.3rem, 1.5vw, 1.5rem);
  font-weight: bold;
  color: var(--color-darkgray);
  margin: 0.6em 0;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.eventArchive__intro {
  font-size: clamp(1.2rem, 1.5vw, 1.4rem);
  font-weight: 500;
  display: block;
  width: calc(100% - clamp(50px, 5vw, 70px));
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 3.2em;
}


/*
===== スタッフコラム:columnPage ==========================================
*/
.columnPage #postbox {
  margin-top: var(--gutter);
}

/*スタッフコラム:一覧*/
.columnPage .itemList .item a {
  padding: 20px;
  display: flex;
  align-items: center;
}

.columnPage .itemList .item:nth-child(odd) a {
  border-top: 1px solid #E0E0E0;
  border-bottom: 1px solid #E0E0E0;
  background: var(--color-palegray);
}

.columnPage .itemList .item .photo {
  width: 225px;
  height: auto;
  aspect-ratio: 225 / 150;
  border: 1px solid #E0E0E0;
  margin-right: 20px;
}

.columnPage .itemList ul.List li.item .photo img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}

.columnPage .itemList .item .info {
  width: calc(100% - 245px);
  position: relative;
  padding-bottom: 25px;
}

.columnPage .itemList .item .ttl {
  padding: 20px 0;
  font-weight: bold;
  font-size: clamp(1.6rem, 2vw, 1.8rem);
}

.columnPage .itemList .item .date {
  margin-right: 10px;
  font-weight: bold;
  display: inline-block;
  font-size: 1.4rem;
}

.columnPage .itemList .item .term {
  display: inline-block;
  margin-left: 10px;
}

/*スタッフコラム:詳細*/
.columnPage #detailBox .term {
  margin-top: -20px;
  text-align: right;
  display: block;
}

.columnPage .term li {
  margin-right: 5px;
  display: inline-block;
}

.columnPage .term li a {
  text-decoration: underline;
}

/*
===== よくある質問:qaPage ==========================================
*/
.qaPage #postbox {
  margin-top: var(--gutter);
}

.qaPage #accordion {
  list-style: none;
}

.qaPage #accordion li {
  margin-bottom: 5px;
}

.qaPage #accordion dt {
  color: #fff;
  position: relative !important;
  display: block;
  font-weight: bold;
  padding: 20px 50px;
  background: var(--color-darkgray) url(../img/common/icon_qa.webp) no-repeat 10px center;
  background-size: 30px auto;
}

@media (any-hover:hover) {
  .qaPage #accordion dt:hover {
    cursor: pointer;
  }
}

.qaPage #accordion dt.open:after {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  color: var(--color-darkgray);
  font-weight: bold;
  width: 30px;
  height: 30px;
  background: #fff;
  content: "×";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.qaPage #accordion dt.close:after {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  color: var(--color-darkgray);
  font-weight: bold;
  width: 30px;
  height: 30px;
  background: #fff;
  content: "▼";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.qaPage #accordion dt.close:first-of-type {
  content: "×";
}

.qaPage #accordion dd {
  padding: 30px;
  background: var(--color-palegray);
}

.qaPage #accordion dd li {
  margin: 0;
  padding: 0;
  margin-bottom: 10px !important;
}

.qaPage #accordion dd p {
  margin-bottom: 20px;
}

.qaPage #accordion dd p:last-child {
  margin-bottom: 0;
}

.qaPage #accordion dd img {
  max-width: 100%;
  width: auto !important;
}

.qaPage #accordion .active {
  display: block !important;
}

/*
===== 施工事例:galleryPage ==========================================
*/

.gallery_renovationPage #postbox {
  margin-top: var(--gutter-narrow);
}

/* カテゴリーボタン */
.categoryBtn__box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: var(--gutter-narrow) auto;
}

.categoryBtn__list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  font-size: 1.4rem;
}

.categoryBtn__item a {
  border: 2px solid var(--color-black);
  background-color: #fff;
  padding: 0.5em 1em;
  font-weight: bold;
  display: block;
}

.categoryBtn__item a:active {
  background-color: var(--color-black);
  color: #fff;
  opacity: 1;
}


.categoryBtn__item.current_cat a {
  background-color: var(--color-black);
  color: #fff;
}

.categoryBtn__list--tag {
  gap: 5px 10px;
}

.categoryBtn__tagItem {
  text-decoration: underline;
}

.categoryBtn__list--type a {
  border: 2px solid var(--color-main);
  color: var(--color-main);
}

.categoryBtn__list--type .categoryBtn__item.current_cat a {
  background-color: var(--color-main);
}

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


  .categoryBtn__list--type a:hover {
    background-color: var(--color-main);
  }

  .categoryBtn__item.current_cat a:hover {
    color: #fff;
  }
}

/*施工事例:一覧*/
.galleryBox__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  gap: 30px 2%;
}

.galleryBox__item {
  position: relative;
  width: 32%;
}

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

.gelleryBox__new {
  position: absolute;
  right: -10px;
  top: -15px;
  filter: drop-shadow(2px 2px 10px rgba(98, 33, 20, 0.15));
  z-index: 1;
  width: clamp(110px, 12vw, 124px);
}

.galleryBox__photo {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.galleryBox__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s;
}




@media (any-hover:hover) {
  .galleryBox__item a:hover {
    opacity: 1;
  }

  .galleryBox__item a:hover .galleryBox__photo img {
    transform: scale(1.1);
  }
}

.galleryBox__itemTtlWrap {
  position: absolute;
  bottom: 0;
  width: 100%;
}

.galleryBox__itemTtl {
  padding: 0.25em 0.9em;
  background: rgba(255, 255, 255, 0.7);
  width: 100%;
  font-size: 1.6rem;
  font-weight: bold;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.galleryBox__iconWrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px 0;
  font-size: 1.4rem;
  margin-bottom: 0.5em;
  font-weight: bold;
  padding: 0 10px;
}

.galleryBox__iconWrap .icon_txt {
  font-size: 1.2rem;
}

.galleryPage .iconWrap .icon_galleryTag {
  text-decoration: underline;
  margin-right: 5px;
}

/*施工事例:詳細*/
.galleryPage .iconWrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 0;
  align-items: center;
}

/*lightbox*/
.galleryPage .lbwrap {
  position: relative;
  overflow: hidden;
}

.galleryPage .lbwrap a {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.galleryPage .lbwrap a:after {
  content: "";
  width: 32px;
  height: 32px;
  position: absolute;
  right: 5px;
  bottom: 5px;
  border: 1px solid #fff;
  background: rgb(0 0 0 / 0.2) url(../img/common/icon_zoom_white.svg) no-repeat center center;
  background-size: 65% auto;
  border-radius: 3px;
}

#nextLink:hover,
#prevLink:hover {
  transition: none;
}

/* スライド */
.galleryPage .slick-track {
  height: fit-content;
}

.galleryPage .sliderBox {
  margin: var(--gutter-narrow) auto var(--gutter);
  width: 80%;
  position: relative;
}

.galleryPage .sliderBox__inner {
  position: relative;
  border: 1px solid #ccc;
}

.galleryPage .sliderBox .slider__list {
  overflow: hidden;
}

.galleryPage .sliderBox .slider__list__item {
  position: relative;
  box-sizing: border-box;
  aspect-ratio: 3 / 2;
  flex-shrink: 0;
  height: auto;
  width: 100%;
  max-height: 60vh;
}

.galleryPage .sliderBox .slider__list__item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.galleryPage .sliderBox .slider__list a:after {
  width: clamp(30px, 5vw, 40px);
  height: clamp(30px, 5vw, 40px);
}

/*スライドのばらけ防止*/
.galleryPage .sliderBox .slider__list__item:not(:first-child) {
  display: none;
}

.galleryPage .sliderBox .slick-slider .slider__list__item {
  display: block !important;
}


/* スライドページャー */
.galleryPage .sliderBox .gallery_slider_pager {
  font-size: 0;
  z-index: 100;
}

.galleryPage .sliderBox .gallery_slider_pager .slick-track {
  transform: unset !important;
  width: auto !important;
  justify-content: center;
  flex-wrap: wrap;
  min-width: auto;
}

.galleryPage .sliderBox .gallery_slider_pager a {
  opacity: .5;
  transition: opacity .3s linear;
}

.galleryPage .sliderBox .gallery_slider_pager .slick-current a {
  opacity: 1;
  border-color: var(--color-main);
}

.galleryPage .sliderBox .gallery_slider_pager a:hover {
  cursor: pointer;
}

.galleryPage .sliderBox .gallery_slider_page_list {
  display: inline-block;
  margin: 10px 2px;
  background: #FFF;
  aspect-ratio: 3 / 2;
  height: auto;
  width: 66px !important;
}

.galleryPage .sliderBox .gallery_slider_page_list a {
  display: block;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border: 2px solid #ccc;
  position: relative;
}

.galleryPage .sliderBox .gallery_slider_page_list img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* スライド矢印 */
.galleryPage #sliderArrows {
  width: calc(100% + 50px);
  max-width: 96vw;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: space-between;
  z-index: 2;
}

.galleryPage #sliderArrows img {
  width: 50px;
  height: 50px;
}

.galleryPage #sliderArrows .slide-arrow {
  cursor: pointer;
}


/*概要*/
.galleryPage #dataBox {
  margin-top: var(--gutter-wide);
}

.galleryPage #dataBox .ttl {
  text-align: center;
  font-size: clamp(2rem, 3vw, 2.4rem);
  font-weight: bold;
}

.galleryPage #dataBox dl {
  margin-top: 2.5%;
  box-sizing: border-box;
  background-color: var(--color-palegray);
  border-right: solid 1px #CCC;
  border-bottom: solid 1px #CCC;
  border-left: solid 1px #CCC;
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  font-size: clamp(1.4rem, 2vw, 1.6rem)
}

.galleryPage #dataBox dt,
.galleryPage #dataBox dd {
  border-top: solid 1px #CCC;
  box-sizing: border-box;
  padding: 1.25em;
}

.galleryPage #dataBox dt {
  width: 30%;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
}

.galleryPage #dataBox dd {
  width: 70%;
  background: #FFF;
  border-left: solid 1px #CCC;
}


/*月々支払い例*/
.galleryPage #dataBox dt.monthly,
.galleryPage #dataBox dd.monthlyPayment {
  font-weight: bold;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--color-red);
}

.galleryPage #dataBox .monthlyPayment span.comment {
  display: block;
  font-size: 1.2rem;
  font-weight: normal;
  color: var(--color-black);
  line-height: 1;
}

/*BEFORE/AFTER*/
.galleryPage #baBox {
  margin-top: clamp(30px, 4vw, 50px);
}

.galleryPage #baBox h3 {
  text-align: center;
  font-size: clamp(2rem, 3vw, 2.4rem);
  font-weight: bold;
}

.galleryPage #baBox dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin: clamp(20px, 3vw, 30px) auto;
}

.galleryPage #baBox dt {
  width: 100%;
}

.galleryPage #baBox dt {
  border-bottom: 2px solid #CCC;
  font-size: clamp(1.6rem, 2vw, 1.8rem);
  font-weight: bold;
  padding: 5px;
}

.galleryPage #baBox dd.ba_before,
.galleryPage #baBox dd.ba_after {
  width: 420px;
  max-width: 40%;
  margin-top: 16px;
  background: var(--color-palegray);
  border: 9px solid #FFF;
  box-shadow: 0 0 1px 1px #ccc;
  position: relative;
  aspect-ratio: 3 / 2;
  height: auto;
  box-sizing: content-box;
}

.galleryPage #baBox dd.ba_before img,
.galleryPage #baBox dd.ba_after img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.galleryPage #baBox dd.ba_arrow {
  width: clamp(16px, 5vw, 30px);
  margin: 0 10px;
}

.galleryPage #baBox dd.ba_arrow img {
  width: 100%;
  height: auto;
}

.galleryPage #baBox dd.ba_comment {
  width: 100%;
  margin-top: clamp(10px, 3vw, 20px);
  padding: clamp(10px, 3vw, 20px);
  background: var(--color-palegray);
  word-wrap: break-word;
}

/*************** baBox ****************/
.galleryPage #BAtabBox {
  margin: var(--gutter-wide) auto;
}

.galleryPage #titletabs ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.galleryPage #titletabs ul li {
  line-height: 50px;
  background: var(--color-black);
  color: #fff;
  font-size: 1.5em;
  width: 48%;
  text-align: center;
}

.galleryPage #BAtabBox #BAtab li {
  position: relative;
  background: #fff;
  border: 2px solid var(--color-main);
  display: inline-block;
  margin: 10px 0px 15px 10px;
  padding: clamp(5px, 1vw, 10px) clamp(10px, 2vw, 15px);
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  font-weight: bold;
  cursor: pointer;
  color: var(--color-main);
}

.galleryPage #BAtabBox #BAtab li:after,
.galleryPage #BAtabBox #BAtab li:before {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.galleryPage #BAtabBox #BAtab li:after {
  border-color: rgba(255, 255, 255, 0);
  border-top-color: #fff;
  border-width: 5px;
  margin-left: -5px;
}

.galleryPage #BAtabBox #BAtab li:before {
  border-color: rgba(17, 17, 17, 0);
  border-top-color: var(--color-main);
  border-width: 8px;
  margin-left: -8px;
}

.galleryPage #BAtabBox #BAtab li.select {
  background: var(--color-main);
  color: #fff;
}

.galleryPage #BAtabBox #BAtab li.select:after {
  border-top-color: var(--color-main);
}

.galleryPage #BAtabBox .contitem li {
  position: relative;
  border: 1px solid #ccc;
}

.galleryPage #BAtabBox .contitem ul {
  position: relative;
  display: flex;
  justify-content: space-between;
}

.galleryPage #BAtabBox .contitem ul::after {
  content: "";
  width: 25px;
  height: 25px;
  position: absolute;
  top: 50%;
  left: 50%;
  border-right: 2px solid var(--color-black);
  border-bottom: 2px solid var(--color-black);
  transform: translate(-50%, -50%) rotate(-45deg);
  transform-origin: left;
}

.galleryPage #BAtabBox .contitem li {
  width: 48%;
  text-align: center;
  border: 1px solid #ccc;
  box-sizing: border-box;
  display: inline-block;
  position: relative;
}

.galleryPage #BAtabBox .contitem li:last-child {
  margin-right: 0;
}

.galleryPage #BAtabBox .contitem img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 2;
  object-fit: contain;
}

.galleryPage #BAtabBox .contitem li p {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  background: rgba(0, 0, 0, 0.8);
  padding: 10px;
  font-size: clamp(1.4rem, 2vw, 1.6rem);
}

/*************** madoriPhotoBox ****************/
.galleryPage .madoriPhotoBox {
  margin: var(--gutter-wide) auto;
  padding: var(--gutter-wide) 0;
  position: relative;
  background: var(--color-palegray);
}

.galleryPage .madoriPhotoBox ul::before {
  content: "";
  width: 25px;
  height: 25px;
  position: absolute;
  top: 50%;
  left: 50%;
  border-right: 2px solid var(--color-black);
  border-bottom: 2px solid var(--color-black);
  transform: translate(-50%, -50%) rotate(-45deg);
  transform-origin: left;
}

.galleryPage .madoriPhotoBox ul {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background-size: 15px;
  position: relative;
}

.galleryPage .madoriPhotoBox ul li {
  width: 48%;
  position: relative;
  background: #fff;
  border: 1px solid #ccc;
  text-align: center;
}

.galleryPage .madoriPhotoBox ul li p {
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  font-weight: bold;
  border: 1px solid rgba(0, 0, 0, 0.7);
  background: rgba(255, 255, 255, 0.7);
  padding: 10px;
}

.galleryPage .madoriPhotoBox ul li img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 2;
  object-fit: contain;
}

/*************** otherBox ****************/
.galleryPage .otherBox {
  margin-top: var(--gutter-wide);
}

/*
===== 店舗案内：shopPage ==========================================
*/
.shopPage .bannerWrap {
  margin: 50px auto;
  text-align: center;
}

.shopPage .countBox__ttl {
  background-color: var(--color-main);
  padding: 10px 0 20px;
  text-align: center;
  font-size: 30px;
  font-weight: bold;
  color: #fff;
  position: relative;
}

.shopPage .countBox__ttl::before {
  position: absolute;
  content: '';
  width: 52px;
  height: 52px;
  border: 26px solid transparent;
  border-top: 26px solid var(--color-main);
  bottom: -52px;
  left: 50%;
  transform: translateX(-50%);
}

.shopPage .countBox__ttl span {
  font-size: 70px;
  font-family: var(--font-en);
  position: relative;
  top: 2px;
}

/*
===== スタッフ紹介:staffPage ==========================================
*/
/*一覧*/
.staffPage .itemList {
  margin-top: var(--gutter);
}

.staffPage .itemList .List {
  display: flex;
  flex-wrap: wrap;
}

.staffPage .itemList .List .item {
  width: 33%;
  margin-bottom: 30px;
}

.staffPage .itemList .item a {
  display: block;
}

.staffPage .itemList .photo {
  display: block;
  width: 200px;
  height: 200px;
  margin: 0 auto 10px;
  overflow: hidden;
  border-radius: 100%;
}

.staffPage .itemList .info,
.staffPage .itemList .info span.cate,
.staffPage .itemList .info .ttl {
  text-align: center;
}

.staffPage .itemList .info span.cate {
  margin-bottom: 10px;
}

.staffPage .itemList .info .ttl {
  font-size: 1.2em;
  font-weight: bold;
}

/*詳細*/
.staffPage #detailBox {
  background: #F5F5F5;
  margin-bottom: 50px;
  padding: 30px 0;
}

.staffPage #detailBox .infoBox {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 20px;
  max-width: var(--width-content);
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.staffPage #detailBox .inner {
  width: 40%;
  flex-shrink: 0;
}

.staffPage #detailBox #titleBox {
  text-align: center;
  margin-top: 10px;
}

.staffPage #detailBox #content {
  flex-grow: 1;
}

.staffPage #detailBox #titleBox span.cate {
  margin-bottom: 5px;
  display: inline-block;
}

.staffPage #detailBox #titleBox .ttl {
  font-size: 1em;
}

.staffPage #detailBox #titleBox .ttl span {
  font-weight: bolder;
  font-size: 1.8em;
}

.staffPage #content .ttl {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
  border-bottom: solid 2px var(--color-darkgray);
  padding-bottom: 10px;
}

.staffPage #articleBox {
  margin-top: 30px;
  margin-bottom: 50px;
}

.staffPage #articleBox dl {
  font-size: 1.2em;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.staffPage #articleBox dl dt {
  width: 26%;
  padding: 20px;
  font-weight: bold;
  border-bottom: dotted 1px #333;
}

.staffPage #articleBox dl dd {
  width: 66%;
  padding: 20px;
  border-bottom: 1px dotted #333;
  flex-grow: 1;
}

.staffPage #columnlinkBox {
  margin: 30px auto;
  padding: 10px;
  border: 4px solid #ccc;
  text-align: center;
  position: relative;
}

.staffPage #columnlinkBox a {
  display: flex;
  justify-content: center;
  align-items: center;
}

.staffPage #columnlinkBox:after,
.staffPage #columnlinkBox:before {
  bottom: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}

.staffPage #columnlinkBox:after {
  border-bottom-color: #FFF;
  border-width: 10px;
  margin-left: -10px;
}

.staffPage #columnlinkBox:before {
  border-bottom-color: #ccc;
  border-width: 16px;
  margin-left: -16px;
}

.staffPage #columnlinkBox .photo {
  width: 80px;
  height: 80px;
  margin-right: 20px;
  overflow: hidden;
  border-radius: 100%;
  vertical-align: middle;
  display: inline-block;
}

.staffPage #columnlinkBox .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.staffPage #columnlinkBox .info {
  display: inline-block;
  vertical-align: middle;
  font-weight: bold;
}

/* 0件の時 */
.staffPage .errorBox {
  margin-top: var(--gutter);
}

/*
===== 会社案内:companyPage ==========================================
*/
.companyPage .entrytbl {
  margin-top: var(--gutter);
}

/*
===== フォームページ ==========================================
*/
.contactPage .entrytbl {
  margin-top: 0
}

/*
===== 家探し5つのポイント ==========================================
*/
/* 目次 */
.pointPageToc {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: var(--gutter);
  align-items: stretch;
}

.pointPageToc__item {
  flex: 1;
  font-size: clamp(1.4rem, 1.5vw, 1.8rem);
}

.pointPageToc__inner {
  background: var(--color-main);
  border: 2px solid var(--color-main);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-weight: bold;
  color: #fff;
  border-radius: var(--rad-common);
  padding: 1em 0.5em 1.5em;
  text-align: center;
  position: relative;
  line-height: 1.4;
  font-feature-settings: 'palt';
  letter-spacing: 0.05em;
  transition: 0.3s;
  height: 100%;
  height: 6.5em;

}

.pointPageToc__inner::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateX(-50%) rotate(45deg);
  position: absolute;
  bottom: 15px;
  left: 50%;
  transition: 0.3s;
}

@media (any-hover:hover) {
  .pointPageToc__link:hover {
    opacity: 1;
  }

  .pointPageToc__inner:hover {
    background: #fff;
    color: var(--color-main);
  }

  .pointPageToc__inner:hover::after {
    bottom: 10px;
    border-color: var(--color-main);
  }
}

.pointPageToc__numWrap {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-family: var(--font-en);
  white-space: nowrap;
  color: var(--color-main);
  line-height: 1;
  gap: 5px;
  margin-bottom: 5px;
  font-weight: bold;
}

.pointPageToc__numWrap::before {
  content: "";
  width: 1px;
  height: 0.8em;
  border-left: 2px solid var(--color-main);
  transform: rotate(-30deg);
  display: block;
  position: relative;
  margin-right: 0.5em;
}

.pointPageToc__numWrap::after {
  content: "";
  width: 1px;
  height: 0.8em;
  border-left: 2px solid var(--color-main);
  transform: rotate(30deg);
  display: block;
  position: relative;
  margin-left: 0.5em;
}

.pointPageToc__num {
  font-size: 1.5em;
  line-height: 1;
  position: relative;
  top: 2px;
}

/* 共通パーツ */
.pointPage__marker {
  background: linear-gradient(transparent 10%, rgba(152, 255, 85, 0.6) 10%);
}

.pointPage__underline {
  text-decoration: underline;
  text-underline-offset: 5px;
  color: yellow;
}

.pointPage__check {
  padding-left: 1.5em;
  position: relative;

}

.pointPage__check::before {
  content: "";
  width: 1.2em;
  height: 1.2em;
  background: url(../img/page/point/icon_check_mancolor_01.svg) no-repeat center / contain;
  display: block;
  position: absolute;
  top: 0.2em;
  left: 0;
}

/* タイトル */
.pointPage #bread {
  text-shadow: 0 0 3px #fff;
}

.pointPage__ttlWrap {
  background: url(../img/page/point/main_ttl_bg.webp) no-repeat center bottom / cover;
}

.pointPage__mainTtl {
  font-size: clamp(2.2rem, 5.7vw, 4rem);
  padding: 0.9em 1.4em;
  background: rgba(255, 255, 255, 0.9);
  width: fit-content;
  margin: 0 auto;
  color: var(--color-main);
  line-height: 1;
  border-radius: var(--rad-common);
}

.pointPage__mainTtlSub {
  font-size: 0.55em;
  color: var(--color-black);
  position: relative;
}

.pointPage__mainTtlSub::before {
  content: "";
  width: 1px;
  height: 0.9em;
  border-left: 2px solid currentColor;
  transform: rotate(-30deg);
  display: block;
  position: absolute;
  left: -0.7em;
  bottom: 0.1em;
}

.pointPage__mainTtlSub::after {
  content: "";
  width: 1px;
  height: 0.9em;
  border-left: 2px solid currentColor;
  transform: rotate(30deg);
  display: block;
  position: absolute;
  right: -0.7em;
  bottom: 0.1em;
}

.pointPage__mainTtlNum {
  font-family: var(--font-en);
  font-size: 2em;
  position: relative;
  top: 3px;
  letter-spacing: 0;
  line-height: 1;
}


/* ポイント一覧 */
.pointPageItem {
  margin: var(--gutter-wide) auto;
}

.pointPageItem__flex {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 10%;
  width: min(96%, var(--width-content));
  margin: 0 auto;
}

.pointPageItem:nth-of-type(even) .pointPageItem__flex {
  flex-direction: row-reverse;
}

.pointPageItem__txtBox {
  width: 50%;
  background: rgba(255, 255, 255, 0.5);
  padding: 0 16px 16px;
}

.pointPageItem__imgBox {
  width: 40%;
  border-radius: 50%;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  height: auto;
  z-index: 1;
}

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

.pointPageItem__ttl {
  font-size: clamp(2rem, 6.2vw, 3rem);
  font-weight: bold;
  color: var(--color-main);
  display: flex;
  flex-direction: column;
  margin-bottom: var(--gutter-narrow);
  font-feature-settings: 'palt';
  letter-spacing: 0.05em;
}

.pointPageItem__ttlNum {
  font-size: 1.8rem;
  width: fit-content;
  background: var(--color-main);
  border-radius: var(--rad-common);
  color: #fff;
  padding: 10px 20px;
  line-height: 1;
  position: relative;
  margin-bottom: 10px;
}

.pointPageItem__txt {
  font-size: 1.5rem;
  line-height: 1.6;
}

.pointPageItem__txt:not(:last-child) {
  margin-bottom: 1.5em;
}

/* pointPageCriteria */
.pointPageExplanationBox {
  position: relative;
  padding-top: 110px;
  margin-top: -80px;
  padding-bottom: var(--gutter-wide);
  position: relative;
}

.pointPageExplanationBox--cost {
  margin-top: -220px;
}

.pointPageExplanationBox::before {
  content: "";
  background-color: var(--color-palemain);
  z-index: -1;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}

.pointPageExplanationBox__inner {
  background: #fff;
  border-radius: 40px;
}

.pointPageCriteria {
  margin: var(--gutter) auto;
  padding: 0 60px;
}

.pointPageCriteria__ttl {
  position: relative;
  top: -30px;
  text-align: center;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  width: min(100%, 500px);
  margin: 0 auto;
  color: #fff;
  background: var(--color-main);
  border-radius: 10px;
  padding: 10px;
  position: relative;
  font-size: clamp(1.6rem, 2.2vw, 2rem);
}

.pointPageCriteria__ttl::before {
  content: "";
  width: clamp(60px, 8vw, 80px);
  height: auto;
  aspect-ratio: 1 / 1;
  background: url(../img/page/point/icon_moyamoya_black_01.webp) no-repeat center / contain;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(calc(-50% + -180px));
}

.pointPageCriteria__ttlBottom {
  font-size: 1.5em;

}

.pointPageCriteria__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.pointPageCriteria__item:last-of-type {
  grid-column: span 2;
}

.pointPageCriteria__subTtl {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.5em;
  color: var(--color-main);
  font-feature-settings: 'palt';
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
}

.pointPageCriteria__subTtlNum {
  width: 1.5em;
  height: 1.5em;
  font-size: 0.9em;
  margin-right: 5px;
  line-height: 1;
  color: #fff;
  font-family: var(--font-en);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-main);
}

.pointPageCriteria__subList {
  padding-left: 4px;
}

.pointPageCriteria__subItem,
.pointPageItem__exItem {
  font-size: 1.4rem;
  padding-left: 1.4em;
  position: relative;
  line-height: 1.4;
}

.pointPageCriteria__subItem {
  font-size: 1.3rem;
}

.pointPageCriteria__subItem::before,
.pointPageItem__exItem::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  position: absolute;
  top: 0.6em;
  left: 0.4em;
  background: var(--color-main);
}

.pointPageCriteria__subItem:not(:last-of-type),
.pointPageItem__exItem:not(:last-of-type) {
  margin-bottom: 0.7em;
}

.pointPageAdvice {
  padding: 60px 60px;
  position: relative;
  z-index: 0;
  background: var(--color-main);
  color: #fff;
  border-radius: 0 0 40px 40px;
}

.pointPageAdvice::before {
  width: 140px;
  height: auto;
  aspect-ratio: 140 / 40;
  background-color: #fff;
  content: "";
  display: block;
  position: absolute;
  top: -1px;
  left: 50%;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  z-index: -1;
  transform: translateX(-50%);
}

.pointPageAdvice__ttl {
  font-size: clamp(2rem, 6.2vw, 2.8rem);
  font-weight: bold;
  text-align: center;
  margin-bottom: var(--gutter-narrow);
  position: relative;
}

.pointPageAdvice__ttl::before {
  content: "";
  width: 150px;
  height: auto;
  aspect-ratio: 1 / 1;
  background: url(../img/page/point/icon_question_white_01.svg) no-repeat center / contain;
  position: absolute;
  top: -40px;
  right: -40px;
  opacity: 0.4;
}

.pointPageAdvice__intro {
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: var(--gutter-narrow);
}

.pointPageAdvice__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 10px;
}

.pointPageAdvice__item {
  padding: 30px;
  background: #fff;
  color: var(--color-black);
}

.pointPageAdvice__subTtl {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.5em;
}

.pointPageItem__exList {
  margin-bottom: 1em;
  background: var(--color-palegray);
  padding: 20px;
}

.pointPageCost {
  padding: 60px 0 0;
}

.pointPageCost__item {
  padding: 0 60px;
}

.pointPageCost__item:not(:last-child) {
  margin-bottom: 50px;
}

.pointPageCost__item--summary {
  background: var(--color-main);
  color: #fff;
  padding: 50px 60px 60px;
  border-radius: 0 0 40px 40px;
}

.pointPageCost__item--summary .pointPageCost__ttl {
  text-align: center;
  font-size: clamp(2rem, 6vw, 3rem);
  position: relative;
  width: fit-content;
  margin: 0 auto var(--gutter-narrow);
}


.pointPageCost__item--summary .pointPageCost__ttl::before {
  content: "";
  width: auto;
  height: 1.07em;
  aspect-ratio: 16 / 28;
  background: url(../img/common/deco_prpregist_01.svg) no-repeat center / contain;
  position: absolute;
  left: -0.92em;
  top: 50%;
  transform: scaleX(-1) translateY(-50%);
  filter: brightness(10) grayscale();
}

.pointPageCost__item--summary .pointPageCost__ttl::after {
  content: "";
  width: auto;
  height: 1.07em;
  aspect-ratio: 16 / 28;
  background: url(../img/common/deco_prpregist_01.svg) no-repeat center / contain;
  position: absolute;
  right: -0.92em;
  top: 50%;
  transform: translateY(-50%);
  filter: brightness(10) grayscale();
}

.pointPageCost__ttl {
  font-weight: bold;
  font-size: clamp(2rem, 5vw, 2.4rem);
  margin-bottom: 0.5em;

}

.pointPageCost__txt {
  font-size: 1.5rem;
}

.pointPageCost__item--summary .pointPageCost__txt {
  font-size: clamp(1.4rem, 2vw, 1.6rem);
}

.pointPageCost__txt:not(:last-child) {
  margin-bottom: 1.5em;
}

.pointPage__bannerWrap {
  margin-top: 0;
}

.pointPage__bannerWrapTxt {
  text-align: center;
  font-weight: bold;
  font-size: clamp(2rem, 3vw, 2.8rem);
  position: relative;
  width: fit-content;
  margin: 0 auto 0.5em;
}

.pointPage__bannerWrapTxt::before {
  content: "";
  width: 1px;
  height: 0.9em;
  border-left: 2px solid currentColor;
  transform: rotate(-30deg);
  display: block;
  position: absolute;
  left: -0.4em;
  bottom: 0.2em;
}

.pointPage__bannerWrapTxt::after {
  content: "";
  width: 1px;
  height: 0.9em;
  border-left: 2px solid currentColor;
  transform: rotate(30deg);
  display: block;
  position: absolute;
  right: -0.4em;
  bottom: 0.2em;
}

/*==================================================
  tablet SETTINGS : Min768px Max1080px
==================================================*/
@media screen and (min-width: 768px) and (max-width: 1080px) {
  .wp-pagenavi {
    width: 96%;
  }

  /*
===== 来店予約 Tablet ==========================================
*/
  .shop-reservePage .meritBox .meritList {
    gap: 2%;
  }

  .shop-reservePage .meritBox .meritList li {
    width: 92%;
  }

  .shop-reservePage .meritBox .item dl.count dt {
    margin: 15px 0 0;
  }

  /* 来店予約フロー */
  .shop-reservePage .flowBox {
    padding: 0 2%;
  }

  .shop-reservePage .flowList {
    flex-direction: column;
  }

  .shop-reservePage .flowItem {
    width: 100%;
    flex-direction: unset;
    padding: 10px 20px;
    justify-content: flex-start;
  }

  .shop-reservePage .flowItem+.flowItem::before {
    left: 50%;
    top: -15%;
    transform: rotate(90deg) translate(-50%, 0);
  }

  .shop-reservePage .flowItem h3 {
    width: 30%;
    text-align: left;
    margin-bottom: 0;
    font-size: 2.2rem;
  }

  .shop-reservePage .flowItem br {
    display: none;
  }

  .shop-reservePage .flowItem p {
    width: 50%;
    text-align: left;
    margin-bottom: 0;
    font-size: 1.6rem;
  }

  .shop-reservePage .flowItem .icon {
    width: 80px;
    height: 80px;
    text-align: center;
  }

  .shop-reservePage .flowItem .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .shop-reservePage .flowItem:nth-child(4) .icon {
    margin-left: 5px;
  }

  /* 店舗案内 Talbet */
  .shopPage .bannerWrap {
    width: 96%;
  }

  .staffPage #detailBox .infoBox {
    width: 96%;
  }

  /*
===== 家探し5つのポイント ==========================================
*/
  .pointPageItem__flex {
    gap: 3%;
  }

  .pointPageItem__txtBox {
    width: 60%;
  }

  .pointPageItem__imgBox {
    width: 37%;
  }

  .pointPageExplanationBox--cost {
    margin-top: -80px;
  }
}

/*==================================================
  SP SETTINGS : Max767px
==================================================*/
@media screen and (max-width: 767px) {

  /*==================================================
	GENERAL SETTINGS
==================================================*/
  .navigation {
    font-size: 1.2rem;
  }

  .wp-pagenavi {
    width: 96%;
  }

  .gmap_view {
    margin: 10px;
    border: 1px solid #E6E6E6;
    height: 300px;
    clear: both;
  }

  .gmap_view img {
    width: auto !important;
  }

  .yolp-ymapbanner {
    width: 150px !important;
    top: inherit !important;
    right: inherit !important;
    bottom: 26px !important;
  }

  .yolp-ymapbanner img {
    width: 100% !important;
    height: auto !important;
  }

  .yolp-ctrl .map {
    width: auto !important;
  }

  .map {
    width: 98% !important;
    height: auto;
    margin: 10px auto;
    clear: both;
  }

  .map iframe {
    height: 300px !important;
  }

  .mapp-canvas,
  .mapp-layout {
    width: 98% !important;
    height: 300px;
    margin: auto;
    border: 1px solid #E6E6E6;
    clear: both;
  }

  #map {
    width: 98% !important;
    height: auto;
    margin: 10px auto;
  }

  #map iframe {
    width: 100% !important;
    height: 300px !important;
  }

  /*ACFでMAPを表示*/
  .acf-map {
    height: 300px;
    margin: 0;
  }

  /*共通シングル*/
  .singlePage #titleBox .secTtl {
    margin-top: 5px;
  }

  .singlePage #articleBox .notice_tbl {
    width: 100%;
    border: 1px solid #E6E6E6;
    border-bottom: none;
  }

  .singlePage #articleBox .notice_tbl th {
    width: 100%;
    padding: 10px;
    display: block;
    border: none;
  }

  .singlePage #articleBox .notice_tbl td {
    padding: 10px;
    border: none;
    border-top: 1px solid #E6E6E6;
    border-bottom: 1px solid #E6E6E6;
    display: block;
  }

  .singlePage #btnBox {
    margin-bottom: 30px;
  }

  .singlePage #btnBox p.btn_reserve,
  .singlePage #btnBox p.btn_end {
    width: 100%;
  }

  .singlePage #btnBox p.btn_reserve a {
    margin: 0 auto;
    padding: 20px 30px 20px 20px;
    width: 100%;
  }

  .singlePage #btnBox p.btn_end {
    width: 90%;
  }

  .singlePage #mapBox .ttl {
    padding: 10px;
  }

  /*
===== 送信完了ページ ==========================================
*/
  .page_title01 {
    font-size: 25px;
    padding: 20px 0;
    margin-bottom: 30px;
  }

  .btn_returntop a {
    font-size: 16px;
    margin: 30px auto;
  }

  /*
===== 中古を買ってリフォーム:renovationPage ==========================================
*/
  .reformPage .ttlWrap .mainTtl {
    padding: 2.5%;
  }

  .reformPage .contents-inner {
    margin-bottom: 7.5%;
  }

  .reformPage h2.mainttl {
    background: url(../img/page/renovation/main_ttl_bg.webp) no-repeat top center;
    background-size: cover;
    padding: 2.5%;
  }

  .reformPage .catchBox .inner-top {
    margin-bottom: 2.5%;
    padding: 5% 2.5%;
    background-color: var(--color-palegray);
  }

  .reformPage .catchBox .inner-bottom {
    padding: 0 2.5%;
  }

  .reformPage .catchBox .inner-bottom p.figure {
    text-align: center;
    margin-bottom: 2.5%;
  }

  .reformPage .catchBox .inner-bottom p.figure .com {
    padding: 0 !important;
  }

  .reformPage .meritBox h2 {
    padding: 5%;
  }

  .reformPage .meritBox h2 span {
    display: inline-block;
  }

  .reformPage .meritBox #merit_index {
    padding: 20px 0;
  }

  .reformPage .meritBox #merit_index ul {
    margin: 10px;
    flex-direction: column;
  }

  .reformPage .meritBox #merit_index ul li {
    border: 2px solid #333;
    background: #FFF;
    margin-bottom: 5px;
    width: 100%;
  }

  .reformPage .meritBox #merit_index ul li a {
    background: url(../img/page/renovation/meritBox_itemList_arrow.webp) no-repeat 98% center;
    background-size: 30px;
    padding: 11px 40px 15px 10px;
    display: flex;
    align-items: center;
  }

  .reformPage .meritBox #merit_index ul li span.num {
    font-size: clamp(14px, 4vw, 18px);
    margin-right: 10px;
  }

  .reformPage .meritBox #merit_index ul li span.num span {
    margin-left: 5px;
    font-size: 20px;
  }

  .reformPage .meritBox #merit_index ul li span.com {
    font-size: clamp(14px, 4vw, 18px);
    margin: 0 !important;
    text-align: left;
  }

  .reformPage .meritBox .inner h3 {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
  }

  .reformPage .meritBox .inner h3 span.num {
    display: block;
    background: var(--color-main);
    text-align: center;
    color: #FFF;
    margin-bottom: 5px;
    width: 100%;
    line-height: 1.6;
    max-width: unset;
    font-size: 17px;
  }

  .reformPage .meritBox .inner h3 span.num span {
    font-size: 16px;
    margin-left: 5px;
  }

  .reformPage .meritBox .inner .contentBox {
    margin: 15px 0;
    font-size: 14px;
  }

  .reformPage .meritBox .inner .btnBox {
    margin-top: 20px;
    background: #333;
    border-radius: 5px;
  }

  .reformPage .meritBox .inner .btnBox a {
    padding: 5vw 14vw 5vw 10vw;
    background: url(../img/page/renovation/meritBox_btn_arrow.webp) no-repeat right 5% center/4%;
    font-size: 16px;
    width: 100%;
  }

  .reformPage .meritBox .merit01,
  .reformPage .meritBox .merit03 {
    padding: 5% 2.5%;
    background-color: var(--color-palegray);
    margin-bottom: 10px;
  }

  .reformPage .meritBox .merit02,
  .reformPage .meritBox .merit04 {
    padding: 2.5%;
  }

  .reformPage .meritBox .merit03 .itemBox ul {
    flex-direction: column;
  }

  .reformPage .meritBox .merit03 .itemBox ul li {
    width: 80%;
    padding: 5%;
    font-size: clamp(14px, 4.5vw, 18px);
    margin: 0 auto 5px;
    border-radius: 10px;
    height: unset;
    flex-direction: column;
    justify-content: center;
  }

  .reformPage .meritBox .merit03 .itemBox ul li i {
    font-size: 22px;
    display: block;
    color: #D0CC99;
    margin-bottom: 5px;
    position: static;
    text-align: center;
    transform: none;
  }

  .reformPage .meritBox .merit04 .questionBox {
    border: 3px solid #333333;
    margin: 20px;
    padding: 10px 20px;
  }

  .reformPage .meritBox .merit04 .questionBox h5 {
    font-size: 20px;
  }

  .reformPage .meritBox .merit04 .questionBox p {
    font-size: 16px;
    margin-top: 10px;
  }

  .reformPage .meritBox .merit04 .questionBox p span {
    color: var(--color-orange);
    font-size: 16px;
    font-weight: bold;
  }

  .reformPage .reasonBox {
    margin-top: 30px;
    background: url(../img/page/renovation/reasonBox_bg.webp) no-repeat center center;
    padding: 10% 2%;
    background-size: cover;
  }

  .reformPage .reasonBox p.catch {
    font-weight: bold;
    text-align: center;
  }

  .reformPage .reasonBox p.catch span {
    color: var(--color-orange);
    font-size: 16px;
    display: block;
    text-align: center;
  }

  .reformPage .reasonBox h2 {
    padding: 2.5%;
    font-size: clamp(19px, 6vw, 22px);
  }

  .reformPage .reasonBox .itemList_reason {
    margin-bottom: 5%;
    flex-direction: column;
  }

  .reformPage .reasonBox .itemList_reason li {
    padding: 2.5% 0;
    margin-top: 2.5%;
    width: 100%;
  }

  .reformPage .reasonBox .itemList_reason li span.num {
    font-size: 16px;
  }

  .reformPage .reasonBox .itemList_reason li span.com {
    font-size: 16px;
    margin: 10px 0 !important;
  }

  .reformPage .reasonBox .itemList_link li {
    margin: 2.5% 0;
  }

  .reformPage .reasonBox .itemList_link li a {
    padding: 7.5% 5%;
    color: #333;
    border: 1px solid #333;
    border-radius: 3px;
    font-size: 16px;
  }

  .reformPage .reasonBox .itemList_link li a::after {
    width: 10px;
    height: 10px;
    border-top: 2px solid #333;
    border-right: 2px solid #333;
  }

  /*来店予約・会員登録訴求、電話番号Box:.contact*/
  .reformPage .contact .contactBox {
    margin-top: 30px;
    flex-direction: column;
  }

  .reformPage .contact .contactBox .shop_reserve,
  .reformPage .contact .contactBox .emember {
    border: 3px solid #333;
    margin: 10px 2%;
    max-width: unset;
    width: 96%;
  }

  .reformPage .contact .contactBox .infoWrap {
    padding: 10px;
  }

  .reformPage .contact .contactBox h3 {
    background: #333;
    text-align: center;
    color: #FFF;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 0;
  }

  .reformPage .contact .contactBox dl.count dt {
    padding: 5px;
    font-size: clamp(15px, 4.7vw, 18px);
  }

  .reformPage .contact .contactBox dl.count dd span {
    font-size: 2.4em;
    vertical-align: middle;
  }

  .reformPage .contact .contactBox p {
    height: unset;
    margin: 0 0 10px;
    font-size: clamp(16px, 5vw, 20px);
  }

  .reformPage .contact .btn_reserve,
  .reformPage .contact .btn_emember {
    font-size: clamp(20px, 7vw, 24px);
  }

  .reformPage .contact .contactBox .btn {
    padding: 10px;
  }

  .reformPage .contact .phone_number {
    padding: 5%;
    margin: 2.5%;
  }

  .reformPage .contact .phone_number p.com {
    font-size: 16px;
    padding: 2.5% 0;
  }

  .reformPage .contact .phone_number dl {
    margin-bottom: 2.5%;
    flex-direction: column;
    width: 100%;
  }

  .reformPage .contact .phone_number dt {
    padding: 3px 15px;
    font-size: 16px;
  }

  .reformPage .contact .phone_number dd {
    font-size: clamp(30px, 9vw, 35px);
    margin: 0;
  }

  /*
===== 来店予約 Tablet ==========================================
*/
  .shop-reservePage .ttlWrap {
    background: url(../img/page/shop_reserve/main_ttl_bg_sp.webp) no-repeat top center/cover;
  }

  .shop-reservePage .mainTtl {
    max-width: 100%;
    margin-right: auto;
    margin-left: 0;
    width: 67%;
    position: relative;
    left: -20px;
  }

  .shop-reservePage #bread {
    color: #fff;
  }

  .shop-reservePage #bread>span:not(:last-child)::after {
    border-color: #fff;
  }

  /* 来店予約フロー */
  .shop-reservePage .flowList {
    flex-direction: column;
    gap: 10px;
  }

  .shop-reservePage .flowItem {
    width: 100%;
    flex-direction: unset;
    padding: 10px;
    justify-content: flex-end;
    height: 110px;
  }

  .shop-reservePage .flowItem+.flowItem::before {
    left: 50%;
    top: -10%;
    transform: rotate(90deg) translate(-50%, 50%);
    width: 30px;
    height: 30px;
  }

  .shop-reservePage .flowItem h3 {
    width: 7em;
    flex-shrink: 0;
    text-align: left;
    font-feature-settings: 'palt';
    margin-bottom: 0;
    font-size: clamp(12px, 4.2vw, 20px);
  }

  .shop-reservePage .flowItem p {
    text-align: left;
    margin-bottom: 0;
    font-size: clamp(12px, 3.7vw, 16px);
    flex-grow: 1;
  }

  .shop-reservePage .flowBox .comment {
    font-size: clamp(18px, 5vw, 23px);
  }

  .shop-reservePage .flowItem .icon {
    width: 70px;
    height: 70px;
    text-align: center;
    flex-shrink: 0;
  }

  .shop-reservePage .flowItem .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .shop-reservePage .flowItem:nth-child(4) .icon {
    width: 60px;
    height: 60px;
  }

  /*
===== お知らせ:topicsPage ==========================================
*/
  /*お知らせ:一覧*/
  .topicsPage #postbox {
    margin-top: 5%;
  }

  .topicsArchive__item a {
    flex-direction: column;
    align-items: flex-start;
  }

  /*
===== イベント情報:eventPage  ==========================================
*/
  /*イベント情報:一覧*/
  .eventArchive__list {
    width: 100%;
  }

  .eventArchive__item {
    width: 100%;
  }

  .eventArchive__itemTtl {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    white-space: initial;
  }

  .eventArchive__btn a {
    margin-right: auto;
  }

  /*イベント情報:詳細*/
  .eventPage.singlePage #titleBox .secTtl {
    font-size: 1.6rem;
  }

  /*
===== スタッフコラム:columnPage ==========================================
*/
  /*スタッフコラム:一覧*/
  .columnPage #postbox {
    margin-top: 5%;
  }

  .columnPage .itemList li.item {
    position: relative;
  }

  .columnPage .itemList li.item a {
    padding: 2.5%;
  }

  .columnPage .itemList .item:nth-child(odd) a {
    border: none;
    background-color: #fff;
  }

  .columnPage .itemList .item:nth-child(even) {
    border-top: 1px solid #E0E0E0;
    border-bottom: 1px solid #E0E0E0;
  }

  .columnPage .itemList li.item .photo {
    width: 32%;
    margin: 0;
  }

  .columnPage .itemList li.item .info {
    width: 68%;
    padding: 10px 0 35px 10px;
  }

  .columnPage .itemList li.item .info .ttl {
    margin: 5px 0;
    padding: 0;
  }

  .columnPage .itemList li.item .iconWrap {
    font-size: 1.4rem;
  }

  .columnPage .itemList li.item .date {
    margin-right: 5px;
  }

  .columnPage .itemList .item .term {
    margin: 0;
  }

  /*スタッフコラム:詳細*/
  .columnPage #titleBox .secTtl {
    border-top: 1px solid #E0E0E0;
    margin-top: 10px;
  }

  .columnPage #detailBox .term {
    margin: 0;
    font-size: 1.3rem;
  }

  /*
===== よくある質問:qaPage ==========================================
*/
  .qaPage .itemList {
    margin-top: 0;
  }

  .qaPage #accordion li {
    margin-bottom: 2px;
  }

  .qaPage #accordion dt {
    padding: 20px 40px;
    background-size: 20px auto;
  }

  .qaPage #accordion dt.open:after {
    width: 25px;
    height: 25px;
  }

  .qaPage #accordion dt.close:after {
    width: 25px;
    height: 25px;
  }

  .qaPage #accordion dd {
    padding: 20px;
  }


  /*
===== 施工事例:galleryPage ==========================================
*/
  /*施工事例:一覧*/
  .galleryBox__list {
    flex-direction: column;
  }

  .galleryBox__item {
    width: 90%;
  }

  /*施工事例:詳細*/
  .galleryPage #titleBox .icon {
    position: relative;
    top: 0;
  }

  /*lightbox*/
  .galleryPage .lbwrap a:after {
    width: 20px;
    height: 20px;
  }

  /*スライド*/
  .galleryPage .sliderBox {
    width: 100%;
    margin: 10px auto;
  }

  .galleryPage .sliderBox .slider__list {
    margin: 20px;
  }

  .galleryPage .sliderBox .slider__list__item {
    max-height: 56vw;
  }

  /* スライドページャー */
  .galleryPage .sliderBox .gallery_slider_pager {
    padding: 5px 0;
  }

  .galleryPage .sliderBox .gallery_slider_pager li {
    margin: 2px;
    width: 64px !important;
  }

  /* 写真と金額 */
  .galleryPage .infoBox {
    flex-direction: column;
  }

  .galleryPage .infoBox__photo {
    width: 100%;
    margin: 0 auto 20px;
  }

  .galleryPage .infoBox__inner {
    width: 100%;
    margin: 0 auto;
  }

  .galleryPage .infoBox__inner__priceBox {
    padding: 0.5em;
  }

  .galleryPage .infoBox__inner__priceBox p .price {
    margin: 0;
  }

  .galleryPage .infoBox__inner__costBox {
    margin: 2%;
  }

  .galleryPage .infoBox__inner__costBox p .price02 {
    margin: 0 0.1em 0 0;
  }

  .galleryPage .infoBox__inner__costBox__txt {
    display: block;
  }

  /*概要*/
  .galleryPage #dataBox dt {
    background: #F2F2F2;
    width: 40%;
  }

  .galleryPage #dataBox dd {
    width: 60%;
    display: flex;
    align-items: center;
  }

  /*************** baBox ****************/
  .galleryPage #BAtabBox .contitem li {
    width: 100%;
    margin: 0;
  }

  .galleryPage #BAtabBox .contitem ul {
    flex-direction: column;
    gap: 30px;
  }

  .galleryPage #BAtabBox .contitem ul::after {
    transform: rotate(45deg) translate(-50%, -50%);
    transform-origin: top;
    width: 20px;
    height: 20px;
  }

  /*************** madoriPhotoBox ****************/
  .galleryPage .madoriPhotoBox ul {
    flex-direction: column;
    gap: 30px;
  }

  .galleryPage .madoriPhotoBox ul li {
    width: 100%;
  }

  .galleryPage .madoriPhotoBox ul::before {
    transform: rotate(45deg) translate(-50%, -50%);
    transform-origin: top;
    width: 20px;
    height: 20px;
  }



  /*//////////////
店舗案内：shopPage
///////////////////*/
  /* 店舗案内 */
  .shopPage .countBox__ttl {
    font-size: 17px;
    padding: 10px 0;
  }

  .shopPage .countBox__ttl::before {
    width: 42px;
    height: 42px;
    border-width: 21px;
    bottom: -42px;
  }

  .shopPage .countBox__ttl span {
    font-size: 40px;
  }

  .shopPage .bannerWrap {
    width: 96%;
    margin: 40px auto;
  }

  /*//////////////
スタッフ紹介：staffPage
////////////////////////*/
  /*一覧*/
  .staffPage .itemList {
    margin: 10px;
  }

  .staffPage .itemList ul.List {
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    /* Safari */
    justify-content: space-between;
  }

  .staffPage .itemList ul.List li.item {
    width: 48%;
    margin-bottom: 30px;
    text-align: center;
  }

  .staffPage .itemList ul.List li.item a {
    display: block;
  }

  .staffPage .itemList ul.List li.item .photo {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    margin-bottom: 10px;
    overflow: hidden;
    border-radius: 100%;
    vertical-align: middle;
  }

  .staffPage .itemList ul.List li.item .photo img {
    object-fit: cover;
    width: 100% !important;
    height: 100% !important;
  }

  .staffPage .itemList ul.List li.item .info {
    vertical-align: middle;
    text-align: center;
  }

  .staffPage .itemList ul.List li.item .info span.cate {
    margin-bottom: 10px;
  }

  .staffPage .itemList ul.List li.item .info h3.ttl {
    font-size: 1.1em;
    font-weight: bold;
    text-align: center;
  }

  /*詳細*/
  .staffPage #detailBox {
    background: none;
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .staffPage #detailBox .infoBox {
    flex-direction: column;
  }

  .staffPage #detailBox .inner {
    width: 100%;
  }

  .staffPage #detailBox .photo {
    width: 100%;
    height: 300px;
    overflow: hidden;
    text-align: center;
  }

  .staffPage #detailBox .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .staffPage #detailBox #titleBox {
    padding: 20px;
    background-color: var(--color-palegray);
    margin-top: 0;
  }

  .staffPage #detailBox #titleBox span.cate {
    font-size: 16px;
  }

  .staffPage #detailBox #titleBox .ttl {
    font-weight: bold;
  }

  .staffPage #detailBox #titleBox .ttl span {
    font-size: 16px;
    margin-right: 20px;
  }

  .staffPage #detailBox #content {
    width: 96%;
    margin: 20px auto;
  }

  .staffPage #articleBox {
    margin: 0 10px 50px;
  }

  .staffPage #articleBox dl {
    width: 100%;
    flex-direction: column;
    font-size: 1em;
  }

  .staffPage #articleBox dl dt {
    color: #fff;
    padding: 10px;
    background-color: #333;
    margin-bottom: 1px;
    width: 100%;
  }

  .staffPage #articleBox dl dd {
    padding: 10px;
    background: var(--color-palegray);
    width: 100%;
    border-bottom: none;
  }

  .staffPage #content {
    margin: 20px 10px;
  }

  .staffPage #content h3.ttl {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 10px;
  }

  .staffPage #content p {
    margin-bottom: 20px;
  }

  .staffPage #columnlinkBox {
    margin: 10px;
    padding: 10px;
    border: 4px solid #E0E0E0;
    text-align: center;
    position: relative;
  }

  .staffPage #columnlinkBox:after,
  .staffPage #columnlinkBox:before {
    bottom: 100%;
    left: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
  }

  .staffPage #columnlinkBox:after {
    border-bottom-color: #FFF;
    border-width: 10px;
    margin-left: -10px;
  }

  .staffPage #columnlinkBox:before {
    border-bottom-color: #E6E6E6;
    border-width: 16px;
    margin-left: -16px;
  }

  .staffPage #columnlinkBox a {
    display: block;
  }

  .staffPage #columnlinkBox .photo {
    width: 50px;
    height: 50px;
    margin-right: 5px;
    overflow: hidden;
    border-radius: 100%;
    vertical-align: middle;
    display: inline-block;
  }

  .staffPage #columnlinkBox .photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .staffPage #columnlinkBox .info {
    display: inline-block;
    vertical-align: middle;
    font-weight: bold;
  }

  /*
===== 会社案内:companyPage ==========================================
*/
  .companyPage .entrytbl {
    margin-top: var(--gutter-narrow);
  }


  /*
===== プライバシーポリシー:privacyPage ==========================================
*/
  .privacyPage .contents-inner {
    margin: 2.5%;
  }

  .privacyPage .contents-inner p,
  .privacyPage .contents-inner dd {
    line-height: 170%;
  }

  .privacyPage .contents-inner dl dt {
    font-size: 1.6rem;
    font-weight: bold;
    margin-top: 5%;
  }

  .privacyPage .contents-inner dl dd {
    margin-top: 2.5%;
  }

  .privacyPage .contents-inner ul {
    margin: 5%;
  }

  .privacyPage .contents-inner ul li {
    margin-bottom: 5%;
    list-style: disc outside;
  }

  /*
===== サイトマップ:sitemapPage ==========================================
*/
  .sitemapPage .sitemapBox {
    flex-direction: column;
    gap: 3em;
  }

  /*
===== お問い合わせ:contactPage ==========================================
*/

  .contactPage .contact_note {
    margin: 10px;
  }

  /*
===== フォームパーツ ==========================================
*/

  .class-holiday span {
    color: var(--color-orange) !important;
  }

  .contactPage.rsvformPage .rsvLinkBox p {
    font-size: 1.3rem !important;
    font-weight: normal !important;
  }

  .contactPage.rsvformPage .rsvLinkBox .shopName {
    color: var(--color-orange);
    font-weight: bold;
    font-size: 1.6rem;
  }

  /*
===== image用 ==========================================
*/
  .attachmentPage p {
    margin-bottom: 20px;
  }

  .attachmentPage .content ul {
    margin: 20px;
    padding: 20px;
    background: #F4F4F4;
    border: 1px solid #E6E6E6;
  }

  .researchPage .researchBox .preparation {
    text-align: center;
  }

  /*
===== 家探し5つのポイント ==========================================
*/
  /* 目次 */
  .pointPageToc {
    flex-wrap: wrap;
  }

  .pointPageToc__item {
    flex: inherit;
    width: calc((100% - 10px) / 2);
  }

  .pointPageToc__item:last-child {
    width: 100%;
  }

  .pointPageToc__numWrap {
    margin-bottom: 3px;
  }

  /* タイトル */
  .pointPage__ttlWrap {
    background: url(../img/page/point/main_ttl_bg_sp.webp) no-repeat center center / cover;
  }

  .pointPage__mainTtl {
    padding: 0.8em;
  }

  /* ポイント一覧 */
  .pointPageItem:last-of-type {
    margin-bottom: var(--gutter);
  }

  .pointPageItem__flex,
  .pointPageItem:nth-of-type(even) .pointPageItem__flex {
    flex-direction: column;
    align-items: center;
  }

  .pointPageItem__txtBox {
    width: 100%;
  }

  .pointPageItem__imgBox {
    width: 80%;
  }

  .pointPageCriteria__ttl {
    width: 100%;
  }

  .pointPageCriteria {
    padding: 0 30px;
  }

  .pointPageCriteria__list {
    display: flex;
    flex-direction: column;
  }

  .pointPageCriteria__ttl::before {
    transform: translateX(calc(-50% + -140px));
  }

  .pointPageCriteria__subTtl {
    font-size: 1.8rem;
  }

  .pointPageAdvice {
    padding: 60px 30px 60px;
  }

  .pointPageAdvice__intro {
    font-size: 1.4rem;
    text-align: left;
    font-weight: normal;
  }

  .pointPageAdvice__list {
    display: flex;
    flex-direction: column;
  }


  .pointPageAdvice__ttl::before {
    width: 70px;
    top: -50px;
    right: -20px;
    opacity: 0.3;
  }

  .pointPageExplanationBox--cost {
    margin-top: -150px;
  }

  .pointPageCost__item {
    padding: 0 30px;
  }

  .pointPageCost__item--summary {
    padding: 30px;
  }

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

}