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

/*==================================================
	GENERAL SETTINGS
==================================================*/
.navigation {
  padding: 20px;
  text-align: center;
  background: #F4F4F4;
  border: 1px solid #E6E6E6;
}

.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: 0;
  text-align: left;
}

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

.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;
  display: inline-block;
  background: var(--color-black);
  color: #FFF;
  border-radius: 3px;
  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-black);
  color: #fff;
  padding: 20px;
  border-radius: var(--rad-button);
}

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

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

.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: 1.4em;
  font-weight: bold;
  padding: 15px 0 15px 16px;
  background: url(../img/common/icon01.webp)no-repeat left center;
  background-size: 8px;
  border-bottom: solid 2px #CCC;
  line-height: 1;
  margin-bottom: 20px;
}

.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; /* float の解除 */
}

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

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

/*preタグに折り返しを設定(投稿の崩れ防止)*/
pre {
  white-space: pre-wrap;
}

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

.shop-reservePage .ttlWrap {
  background: url(../img/page/shop_reserve/main_ttl_bg.webp) no-repeat top center/cover;
  /*position: relative;*/
  padding: 0 10px;
  justify-content: center;
  height: clamp(170px, 28vw, 300px);
  overflow: hidden;
}

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

/*
.shop-reservePage .ttl {
  text-align: center;
  margin: 0 auto var(--gutter-narrow);
  width: min(80%, 512px);
}
*/

.shoprsvPage__meritTtl {
  font-size: clamp(1.4em,7vw,2em);
  letter-spacing: 0.1em;
  font-weight: bold;
  text-align: center;
  margin: 0 auto var(--gutter-narrow);
  width: min(90%, 355px);
  position: relative;
  display: inline-block;
  border-bottom: double 5px var(--color-black);
}

.shoprsvPage__meritTtlNum {
  font-size: clamp(1.4em,7vw,2em);
  font-weight: bold;
}

.shop-reservePage .meritBox .meritList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  /*gap: 5%;*/
}

.shop-reservePage .meritBox .meritList li {
  width: 30%;
  /*max-width: 324px;
  display: flex;*/
  position: relative;
}

.shprsvPage__meritNum {
  position: absolute;
  top: -2%;
  left: -6%;
  aspect-ratio: 92 / 93;
  width: clamp(50px, 7vw, 70px);
}

.shop-reservePage .meritBox .item .photo {
  overflow: hidden;
}

.shop-reservePage .meritBox .item .info {
  /*background: var(--color-palegray);*/
  /*padding: 15px 10px;
  height: 100%;*/
  display: flex;
  align-items: center;
  justify-content: center;
  /*flex-direction: column;*/
}

.shop-reservePage .meritBox .item:first-of-type .info {
  display: block !important;
}

.shop-reservePage .meritBox .item .catch {
  text-align: center;
  font-weight: bolder;
  padding: 15px 0;
  font-size: 1.2em;
  letter-spacing: 0.05em;
}

.shoprsvPage__meritTxt {
  font-weight: 500;
  text-align: center;
}

.shop-reservePage .meritBox .item dl.count {
  margin-top: 10px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.shop-reservePage .meritBox .item dt {
  padding: 5px;
  border: 2px solid var(--color-black);
  display: inline-block;
  text-align: center;
  font-weight: bolder;
  margin-right: 10px;
}

.shop-reservePage .meritBox .item dd {
  font-weight: bolder;
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.shop-reservePage .meritBox .item dd span {
  font-size: 2.4em;
  vertical-align: middle;
  font-family: var(--font-en);
  line-height: 1.2;
}

/*エリア最大級～イチオシポイント*/
.shop-reservePage .appealBox {
  margin: var(--gutter-wide) auto;
}

.shop-reservePage .appealBox__areaBox {
  background: var(--color-paleyellow);
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--gutter-narrow);
}

.shop-reservePage .appealBox__areaTtl {
  width: min(96%, 742px);
}

.shop-reservePage .appealBox__proposalBox {
  background: var(--color-palegray);
}

.shop-reservePage .appealBox__proposalInner {
  display: flex;
  justify-content: center;
  gap: 4%;
}

.shop-reservePage .appealBox__pointBox {
  width: 48%;
  background-color: #fff;
  margin: var(--gutter) 0;
  border-radius: var(--rad-common);
  display: flex;
  flex-direction: column;
  gap: 0;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}

.shop-reservePage .appealBox__pointTtl {
  position: relative;
  padding: 0 55px;
  text-align: center;
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  font-weight: bold;
  display: inline-block;
  width: 380px;
}

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

.shop-reservePage .appealBox__pointTtl::before {
  left: 0;
}

.shop-reservePage .appealBox__pointTtl::after {
  right: 0;
}

.shop-reservePage .appealBox__pointItem {
  background: url(../img/page/shop_reserve/pointList_check.svg) no-repeat 0.5em center / 2em;
  font-size: clamp(1.5rem, 2vw, 1.8rem);
  padding: 2em 0.5em 2em 3em;
  margin: 0 1em;
  font-weight: 500;
}

.shop-reservePage .appealBox__pointItem:not(:first-child) {
  border-top: 1px solid var(--color-gray);
}

.shop-reservePage .appealBox__pointItem .marker_yellow {
  font-weight: bold;
}

.shop-reservePage .appealBox__staffBox {
  width: 48%;
  text-align: center;
  position: relative;
  margin: var(--gutter) 0 0;
}

.shop-reservePage .appealBox__staffTtl {
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--color-black);
  margin-bottom: 20px;
  position: relative;
  line-height: 1.5;
}

.shop-reservePage .appealBox__staffTtl--sub {
  font-size: 0.9em;
  font-weight: bold;
}

.shop-reservePage .appealBox__staffVoiceWrap {
  position: relative;
}

.shop-reservePage .appealBox__staffVoice {
  position: relative;
  padding: 1.1em;
  background-color: #fff;
  border-radius: var(--rad-common);
  box-shadow: 6px 6px 0px 0px rgba(0, 0, 0, 0.02);
  margin-bottom: 2em;
  width: 48%;
  font-weight: bold;
  font-size: clamp(1.3rem, 1.5vw, 1.8rem);
  text-align: center;
}

.shop-reservePage .appealBox__staffVoice:nth-of-type(2n) {
  position: absolute;
  right: 0;
  transform: translateY(-60px);
}

.shop-reservePage .appealBox__staffVoice::before {
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  left: 50%;
  transform: translateX(-50%);
  bottom: -18px;
  border-top: 18px solid #fff;
  border-left: 18px solid transparent;
}

.shop-reservePage .appealBox__staffVoice:nth-of-type(2n)::before {
  border-right: 18px solid transparent;
  border-left: 0px;
}

.shop-reservePage .appealBox__staffImg {
  height: 40%;
  position: absolute;
  bottom: 0;
  left: 16%;
}

/*店舗案内*/
.shop-reservePage #shopInfoBox {
  margin: 50px 0;
  background: none;
}

.shop-reservePage .shopInfoBox__inner {
  background: none;
}

/*フローチャート*/
.shop-reservePage .flowBox {
  margin: var(--gutter) auto;
}

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

.shop-reservePage .flowItem {
  border: solid 1px var(--color-black);
  padding: clamp(10px, 1.5vw, 20px);
  text-align: center;
  width: min(224px, 19%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  position: relative;
  font-size: clamp(1.4rem, 1.5vw, 2rem);
  line-height: 1.3;
  border-radius: var(--rad-common);
}

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

.shop-reservePage .flowItem h3 {
  font-size: 1.4em;
  margin-bottom: 20px;
  font-weight: bold;
}

.shop-reservePage .flowItem .num {
  display: block;
  font-size: 1.8em;
  color: var(--color-black);
  font-family: var(--font-en);
}

.shop-reservePage .flowItem.finish h3 {
  font-family: var(--font-en);
}

.shop-reservePage .flowItem.finish .num {
  color: var(--color-main);
}

.shop-reservePage .flowItem p {
  margin-bottom: 20px;
  font-weight: 500;
}

.shop-reservePage .flowItem.finish p {
  height: 100%;
}

.shop-reservePage .flowItem img {
  max-height: 100px;
}

.shop-reservePage .formComment {
  font-weight: 800;
  text-align: center;
  font-size: clamp(2rem, 2.5vw, 3.2rem);
  margin: var(--gutter-narrow) auto;
}

/*
===== イベント予約: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;
}

.contactPageIntro {
  margin: 0 auto var(--gutter);
  border: 4px solid var(--color-main);
  border-radius: var(--rad-common);
  background: url(../img/page/contact/img_intro_01.webp) no-repeat right 10px bottom / auto 80%, url(../img/page/contact/bg_intro_01.webp) no-repeat right bottom / contain;
}

.contactPageIntro__preTtl {
  background: var(--color-main);
  color: #fff;
  font-weight: bold;
  padding: 10px clamp(15px, 3vw, 30px);
  text-align: center;
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
}

.contactPageIntro__inner {
  padding-bottom: clamp(15px, 3vw, 30px);
}

.contactPageIntro__mainTtl {
  font-size: clamp(1.8rem, 3vw, 3.8rem);
  font-weight: 800;
  font-feature-settings: 'palt';
  letter-spacing: 0.05em;
  padding: clamp(20px, 5vw, 40px) 0 clamp(10px, 2vw, 20px) clamp(20px, 5vw, 40px);
  line-height: 1.5;
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.6), -2px -2px 4px rgba(255, 255, 255, 0.6),
    -2px 2px 4px rgba(255, 255, 255, 0.6), 2px -2px 4px rgba(255, 255, 255, 0.6),
    2px 0 4px rgba(255, 255, 255, 0.6), -2px 0 4px rgba(255, 255, 255, 0.6),
    0 2px 4px rgba(255, 255, 255, 0.6), 0 -2px 4px rgba(255, 255, 255, 0.6);
}

.contactPageIntro__mainTtl img {
  height: 1.8em;
  position: relative;
  left: -5px;
  margin-right: 10px;
  vertical-align: sub;
}

.contactPageIntro__txt {
  font-size: clamp(1.4rem, 1.5vw, 1.6rem);
  margin: 0 clamp(15px, 3vw, 30px);
  font-weight: bold;
  line-height: 1.8;
  letter-spacing: 0.01em;
  padding: clamp(10px, 1.5vw, 20px) 20px;
  background: var(--color-palegreen);
  border-radius: var(--rad-common);
  width: min(600px, 50%);
}

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

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


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

.contactPage .flowItem {
  border: 3px solid var(--color-main);
  padding: clamp(10px, 1.5vw, 20px);
  text-align: center;
  width: min(280px, 24%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  position: relative;
  font-size: clamp(1.4rem, 1.5vw, 2rem);
  line-height: 1.3;
  border-radius: var(--rad-common);
}

.contactPage .flowItem.finish {
  border: none;
  background-color: var(--color-main);
  color: #fff;
}

.contactPage .flowItem h3 {
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  margin-bottom: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 2.6em;
  font-feature-settings: 'palt';
  letter-spacing: 0.05em;
}

.contactPage .flowItem h3 .num {
  display: block;
  font-size: 1.8em;
  color: var(--color-main);
  font-family: var(--font-en);
}

.contactPage .flowItem p {
  margin-bottom: 20px;
  font-weight: 500;
}

.contactPage .flowItem img {
  max-height: clamp(70px, 13vw, 150px);
}

.contactPage .flowItem.finish p {
  height: 100%;
}

.contactPage__annotation {
  margin-top: 10px;
}

/*
===== カタログ請求: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-top: var(--gutter);
}

.sitemapPage .contents-inner {
  display: flex;
  -webkit-justify-content: space-between;
  /* Safari */
  justify-content: space-between;
}

.sitemapPage .contents-inner ul {
  width: 30%;
}

.sitemapPage .contents-inner ul li+li {
  margin-top: 20px;
}

.sitemapPage .contents-inner ul li a {
  display: block;
  padding: 20px 10px 20px 22px;
  border: 2px solid #CCCCCC;
  position: relative;
}

.sitemapPage .contents-inner ul li a::before {
  position: absolute;
  content: '';
  border: 4px solid transparent;
  border-left: 6px solid #333;
  left: 3%;
  top: 50%;
  transform: translateY(-50%);
}

@media (any-hover:hover) {
  .sitemapPage .contents-inner ul li a:hover {
    border: 2px solid var(--color-darkgray);
  }
}

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

.topicsPage .itemList .item a {
  padding: 20px;
  display: block;
}

.topicsPage .itemList .item:nth-child(odd) a {
  border-top: 1px solid #E6E6E6;
  border-bottom: 1px solid #E6E6E6;
}

/*
.topicsPage .itemList .item:nth-child(even) a {
  background: var(--color-palegray);
}
*/

.topicsPage .itemList .item:last-child a {
  border-bottom: 1px solid #E0E0E0;
}

.topicsPage .itemList .item dl dt span.date {
  margin-right: 0.5em;
  font-size: 1.4rem;
}

.topicsPage .itemList .item dl dd {
  padding: 20px 0;
}

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

/*イベント情報:一覧*/
.eventPage .itemList .item a {
  padding: 20px;
  display: block;
  display: flex;
  align-items: center;
}

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

/*.eventPage .itemList .item:nth-child(even) a {
  background: var(--color-palegray);
}*/

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

.eventPage .itemList .item .photo img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}

.eventPage .itemList .item .info {
  width: calc(100% - 245px);
}

.eventPage .itemList .item .iconWrap {
  display: flex;
}

.eventPage .itemList .item .iconWrap .cate_new {
  padding: 0.2em 1em;
  margin-right: 0.5em;
}

.eventPage .itemList .item dt {
  margin: 15px 0;
  font-weight: bold;
  font-size: clamp(1.6rem, 2vw, 1.8rem);
}

.eventPage .itemList .item dd {
  font-weight: bold;
  font-size: clamp(1.3rem, 2vw, 1.6rem);
}

.eventPage .itemList .item dd span {
  margin-right: 10px;
  padding: 5px 10px;
  border: solid 2px var(--color-black);
  display: inline-block;
  flex-shrink: 0;
}

.eventPage .itemList .item .icon span {
  padding: 10px;
  font-weight: bold;
}

.eventPage .photo {
  text-align: center;
}

/* イベント：終了時 */
.eventPage .photo.end {
  position: relative;
}
.eventPage .photo.end::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(43, 45, 54, 0.9);
}
.eventPage .photo.end .end_message{
  position: absolute;
  top:50%;
  left: 50%;
  transform: translate(-50%,-50%);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 400;
  width: 100%;
  padding: 0 10px;
}
.eventPage .photo.end .end_message span{
  font-size: 1.2rem;
}

/*イベント情報：詳細ページ*/
/*イベントスライダー*/
.eventPage.singlePage .event_slides {
  margin: var(--gutter-wide) 0;
  position: relative;
}

.eventPage.singlePage .event_slides .slider_itemList {
  margin-bottom: 30px;
  overflow: hidden;
}

.eventPage.singlePage .event_slides .slider_itemList li {
  width: 100%;
  max-width: 800px;
  max-height: 530px;
}

.eventPage.singlePage .event_slides .slider_itemList li img {
  width: auto;
  height: 100%;
  margin: auto;
  display: block;
}

.eventPage.singlePage .event_slides .event_slider_pager {
  overflow: hidden;
}

/*画像が６枚未満のとき調整　とくに5枚のとき配慮が必要*/
.eventPage.singlePage .event_slides .event_slider_pager.centered-slider .slick-track {
  transform: unset!important;
  margin: auto;
  justify-content: center;
  gap: 10px;
}

.eventPage.singlePage .event_slides .event_slider_pager.centered-slider .slick-track .slick-current {
  opacity: 0.6;
}

.eventPage.singlePage .event_slides .event_slider_pager.centered-slider {
  margin: auto;
}

.eventPage.singlePage .event_slides .event_slider_pager.centered-slider .item {
  /*width: calc(100% / 5) !important;
  text-align: center;
  min-width: 150px;*/
  width: auto !important; /* ← fixedから自動幅へ */
  text-align: center;
  min-width: auto; /* ← 幅を自動にする */
  flex: 0 0 auto; /* ← slickのflex制御 */
  margin: 0 5px; /* ← スライドの隙間を調整 */
}

.eventPage.singlePage .event_slides .event_slider_pager.centered-slider .slick-track {
  display: flex !important;
  justify-content: center;
  gap: 10px;
  transform: none !important;
}
/*ここまで６枚以下*/

.eventPage.singlePage .event_slides .event_slider_pager .item {
  margin: 0 6px;
  box-sizing: border-box;
  }

.eventPage.singlePage .event_slides .event_slider_pager .item img {
  max-height: 100px;
  margin: auto;
  display: block;
}

.eventPage.singlePage .event_slides #sliderArrows .slick-arrow.slick-prev {
  left: -90px;
}

.eventPage.singlePage .event_slides #sliderArrows .slick-arrow.slick-prev,
.eventPage.singlePage .event_slides #sliderArrows .slick-arrow.slick-prev::before {
  top: 35%;
}

.eventPage.singlePage .event_slides #sliderArrows .slick-arrow.slick-next {
  right: -90px;
}

.eventPage.singlePage .event_slides #sliderArrows .slick-arrow.slick-next,
.eventPage.singlePage .event_slides #sliderArrows .slick-arrow.slick-next::before {
  top: 35%;
}


/*
===== スタッフコラム: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 .iconWrap .cate_new {
  margin-right: 0.5em;
}

.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-navy) url(../img/common/icon_qa.webp) no-repeat 10px center;
  border-radius: var(--rad-common);
  background-size: 30px auto;
}

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

.qaPage #accordion dt.open {
  border-radius: var(--rad-common) var(--rad-common) 0 0;
}

.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);
  border-radius: 0 0 var(--rad-common) var(--rad-common);
}

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

/*
===== モデルルーム・ショールーム:modelroomPage ==========================================
*/

.modelroomPage__contentbox {
  background: var(--color-navy);
  padding: 70px 0;
  color: #fff;
}

.modelroomPage .itemList {
  /*max-width: var(--width-content-1200);
  width: 96%;
  margin-top: 70px;*/
  position: relative;
  z-index: 1;
}


.modelroomPage .itemList .List {
  display: flex;
  justify-content: left;
  flex-wrap: wrap;
  gap: 3%;
  /*margin-bottom: 100px;*/
}

.modelroomPage .itemList .item {
  width: calc((100% / 2) - 1.8rem);
  margin-bottom: 12.2rem;
  position: relative;
}

.modelroomPage .itemList .item .photo img {
  aspect-ratio: 580 / 326;
  width: 100%;
}

.modelroomPage .info {
  position: absolute;
  top: 265px;
  left: 24px;
}

.modelroomPage .info .icon_txt.icon_reservable {
  /*background: #D7CBA0;
  border-color: #D7CBA0;*/
  border-radius: 0;
  padding: 5px 20px;
  margin-bottom: 12px;
}

.modelroomPage .info .icon_txt.icon_reservable p {
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  font-weight: 500;
  color: var(--color-black);
}

.modelroomPage .info .ttl_en {
  font-size: clamp(3rem, 5vw, 4rem);
  font-family: var(--font-en);
  font-weight: 600;
  margin-bottom: 5px;
  line-height: 1;
  letter-spacing: 0.2em;
}

.modelroomPage .info .ttl_ja {
  font-size: 1.6rem;
  font-weight: 400;
}

/*ページャー*/
.modelroomPage .wp-pagenavi a, .wp-pagenavi span {
  border: #fff;
}

.modelroomPage .wp-pagenavi span.current {
  background: var(--color-gray);
  border-color: var(--color-gray);
}

/* 詳細ページ */
.modelroomPage.singlePage {
  color: var(--color-black);
}

.modelroomPage.singlePage #postbox {
  margin-bottom: var(--gutter);
}

.modelroomPage .errorBox .link_return {
  background: #fff;
  color: var(--color-black);
}

/*.modelroomPage.singlePage #bread {
  color: #999;
}*/

.modelroomPage.singlePage .mainTtl {
  font-size: clamp(3rem, 5vw, 5rem);
  letter-spacing: 0.2em;
  text-align: center;
  font-family: var(--font-en);
  font-weight: 600;
}

.modelroomPage #postbox {
  margin-top: 0;
  /*margin-bottom: var(--gutter-wide);*/
}

.modelroomPage #postbox .titleBox {
  background: var(--color-navy);
  color: #fff;
  padding-bottom: var(--gutter);
}

.modelroomPage #postbox .titleBox .inner {
  position: relative;
  padding-top: 70px;
}

.modelroomPage .modelroomPage__photo {
  text-align: center;
  margin-bottom: var(--gutter);
}

.modelroomPage .modelroomPage__photo img {
  width: 600px;
  height: 400px;
  object-fit: cover;
}

.modelroomPage #postbox .titleBox .address {
  text-align: center; 
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 30px;
}

.modelroomPage #postbox .titleBox .reserve_detail {
  display: flex;
  align-items: end;
  justify-content: center;
  margin-bottom: 45px;
}

.modelroomPage #postbox .titleBox .reserve_detail .icon_txt.icon_reservable {
  /*background: #D7CBA0;
  border-color: #D7CBA0;*/
  border-radius: 0;
  padding: 5px 20px;
  color: var(--color-black);
  font-size: 1.6rem;
  font-weight: 500;
  margin-right: 0;
}

.modelroomPage #postbox .titleBox .reserve_detail .date {
  font-size: 2.8rem;
  margin: 0 15px;
  line-height: 1;
}

.modelroomPage #postbox .titleBox .reserve_detail .time {
  font-size: 1.6rem;
  font-weight: 400;
}

.modelroomPage #postbox #btnBox {
  margin-bottom: 0;
}

.modelroomPage #postbox .infoBox #btnBox {
  margin-bottom: var(--gutter-wide);
}


.modelroomPage #postbox #btnBox a {
  background: var(--color-green);
  border: 1px solid #fff;
  border-radius: var(--rad-button);
  color: #fff;
  font-size: clamp(1.6rem, 2vw, 1.8rem);
  font-weight: 50;
  letter-spacing: .14em;
  font-weight: 500;
  text-align: center;
  padding: 18px 30px;
  position: relative;
  width: 320px;
  display: block;
  margin: auto;
}

.modelroomPage #postbox #btnBox a::after {
 position: absolute;
  content: '';
  width: 20px;
  height: 5px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  top: 50%;
  right: 10%;
  transform: translateY(-50%) skew(45deg);
  transition: right 0.3s;
}

.modelroomPage #postbox #btnBox a:hover::after {
  right: 8%;
}

.modelroomPage .infoBox {
  background: #fff;
  padding-top: var(--gutter-wide);
}

.modelroomPage .infoBox .detail_wrap {
  max-width: var(--width-content);
  width: 96%;
  margin: auto;
  /*padding-bottom: 105px;*/
}

.modelroomPage .infoBox .detail_wrap .featuresBox {
  margin-bottom: var(--gutter-wide);
}

.modelroomPage .infoBox .detail_wrap .featuresBox h3 {
  text-align: center;
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  margin-bottom: 80px;
  font-weight: 700;
}

.modelroomPage .infoBox .detail_wrap .featuresBox .featuresList {
  display: flex;
  justify-content: center;
  gap: 6rem;
}

.modelroomPage .infoBox .detail_wrap .featuresBox .featuresList .featuresItem {
  width: calc((100% / 3) - 4rem );
}

.modelroomPage .infoBox .detail_wrap .featuresBox .featuresList .featuresItem .number {
  font-size: 2.8rem;
  position: relative;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: 50px;
}

.modelroomPage .infoBox .detail_wrap .featuresBox .featuresList .featuresItem .number::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  display: inline-block;
  width: 300px;
  height: 1px;
  background-color: var(--color-lightgray);
}

.modelroomPage .infoBox .detail_wrap .featuresBox .featuresList .featuresItem .number span {
  font-family: var(--font-en);
  font-weight: 600;
}

.modelroomPage .infoBox .detail_wrap .featuresBox .featuresList .featuresItem .ttl {
  margin-bottom: 44px;
  font-size: 2.4rem;
  font-weight: 500;
}

.modelroomPage .infoBox .detail_wrap .featuresBox .featuresList .featuresItem .txt {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
}

.modelroomPage #postbox .infoBox #btnBox a {
  border-color: var(--color-black);
}

.modelroomPage .infoBox .detail_wrap .galleryBox h3 {
  text-align: center;
  font-size: 2.8rem;
  letter-spacing: 0.1em;
  margin-bottom: 23px;
  line-height: 1;
  font-family: var(--font-en);
  font-weight: 600;
}

.modelroomPage .infoBox .detail_wrap .galleryBox .click {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.4rem;
  font-weight: 400;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modelroomPage .infoBox .detail_wrap .galleryBox .galleryImg {
  display: flex;
  justify-content: left;
  gap: 8px;
  flex-wrap: wrap;
}

.modelroomPage .infoBox .detail_wrap .galleryBox .galleryImg li {
  width: calc((100% /4) - 6px);
}

.modelroomPage .infoBox .detail_wrap .galleryBox .galleryImg li img {
  height: auto;
  object-fit: cover;
  aspect-ratio: 1;
  width: 100%;
}

.modelroomPage .infoBox .detail_wrap #mapBox {
  max-width: var(--width-content);
  width: 96%;
  margin-top: 0;
}

.modelroomPage .infoBox .detail_wrap #mapBox h3 {
  text-align: center;
  font-size: 2.8rem;
  letter-spacing: 0.1em;
  margin-bottom: 25px;
  line-height: 1;
  font-weight: 600;
  font-family: var(--font-en);
}

.modelroomPage .infoBox .detail_wrap #mapBox .address {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 38px;
}

.modelroomPage .infoBox .detail_wrap #mapBox .btn_access {
  background: #fff;
  border: 1px solid var(--color-black);
  border-radius: 50px;
  color: var(--color-black);
  font-size: 1.4rem;
  letter-spacing: .14em;
  text-align: center;
  padding: 10px 30px;
  position: relative;
  max-width: 245px;
  display: block;
  margin: 40px auto 0;
}

.modelroomPage .infoBox .detail_wrap #mapBox .btn_access::after {
  position: absolute;
  content: '';
  display: inline-block;
  width: 15px;
  height: 8px;
  background-image: url(../img/common/btn_arrow_b.svg);
  background-size: contain;
  vertical-align: middle;
  background-repeat: no-repeat;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  transition: all .3s ease-in-out;
  border: none;
}

.modelroomPage .infoBox .detail_wrap #mapBox .btn_access:hover::after {
  right: 2%;
}

.modelroomPage .infoBox .formBox #form {
  max-width: var(--width-content);
  width: 96%;
}

.modelroomPage .infoBox .formBox #form .wpcf7 {
  background: #fff;
  /*border-radius: 8rem;
  padding: 70px 200px 20px;*/
}

.modelroomPage .infoBox .formBox #form .wpcf7 input[type="submit"]:disabled {
  background: var(--color-lightgray);
}

/* サンクスページ */
.modelroomPage.modelroomThanks .thanksBox {
  background: none;
}

/* 準備中 */
.modelroomPage .noplanBox {
  margin: var(--gutter);
}

.modelroomPage .noplanBox p {
  font-size: 1.2em;
  text-align: center;
}

/*
===== 中古リフォーム事例:gallery_renovationPage ==========================================
*/
.gallery_renovationPage #postbox {
  margin-top: var(--gutter);
}

/*中古リフォーム事例:一覧*/
.gallery_renovationPage .itemList .List {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

.gallery_renovationPage .itemList .List li.item {
  width: min(31%,380px);
  margin-bottom: 30px;
  position: relative;
  /*background: var(--color-palegray);
  border: 1px solid var(--color-lightgray);*/
}

.gallery_renovationPage .itemList .List li.item:nth-child(3n-1) {
  margin-right: 3.5%;
  margin-left: 3.5%;
}

.gallery_renovationPage .itemList .List li.item a {
  display: block;
  width: 100%;
  height: 100%;
}

.gallery_renovationPage .itemList li.item .iconWrap {
  position: absolute;
  top: 5px;
  left: 5px;
  display: flex;
}

.gallery_renovationPage .itemList .ttl h2 {
  font-size: clamp(1.6rem, 2vw, 1.8rem);
  font-weight: bold;
  padding: 10px 5px;
  /*text-align: center;*/
}

.gallery_renovationPage .itemList .photo {
  width: 100%;
  /*height: 200px;*/
  background: #FFF;
  overflow: hidden;
  text-align: center;
  position: relative;
}

.gallery_renovationPage .itemList .photo img {
  width: 100% !important;
  height: 495px;
  object-fit: cover;
}

.gallery_renovationPage .itemList .info {
  padding: 10px;
}

.gallery_renovationPage .itemList .info dl {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
}

.gallery_renovationPage .itemList .info dt,
.gallery_renovationPage .itemList .info dd {
  margin: 5px 0;
}

.gallery_renovationPage .itemList .info dt {
  width: 40%;
  font-weight: bold;
  font-size: 1.3rem;
  min-width: 9em;
}

.gallery_renovationPage .itemList .info dd {
  width: 60%;
  font-size: 1.6rem;
}

.gallery_renovationPage .itemList .info dd .price_note,
.gallery_renovationPage .itemList .info dd .cost_note {
  display: block;
  font-size: 0.75em;
}

.gallery_renovationPage span.cate_syubetu {
  background: var(--color-main);
  border: 1px solid var(--color-main);
  line-height: 1.0;
}

/*中古リフォーム事例:詳細*/
.gallery_renovationPage #titleBox {
  position: relative;
  margin: var(--gutter) auto;

}

.gallery_renovationPage #titleBox .secTtl {
  padding-right: 80px;
}

.gallery_renovationPage #titleBox .icon {
  position: absolute;
  top: 6px;
  right: 0;
}

/*lightbox*/
.gallery_renovationPage .lbwrap {
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  aspect-ratio: 3 / 2;
  flex-shrink: 0;
  height: auto;
  width: 100%;
  max-height: 60vh;
}

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

.gallery_renovationPage .lbwrap a:after {
  content: "";
  width: 32px;
  height: 32px;
  position: absolute;
  right: 5px;
  bottom: 5px;
  background: rgba(0, 0, 0, .3) url(../img/page/gallery/icon_zoom.webp) no-repeat;
  background-size: contain;
  border-radius: 3px;
}

.gallery_renovationPage .lbwrap a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (any-hover:hover) {

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

/* スライド */
.gallery_renovationPage .sliderBox {
  margin: 30px auto;
  width: 80%;
  position: relative;
}

.gallery_renovationPage .sliderBox .slider_main {
  overflow: hidden;
}

.gallery_renovationPage .sliderBox .slider_main li {
  position: relative;
  aspect-ratio: 3 / 2;
  width: 100%;
  flex-shrink: 0;
}

.gallery_renovationPage .sliderBox .slider_main li img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

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

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

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

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

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

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

.gallery_renovationPage .sliderBox .gallery_slider_pager li {
  display: inline-block;
  margin: 10px 2px;
  background: #FFF;
  aspect-ratio: 3 / 2;
  width: 66px !important;
}

.gallery_renovationPage .sliderBox .gallery_slider_pager li a {
  display: block;
  width: 100%;
  height: 100%;
  border: 2px solid #FFF;
  position: relative;
}

.gallery_renovationPage .sliderBox .gallery_slider_pager li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* スライド矢印 */
.gallery_renovationPage #sliderArrows .slick-prev {
  left: 8%;
}

.gallery_renovationPage #sliderArrows .slick-next {
  right: 8%;
}

/*リノベーションプラン名*/
.galleryPage__planName {
  font-family: var(--font-en);
  font-size: clamp(2.1rem, 3vw, 3rem);
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1;
}

/*ポイント*/
.galleryPage__pointBox {
  margin: var(--gutter) auto;
}

.galleryPage__pointTtl {
  display: inline-block;
  font-size: clamp(1.4em, 2vw, 1.7em);
  font-weight: 600;
  font-family: var(--font-en);
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: 2%;
  position: relative;
}

.galleryPage__pointTtl::after {
  content: '';
  position: absolute;
  top: 43%;
  left: 135%;
  display: inline-block;
  width: min(80vw,1080px);
  height: 1px;
  background-color: var(--color-lightgray);
}

.galleryPage__pointTxt {
  font-size: 1.6rem;
}

/*概要*/
.gallery_renovationPage #dataBox {
  margin: var(--gutter) auto;
}

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

.gallery_renovationPage #dataBox dl {
  margin-top: 2.5%;
  background: 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;
}

.gallery_renovationPage #dataBox dt,
.gallery_renovationPage #dataBox dd {
  border-top: solid 1px #CCC;
  padding: 1.5em;
  font-size: 1.6rem;
}

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

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

.gallery_renovationPage #dataBox dd .price_note,
.gallery_renovationPage #dataBox dd .cost_note {
  margin-left: 10px;
  font-size: 0.9em;
  display: inline-block;
}

.galleryPage__price {
  color: var(--color-red);
  font-weight: bold;
}

.galleryPage__price .price {
  font-size: clamp(1.5em, 3vw, 2em);
  font-family: var(--font-en);
  font-weight: 600;
}

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

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

/*お客様の声*/
.galleryPage__customerBox {
  margin: var(--gutter) auto;
  /*position: relative;*/
}

.galleryPage__customerTtl {
  font-size: clamp(1.4em, 2vw, 1.7em);
  font-weight: 600;
  display: inline-block;
  margin-bottom: 2%;
  position: relative;
}

.galleryPage__customerTtl::after {
  content: '';
  position: absolute;
  top: 55%;
  left: 118%;
  display: inline-block;
  width: min(80vw,1060px);
  height: 1px;
  background-color: var(--color-lightgray);
}

.galleryPage__customerTxt {
  font-size: 1.6rem;
}

/*ビフォーアフター切り替えボックス*/
/*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;
  background: var(--color-paleyellow);
}

.galleryPage #BAtabBox .BAtab__ttl {
  display: inline-block;
  font-size: clamp(1.4em, 2vw, 1.7em);
  font-weight: 600;
  font-family: var(--font-en);
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: 2%;
  position: relative;
}

.galleryPage #BAtabBox .BAtab__ttl::after {
  content: '';
  position: absolute;
  top: 55%;
  left: 118%;
  display: inline-block;
  width: min(70vw, 940px);
  height: 1px;
  background-color: var(--color-lightgray);
}

.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 .inner {
  padding: var(--gutter) 0;
}

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

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

.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;
  background: #fff;
  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.7);
  padding: 10px;
  font-size: clamp(1.4rem, 2vw, 1.6rem);
}

/*フォトギャラリー*/
.galleryPage .galleryBox {
  margin: var(--gutter-wide) auto;
}

.galleryPage .galleryBox h3 {
  text-align: center;
  font-size: 2.8rem;
  letter-spacing: 0.1em;
  margin-bottom: 23px;
  line-height: 1;
  font-family: var(--font-en);
  font-weight: 600;
}

.galleryPage .galleryBox .click {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.4rem;
  font-weight: 400;
  display: flex;
  justify-content: center;
  align-items: center;
}

.galleryPage .galleryImg {
  display: flex;
  justify-content: left;
  gap: 8px;
  flex-wrap: wrap;
}

.galleryPage .galleryImg li {
  width: calc((100% / 3) - 6px);
}

.galleryPage .galleryImg li img {
  height: auto;
  object-fit: cover;
  aspect-ratio: 1;
  width: 100%;
}

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

#main.galleryPage .otherBox .secTtl {
  /*font-size: clamp(1.4em, 2vw, 1.7em);*/
  font-weight: 600;
}

.gallery_renovationPage .otherBox.itemList .photo img {
  height: 300px;
}

/*
===== 店舗案内：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: 2.6em;
  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: 2.2em;
  font-family: var(--font-en);
  font-weight: bold;
}

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

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

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

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

.staffPage .itemList .photo {
  display: block;
  width: clamp(150px, 15vw, 240px);
  height: auto;
  aspect-ratio: 1 / 1;
  margin: 0 auto 10px;
  overflow: hidden;
  border: solid 1px #ccc;
}

.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: var(--color-palegray);
  margin-bottom: var(--gutter);
  padding: var(--gutter) 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 .infoBox .photo {
  text-align: center;
  height: 324px;
  overflow: hidden;
}

.staffPage #detailBox .infoBox .photo .contain {
  object-fit: contain;
}

.staffPage #detailBox .inner {
  width: 40%;
  /*flex-shrink: 0;*/
  display: inline-block;
  vertical-align: middle;
}

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

.staffPage #detailBox #content {
  /*flex-grow: 1;*/
  width: 59%;
  box-sizing: border-box;
  padding-left: 20px;
  display: inline-block;
  vertical-align: middle;
}

.staffPage #detailBox #titleBox span.cate {
  margin-bottom: 5px;
  display: inline-block;
  font-size: clamp(1.4em, 2vw, 1.6em);
}

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

.staffPage #detailBox #titleBox .ttl span {
  font-weight: bolder;
  font-size: clamp(1.4em, 3vw, 2em);
}

.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;*/
  background: var(--color-green);
  color: #fff;
  margin-bottom: 10px;
}

.staffPage #articleBox dl dd {
  width: 66%;
  padding: 20px;
  /*border-bottom: 1px dotted #333;*/
  flex-grow: 1;
  background: var(--color-palegray);
  margin-bottom: 10px;
}

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

/*
===== 選ばれる理由:reasonPage  ==========================================
*/

.reasonPage .ttlWrap {
  background: var(--color-palegray);
  background-size: clamp(1600px, 100%, 2000px) auto;
  color: var(--color-black);
  font-family: var(--font-noto);
  font-size: clamp(16px, 3.2vw, 32px);
  justify-content: center;
  align-items: center;
  padding: var(--gutter);
  overflow: hidden;
}

.reasonPage_mainTtl {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.05em;
  background: linear-gradient(transparent 70%, var(--color-yellow) 70%);
  /*position: relative;*/
  line-height: 1.2;
}

.reasonPage .reasonPage_mainTtl--siteName {
  font-family: var(--font-en);
  font-weight: 600;
}

.reasonPage_mainTtl .font_num {
  font-family: var(--font-en);
  color: var(--color-red);
  font-size: 1.6em;
}

.reasonPage_mainTtl_sub {
  text-align: center;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 500;
  margin-bottom: 1em;
}

/*************** コンテンツ ****************/
.reasonPage .reasonItem {
  margin: var(--gutter-wide) auto;
}

/*************** タイトルナンバー ****************/
.reasonPage .reasonItem_ttlWrap {
  background: var(--color-blue);
  padding-bottom: 1rem;
}

.reasonPage .reasonItem_ttl--num {
  background: #fff;
}

.reasonPage .reasonItem_ttl_en {
  display: block;
  color: var(--color-blue);
  background: #fff;
  font-size: clamp(20px, 12vw, 60px);
  font-weight: 600;
  line-height: 1;
  height: calc(1.2em - 2px);
}

.reasonPage .reasonItem_ttl_num {
  font-family: var(--font-en);
  font-size: 1.4em;
  font-weight: 600;
}

.reasonPage .reasonItem_ttl {
  width: 90%;
  max-width: var(--width-content);
  padding: 10px;
  margin: var(--gutter) auto;
  background: #fff;
  text-align: center;
}

.reasonPage .reasonItem_ttl--border {
  display: block;
  width: 100%;
  height: 100%;
  border: solid 2px var(--color-blue);
  padding: var(--gutter);
}

.reasonPage .reasonItem_ttl_txt {
  font-size: clamp(16px, 3.2vw, 32px);
  font-weight: 600;
  letter-spacing: 0.1em;
}

.reasonPage .reasonItem_ttl_txt .marker_yellow {
  font-weight: 700;
}

/*************** reasonItem：共通 ****************/
.reasonPage .reasonItem_ttl_span {
  display: inline-block;
  padding: 5px 1em 5px;
  color: #fff;
  background: var(--color-blue);
  font-size: clamp(12px, 1.8vw, 24px);
}

.reasonPage .reasonItem_subTtl {
  font-size: clamp(16px, 2.8vw, 28px);
  font-weight: 600;
  margin: var(--gutter) 0;
  text-align: center;
}

.reasonPage .reasonItem_inner {
  font-size: clamp(14px, 1.6vw, 18px);
}

.reasonPage .checkBox {
  display: table;
  margin: var(--gutter-narrow) auto;
}

.reasonPage .checkBox_item {
  position: relative;
  padding-left: 1.7em;
  margin-bottom: 1em;
}

.reasonPage .checkBox_item::before {
  content: "";
  width: 1.6em;
  height: 1.6em;
  display: inline-block;
  background: url(../img/common/icon_check.svg) no-repeat center / contain;
  position: absolute;
  top: 0.2em;
  left: 0;
}

/*************** reason01 ****************/
.reasonPage .reason01 .solution {
  /*display: table;*/
  margin: var(--gutter) auto;
  text-align: center;
  padding: var(--gutter-narrow) var(--gutter);
  /*background: var(--color-main);
  color: #fff;*/
  background: var(--color-paleyellow);
  position: relative;
  overflow: hidden;
}

/*.reasonPage .reason01 .solution::before {
  content: "";
  display: block;
  height: 30px;
  aspect-ratio: 4 / 1;
  background: var(--color-main);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
}*/

.reasonPage .reason01 .solution_ttl {
  display: inline-block;
  width: auto;
  margin: 0 auto;
  text-align: center;
  border-bottom: double 5px currentColor;
  font-size: clamp(18px, 3.2vw, 32px);
  font-weight: 600;
  margin-bottom: 0.5em;
  position: relative;
}

.reasonPage .reason01 .solution_ttl::after {
  position: absolute;
  content: "";
  background: url(../img/page/reason/illust_ttl_01.webp) no-repeat center / contain;
  width: clamp( 100px, 21vw, 200px);
  aspect-ratio: 200 / 261;
  right: -31%;
  top: 70%;
  transform: translateX(-20%);
}

.reasonPage .reason01 .solution_txt {
 background: var(--color-paleyellow);
}

.reasonPage .reason01 .solution b {
  font-weight: 700;
}

.reasonPage .reason01 .solution strong {
  color: var(--color-red);
  font-weight: 700;
  font-size: 1.6em;
}

.reasonPage .reason01 .graph_img img {
  width: 970px;
  aspect-ratio: 1940 / 746;
}

.reasonPage .reason01 .graph_txt {
  margin: var(--gutter-narrow) 0;
  font-size: 1.8rem;
  font-weight: 500;
}

.reasonPage .reason01 .search {
  font-size: 1.5em;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.4;
  margin: var(--gutter) auto;
  /*padding-top: clamp(50px, 15vw, 100px);*/
}

.reasonPage .reason01 .search p {
  display: table;
  padding: 0 2.5em;
  margin: 0 auto;
  position: relative;
}

.reasonPage .reason01 .search p::before,
.reasonPage .reason01 .search p::after {
  content: '';
  position: absolute;
  bottom: 40px;
  display: inline-block;
  width: 3em;
  height: 2px;
  background-color: black;
  transform: rotate(60deg);
}

.reasonPage .reason01 .search p::before {
  left: 0;
}

.reasonPage .reason01 .search p::after {
  transform: rotate(-60deg);
  right: 0;
}

.reasonPage .reason01 .search b {
  font-size: 1.6em;
  font-weight: 700;
  color: var(--color-red);
  display: inline-block;
  margin-bottom: 0.1em;
}


/*************** reason02 ****************/
.reasonPage .reason02 .plan {
  margin: var(--gutter) auto;
  text-align: center;
  position: relative;
}

/*.reasonPage .reason02 .plan::before {
  content: "";
  display: block;
  height: 30px;
  aspect-ratio: 4 / 1;
  background: var(--color-gray);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
}*/

.reasonPage .reason02 .plan_ttl {
  font-size: 1.2em;
  font-weight: 600;
  padding: var(--gutter-narrow) 0;
  background: var(--color-paleyellow);
}

.reasonPage .reason02 .plan_img {
  margin: var(--gutter) auto;
  max-width: 96%;
}

.reasonPage .reason02 .plan_img img {
  width: 1005px;
  aspect-ratio: 2011 / 591;
}


/*************** reason03 ****************/
.reasonPage .reason03 .qaBox {
  background: var(--color-palegray);
  padding-bottom: var(--gutter-narrow);
}

.reasonPage .reason03 .qaBox_ttl {
  font-weight: 700;
  font-size: 1.1em;
  background: var(--color-yellow);
  padding: 1em;
  line-height: 1.2;
  margin-bottom: var(--gutter-narrow);
}

.reasonPage .reason03 .qaBox dl {
  display: table;
  margin: 0 auto;
}

.reasonPage .reason03 .qaBox dt {
  font-weight: bold;
  margin-bottom: 10px;
}

.reasonPage .reason03 .qaBox dd {
  position: relative;
}

.reasonPage .reason03 .qaBox .answer {
  font-weight: bold;
}

.reasonPage .reason03 .qaBox .graph {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: -20px;
}

.reasonPage .reason03 .qaBox .txtGraph {
  width: 6em;
  height: 100px;
  padding-right: 1em;
  line-height: 94px;
  text-align: right;
  border-right: solid 1px #D6D6D6;
  box-sizing: border-box;
}

.reasonPage .reason03 .qaBox .percent {
  height: 64px;
  line-height: 64px;
  padding-left: 1em;
  font-weight: 900;
  display: flex;
  justify-content: center;
  align-items: center;
}

.reasonPage .reason03 .qaBox .font_num {
  font-family: var(--font-en);
  font-weight: 600;
  display: inline-block;
  margin-right: 5px;
  font-size: 2em;
}

.reasonPage .reason03 .qaBox .graphYes .percent {
  color: var(--color-main);
  border-left: solid clamp(140px, 48vw, 560px) currentColor;
}

.reasonPage .reason03 .qaBox .graphNo .percent {
  color: var(--color-gray);
  border-left: solid clamp(30px, 18vw, 240px) currentColor;
}

.reasonPage .reason03 .qaBox .caption {
  text-align: right;
  font-size: 0.8em;
}

.reasonPage .reason03 .planBox .reasonItem_subTtl {
  margin: var(--gutter) 0 0;
}

.reasonPage .reason03 .planBox .reasonItem_subTtl b {
  font-size: 1.2em;
  font-weight: 700;
  border-bottom: 5px double currentColor;
}

/*プラン画像スライダー*/
.estateDetail_reformset .planBoxList {
  overflow: hidden;
  position: relative;
}

.estateDetail_reformset .planBox {
  max-width: 900px;
  margin: 0 30px 0 30px;
}

.estateDetail_reformset .slick-arrow {
  position: absolute;
  top: 50%;
}

.estateDetail_reformset .slick-prev {
  left: 50%;
  /*transform: translateX(calc(-50% - 450px));*/
}

.estateDetail_reformset .slick-next {
  right: 50%;
  /*transform: translateX(calc(-50% + 470px));*/
}

.estateDetail_reformset .slick-dots {
  position: unset;
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.estateDetail_reformset .slick-dots li,
.estateDetail_reformset .slick-dots li button {
  width: 30px;
  height: 5px;
  padding: 0;
  color: transparent;
  outline: none;
  border: unset;
  display: block;
  background: var(--color-gray);
  cursor: pointer;
}

.estateDetail_reformset .slick-dots li button {
  padding: 2px!important;
}

.estateDetail_reformset .slick-dots li.slick-active button {
  background: var(--color-black);
  padding: 2px;
}

.estateDetail_reformset .slick-dots li button:before {
  content: none !important;
}


.reasonPage .reason03 .banner {
  margin-top: var(--gutter);
}

/*************** reason04 ****************/


/*************** reason06 ****************/
.reasonPage .reason06 .reasonItem_subTtl img  {
  width: 310px;
  margin-right: 1em;
}

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

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

  /*
  ===== 選ばれる理由:reasonPage  ==========================================
  */

  /*************** reason03 ****************/
  .reasonPage .reason03 .planList {
    display: flex;
    justify-content: space-between;
  }

  .reasonPage .reason03 .planList p {
    width: 48%;
  }

  /*************** reason04 ****************/
  .reasonPage .reason04 .reasonItem_inner {
    display: flex;
    justify-content: space-between;
  }

  .reasonPage .reason04 .reasonItem_inner .banner,
  .reasonPage .reason04 .reasonItem_inner .image {
    width: 40%;
    flex-shrink: 0;
    margin: var(--gutter);
    margin-right: 0;
  }

  .reasonPage .reason04 .reasonItem_inner .banner {
    margin-bottom: 0;
  }

}

/*==================================================
  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 .appealBox__proposalInner {
    flex-wrap: wrap;
  }

  .shop-reservePage .appealBox__pointBox {
    width: 100%;
  }

  .shop-reservePage .appealBox__pointTtl {
    width: 50vw;
  }

  .shop-reservePage .appealBox__staffBox {
    width: 100%;
    margin: var(--gutter) auto 0;
  }

  .shop-reservePage .appealBox__staffImg {
    position: relative;
    height: auto;
    width: 25%;
    margin-top: 30px;
    left: 0;
  }

  /*
  ===== イベント情報:eventPage ==========================================
  */
  .eventPage .itemList .item .iconWrap .cate_new {
    padding: 0 1em;
  }

  /*
  ===== 施工事例:galleryPage ==========================================
  */
  .galleryPage__pointBox::after {
    width: 87%;
  }

  .galleryPage__customerBox::after {
    width: 84.5%;
  }

  /*
  ===== モデルルーム・ショールーム:modelroomPage ==========================================
  */
  
  .modelroomPage .itemList {
    margin-top: 40px
  }

  .modelroomPage .itemList .List {
    margin-bottom: 40px;
  }

  .modelroomPage .itemList .item {
    margin-bottom: 100px;
  }

  .modelroomPage .info {
    top: 150px;
  }

  .modelroomPage .info .ttl_en {
    font-size: 3rem;
  }

  /* 詳細ページ */
  .modelroomPage .infoBox .detail_wrap .featuresBox .featuresList .featuresItem {
    width: calc((100% / 3) - 2rem );
  }
  .modelroomPage .infoBox .detail_wrap .galleryBox .galleryImg li {
    width: calc((100% /3) - 6px);
  }
  .modelroomPage .infoBox .detail_wrap .featuresBox .featuresList .featuresItem .number::after {
    width: 160px
  }
  /*.modelroomPage .infoBox .formBox #form .wpcf7 {
    padding: 70px 40px 20px;
  }*/
  .modelroomPage .infoBox .formBox #form .wpcf7 .entrytbl .brdr_td {
    width: 80%;
  }

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

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

}

/*==================================================
  tablet SETTINGS : Min1081px Max1200px
==================================================*/
@media screen and (min-width: 1081px) and (max-width: 1200px) {
  .modelroomPage .infoBox .detail_wrap .featuresBox .featuresList .featuresItem .number::after {
    width: 160px
  }
}

/*==================================================
  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 #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;
    width: 90%;
    box-shadow: inset 0 -3px 0 0 rgba(0, 0, 0, .4);
  }

  .singlePage #btnBox p.btn_end {
    width: 90%;
    border-radius: 5px;
  }

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

  /*
===== 来店予約 Tablet ==========================================
*/
  .shop-reservePage .ttlWrap {
    height: clamp(115px, 35vw, 350px);
    padding: 5% 2% 2%;
    justify-content: center;
  }

  .shop-reservePage .meritBox .ttl img {
    width: 50%;
  }

  .shop-reservePage .meritBox .meritList {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6vw;
  }

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

  .shop-reservePage .meritBox .meritList .item {
    /*display: flex;
    align-items: flex-start;
    justify-content: center;*/
    margin-bottom: var(--gutter-narrow);
    /*gap: 2%;*/
  }

  .shprsvPage__meritNum {
    left: 15%;
  }

  .shop-reservePage .meritBox .item .photo {
    width: 60%;
    margin: 0 auto;
  }

  .shop-reservePage .meritBox .item .info {
    width: 100%;
    text-align: center;
    margin: 0 auto;
    font-size: clamp(13px, 4vw, 16px);
    height: auto;
    /*justify-content: flex-start;*/
  }

  .shop-reservePage .meritBox .item .catch {
    /*text-align: left;*/
    margin-top: 0;
    padding: 10px 0;
    line-height: 1.4;
    font-size: 1em;
  }

  .shoprsvPage__meritTxt {
    /*text-align: left;*/
    font-size: 0.9em;
  }

  /*エリア最大級*/
  .shop-reservePage .appealBox__areaBox {
    height: auto;
  }
  
  /*イチオシポイント～スタッフが対応*/
  .shop-reservePage .appealBox__proposalInner {
    flex-wrap: wrap;
  }

  .shop-reservePage .appealBox__pointBox {
    width: 100%;
  }

  .shop-reservePage .appealBox__pointTtl {
    width: 90vw;
    padding: 0 40px;
  }

  .shop-reservePage .appealBox__staffBox {
    width: 100%;
  }

  .shop-reservePage .appealBox__staffImg {
    position: relative;
    height: auto;
    width: min(43%, 290px);
    left: -74px;
  }

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

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

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

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

  .shop-reservePage .flowItem h3 {
    width: 33%;
    text-align: left;
    margin-bottom: 0;
    font-size: clamp(12px, 4vw, 16px);
    display: flex;
    align-items: center;
  }

  .shop-reservePage .flowItem .num {
    display: inline-block;
    margin: 0 0.2em 0 0;
  }

  .shop-reservePage .flowItem.finish h3 {
    text-align: center;
  }

  .shop-reservePage .flowItem.finish h3 .num {
    margin-right: 0.6em;
  }

  .shop-reservePage .flowItem p {
    text-align: left;
    margin-bottom: 0;
    font-size: clamp(13px, 4vw, 16px);
    width: 47%;
    padding: 0 5px;
  }

  .shop-reservePage .flowItem .icon {
    width: 20%;
    text-align: center;
  }

  .shop-reservePage .flowItem:first-of-type img {
    max-height: unset;
    width: 80%;
  }

  .shop-reservePage .flowItem:nth-of-type(2) img,
  .shop-reservePage .flowItem:nth-of-type(3) img {
    width: 100%;
  }

  .shop-reservePage .flowItem:nth-of-type(4) img {
    width: 70%;
    max-height: unset;
  }

  .shop-reservePage .flowItem:nth-of-type(5) img {
    width: 55%;
    max-height: unset;
  }

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

  .shop-reservePage .formComment {
    font-weight: bold;
    text-align: center;
    font-size: 1.6rem;
  }

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

  .topicsPage .itemList .item a {
    padding: 5%;
  }

  .topicsPage .itemList .item dl dd {
    padding: 10px 0;
  }

  /*
===== イベント情報:eventPage  ==========================================
*/
  /*イベント情報:一覧*/
  .eventPage #postbox {
    margin-top: 5%;
  }

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

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

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

  .eventPage .itemList .item .iconWrap .cate_new {
    padding: 0 1em;
  }

  .eventPage .itemList .item .itemWrap {
    font-size: 0.95em;
  }

  .eventPage .itemList .item dt {
    margin: 5px 0;
  }

  .eventPage .itemList .item dd {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    line-height: 1.3;
  }

  .eventPage .itemList .item dd span {
    text-align: center;
    margin-right: 5px;
    min-width: 4em;
  }

  /*終了画像*/
  .eventPage .photo.end .end_message {
    font-size: 1.2rem;
  }

  /*イベント情報：詳細ページ*/
  .eventPage.singlePage .event_slides {
    margin-bottom: 80px;
  }

  .eventPage.singlePage .event_slides .slider_itemList {
    width: 90%;
    margin: 0 auto 8px;
  }

  .eventPage.singlePage .event_slides .slider_itemList li {
    max-width: 350px;
    max-height: 230px;
  }

  .eventPage.singlePage .event_slides .event_slider_pager {
    margin: auto;
    width: 90%;
  }

  .eventPage.singlePage .event_slides .event_slider_pager.centered-slider .slick-track {
    width: 100% !important;
    justify-content: center;
    gap: 1px;
  }

  .eventPage.singlePage .event_slides .event_slider_pager .item {
    margin: 0 2px;
  }

  .eventPage.singlePage .event_slides .event_slider_pager .item img {
    max-height: 42px;
  }

  .eventPage.singlePage .event_slides #sliderArrows .slick-arrow.slick-prev {
    left: 5px;
  }

  .eventPage.singlePage .event_slides #sliderArrows .slick-arrow.slick-next {
    right: 5px;
  }

  .slick-arrow.slick-prev, .slick-arrow.slick-prev::before,
  .slick-arrow.slick-next, .slick-arrow.slick-next::before {
    width: 50px;
    background-repeat: no-repeat;
  }

  /*
===== スタッフコラム: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;
  }


  /*
===== 中古リフォーム事例:gallery_renovationPage ==========================================
*/
  /*中古リフォーム事例:一覧*/
  .gallery_renovationPage .itemList .List li.item {
    width: 100%;
    max-width: 370px;
    margin-right: auto;
    margin-left: auto;
  }

  .gallery_renovationPage .itemList .List li.item:nth-child(3n-1) {
    margin-right: auto;
    margin-left: auto;
  }

  .gallery_renovationPage .itemList .photo {
    height: 237px;
  }

  .gallery_renovationPage .itemList .photo img {
    height: 100%;
  }

  .gallery_renovationPage .itemList .ttl h3 {
    padding: 2.5%;
  }

  .gallery_renovationPage .itemList .info {
    padding: 2.5%;
  }

  .gallery_renovationPage .itemList .info dt,
  .gallery_renovationPage .itemList .info dd {
    margin: 2px 0;
    font-size: 1.4rem;
  }

  .gallery_renovationPage .itemList .info dt {
    width: 47%;
  }

  .gallery_renovationPage .itemList .info dd {
    width: 53%;
  }

  .gallery_renovationPage .itemList .info dd .price_note,
  .gallery_renovationPage .itemList .info dd .cost_note {
    font-size: 0.9em;
  }

  /*中古リフォーム事例:詳細*/
  .gallery_renovationPage #titleBox .secTtl {
    padding: 5px 0;
    text-align: center !important;
  }

  .gallery_renovationPage #titleBox .icon {
    position: relative;
    top: 0;
  }

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

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

  .gallery_renovationPage .sliderBox .slider_main {
    margin: 20px;
  }

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

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

  /* スライド矢印 */
  .gallery_renovationPage #sliderArrows .slick-prev {
    left: 0%;
  }

  .gallery_renovationPage #sliderArrows .slick-next {
    right: 0%;
  }

  /*ポイント*/
  .galleryPage__pointBox::after {
    width: 80%;
    top: 6%;
  }

  .galleryPage__customerBox::after {
    width: 72%;
  }

  /*概要*/
  /*.gallery_renovationPage #dataBox dl {
    border: none;
  }*/

  .gallery_renovationPage #dataBox dt,
  .gallery_renovationPage #dataBox dd {
    padding: 2.5%;
    width: 100%;
    border: none;
    justify-content: flex-start;
  }

  .gallery_renovationPage #dataBox dd {
    font-size: 0.9em;
  }

  /*BEFORE/AFTER*/
  .galleryPage #BAtabBox .BAtab__ttl {
    margin-bottom: 3%;
  }

  .gallery_renovationPage #baBox dd.ba_before,
  .gallery_renovationPage #baBox dd.ba_after {
    border: 4px solid #FFF;
  }

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

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

  .galleryPage #BAtabBox .contitem li p {
    top: 0;
    bottom: auto;
  }

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

  /*ギャラリー*/
  .galleryPage .galleryImg {
    gap: 3px;
  }

  .galleryPage .galleryImg li {
     width: calc((100% / 3) - 2px);
  }

  /*ほかの施工事例も見ています*/
  .gallery_renovationPage .otherBox.itemList .List li.item {
    width: min(370px, 90vw);
    margin-bottom: 20px;
  }

  .gallery_renovationPage .otherBox.itemList .photo {
    height: auto;
  }

  .gallery_renovationPage .otherBox.itemList .photo img {
    height: 200px;
  }

   /*
  ===== モデルルーム・ショールーム:modelroomPage ==========================================
  */

  .modelroomPage__contentbox {
    padding: var(--gutter) 0;
  }
  
  .modelroomPage .itemList {
    width: 100%;
    margin-top: 30px;
  }

  .modelroomPage .itemList .List {
    display: block;
  }

  .modelroomPage .itemList .item {
    width: 100%;
  }

  .modelroomPage .itemList .item .photo img {
    aspect-ratio: 390 / 220;
    height: 220px;
    width: 100%;
  }

  .modelroomPage .info {
    top: 168px;
    left: 20px;
    padding-right: 20px;
  }

  .modelroomPage .info .ttl_en {
    margin-bottom: 8px;;
  }

  .modelroomPage .itemList .item {
    margin-bottom: 100px;
  }

  /* 詳細ページ */
  .modelroomPage #postbox .sliderBox .slider__list__item {
    max-width: 310px;
  }

  .modelroomPage #postbox .sliderBox .slider__list__item img {
    width: 310px;
    height: 207px;
  }

  .modelroomPage #postbox .titleBox .inner {
    padding-top: var(--gutter);
  }

  .modelroomPage .titleBox .modelroomPage__photo img {
    max-width: 90%;
  }

  /*メイン画像noimage*/
  .modelroomPage .titleBox .modelroomPage__photo img.object_fit_img {
    object-fit: contain;
    height: unset;
  }

  .modelroomPage #postbox .titleBox .secTtl {
    margin: 0 0 20px 0;
    padding: 0
  }

  .modelroomPage #postbox .titleBox .address {
    margin-bottom: 25px;
  }

  .modelroomPage #postbox .titleBox .reserve_detail {
    display: block;
    text-align: center;
    margin-bottom: 30px;
  }

  .modelroomPage #postbox .titleBox .reserve_detail .icon_txt.icon_reservable {
    margin: 0 0 18px 0;
  }

  .modelroomPage #postbox .titleBox .reserve_detail .date {
    margin-bottom: 18px;
  }

  .modelroomPage #postbox .titleBox #btnBox a {
    width: 250px;
  }

  .modelroomPage .infoBox {
    padding-top: 50px;
  }

  .modelroomPage .infoBox .detail_wrap {
    width: 100%;
    /*padding-bottom: 80px;*/
  }

  /*.modelroomPage .infoBox .detail_wrap .featuresBox {
    margin-bottom: 100px;
  }*/

  .modelroomPage .infoBox .detail_wrap .featuresBox h3 {
    margin-bottom: 40px;
  }

  .modelroomPage .infoBox .detail_wrap .featuresBox .inner {
    width: 90%;
    margin: auto;
  }

  .modelroomPage .infoBox .detail_wrap .featuresBox .featuresList {
    display: block;
  }

  .modelroomPage .infoBox .detail_wrap .featuresBox .featuresList .featuresItem {
    width: 100%;
    margin-bottom: 70px;
  }

  .modelroomPage .infoBox .detail_wrap .featuresBox .featuresList .featuresItem .number {
    margin-bottom: 30px;
  }

  .modelroomPage .infoBox .detail_wrap .featuresBox .featuresList .featuresItem .number::after {
    width: 290px;
  }

  .modelroomPage .infoBox .detail_wrap .featuresBox .featuresList .featuresItem .ttl {
    margin-bottom: 40px;
  }

  .modelroomPage .infoBox .detail_wrap .galleryBox {
    margin-bottom: 100px;
  }

  .modelroomPage .infoBox .detail_wrap .galleryBox h3 {
    margin-bottom: 18px;
  }

  .modelroomPage .infoBox .detail_wrap .galleryBox .galleryImg {
    gap: 3px;
  }

  .modelroomPage .infoBox .detail_wrap .galleryBox .galleryImg li {
    width: calc((100% /3) - 2px);
  }

  .modelroomPage .infoBox .detail_wrap #mapBox {
    padding-top: 0;
    margin-top: 0;
    width: 100%;
  }

  .modelroomPage .infoBox .detail_wrap #mapBox .address {
    width: 90%;
    margin: 0 auto 30px;
  }

  .modelroomPage .infoBox .detail_wrap #mapBox #map {
    width: 100%!important;
  }

  .modelroomPage .infoBox .detail_wrap #mapBox .btn_access {
    margin-top: 30px;
  }

  .modelroomPage .infoBox .formBox #form {
    width: 100%;
  }


  /*//////////////
店舗案内：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 .infoBox .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 .ttl {
    font-weight: bold;
  }

  .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: 1.4em;
    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 .contents-inner {
    margin: 10% 1.5%;
  }

  .companyPage .contents-inner .entrytbl td {
    border-bottom: 1px solid #E6E6E6;
  }

  .companyPage .tblwrap table caption {
    font-size: 16px;
    font-weight: bold;
    padding: 10px 0;
  }

  /*
===== プライバシーポリシー: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 .contents-inner {
    margin: 2.5%;
    flex-direction: column;
  }

  .sitemapPage .contents-inner ul {
    width: 100%;
  }

  .sitemapPage .contents-inner ul li+li,
  .sitemapPage .contents-inner ul+ul {
    margin-top: 2.5%;
  }

  .sitemapPage .contents-inner ul li a {
    padding: 5%;
  }

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

  .contactPage .contents-inner {
    margin: 2.5%;
  }

  .contactPage .contact_note {
    margin: 10px;
  }

  .contactPageIntro {
    background: url(../img/page/contact/img_intro_01.webp) no-repeat center bottom / auto 42vw, url(../img/page/contact/bg_intro_01_sp.webp) no-repeat center bottom / 100% auto;
    padding-bottom: 40vw;
  }

  .contactPageIntro__inner {
    width: 100%;
  }

  .contactPageIntro__mainTtl {
    font-size: clamp(1.8rem, 5.7vw, 3.8rem);
  }

  .contactPageIntro__txt {
    width: auto;
  }

  .contactPage .flowBox {
    padding: 0 2%;
  }

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

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

  .contactPage .flowItem h3 {
    width: 35%;
    text-align: left;
    margin-bottom: 0;
    font-size: clamp(12px, 4vw, 16px);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
  }

  .contactPage .flowItem h3 .num {
    display: inline-block;
    margin: 0 0.2em 0 0;
  }

  .contactPage .flowItem p br {
    display: none;
  }

  .contactPage .flowItem p {
    text-align: left;
    margin-bottom: 0;
    font-size: clamp(13px, 4vw, 16px);
    width: 45%;
    padding: 0 5px;
  }

  .contactPage .flowItem .icon {
    width: 20%;
    text-align: center;
  }

  .contactPage .flowItem:first-of-type img {
    max-height: unset;
    width: 100%;
  }

  .contactPage .flowItem.finish h3 {
    text-align: center;
  }

  .contactPage .flowItem.finish h3 .num {
    margin-right: 0.6em;
  }

  .contactPage .flowItem.finish p {
    width: 67%;
  }

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

  /*
  ===== 選ばれる理由:reasonPage  ==========================================
  */

  .reasonPage .ttlWrap {
    padding: var(--gutter) var(--gutter-narrow);
  }

  .reasonPage .reasonPage_mainTtl {
    background: none;
  }

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

  /*************** コンテンツ ****************/
  .reasonPage .reasonItem {
    margin-top: var(--gutter-narrow);
  }

  /*************** タイトルナンバー ****************/
  .reasonPage .reasonItem_ttlWrap {
    padding-bottom: 1px;
  }

  .reasonPage .reasonItem_ttl_en {
    font-size: clamp(18px, 9vw, 32px);
  }

  .reasonPage .reasonItem_ttl--border {
    padding: var(--gutter-supernarrow);
  }

  .reasonPage .reasonItem_ttl_txt {
    font-size: clamp(16px, 4.3vw, 18px);
  }

  /*************** reason01 ****************/
  .reasonPage .checkBox {
    max-width: 96%;
  }

  .reasonPage .reason01 .solution {
    padding: var(--gutter-supernarrow);
    width: 100%;
  }

  .reasonPage .reason01 .solution::after {
    position: absolute;
    content: "";
    background: url(../img/page/reason/illust_ttl_01.webp) no-repeat center / contain;
    width: clamp(60px, 19.1vw, 85px);
    aspect-ratio: 200 / 261;
    top: auto;
    right: -4%;
    /* bottom: -26vh; */
    bottom: -3px;
    transform: translateX(-22%);
  }

  .reasonPage .reason01 .solution_ttl::after {
    content: none;
  }

  .reasonPage .reason01 .solution_txt {
    text-align: left;
  }

  .reasonPage .reason01 .solution strong {
    font-size: clamp(1.2em, 6vw, 1.6em);
  }

  .reasonPage .reason01 .search {
    font-size: clamp(1.2em, 5vw, 1.5em);
  }

  .reasonPage .reason01 .search p {
    padding: 0 0.6em;
  }

  .reasonPage .reason01 .search p::before {
    transform: rotate(70deg);
    left: -17px;
    bottom: 20px;
  }

  .reasonPage .reason01 .search p::after {
    transform: rotate(-70deg);
    right: -17px;
    bottom: 20px;
  }

  .reasonPage .reason01 .search b {
    font-size: clamp(1.3em, 2vw, 1.6em);
  }


  /*************** reason02 ****************/
  .reasonPage .reason02 .plan::before {
    height: 20px;
    top: -40px;
  }

  /*プラン画像スライダー*/
  .estateDetail_reformset .planBoxSp img {
    width: 100%;
    max-width: 370px;
  }

  .estateDetail_reformset .slick-prev {
    left: 5px;
    transform: unset;
  }

  .estateDetail_reformset .slick-next {
    right: 5px;
    transform: unset;
  }

  .estateDetail_reformset .slick-arrow {
    top: 40%;
  }

  .estateDetail_reformset .slick-prev,
  .estateDetail_reformset .slick-next,
  .estateDetail_reformset .slick-prev::before,
  .estateDetail_reformset .slick-next::before {
    width: 50px;
    height: 50px;
  }

  .estateDetail_reformset .slick-dots {
    margin-top: 30px;
  }

  /*************** reason04 ****************/
  .reasonPage .reason04 .reasonItem_inner .banner {
    margin-top: var(--gutter);
  }

  .reasonPage .reason04 .reasonItem_inner .banner_ttl {
    margin: 2em 0 1em;
  }

  /*************** reason05 ****************/
  .reasonPage .reason05 .reasonItem_inner .image,
  .reasonPage .reason06 .reasonItem_inner .image {
    margin-top: var(--gutter);
  }

  /*************** reason06 ****************/
  .reasonPage .reason06 .reasonItem_subTtl img {
    width: 40%;
  }

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

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