/*============================
#WRAP
============================*/
div#WRAP {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  text-align: left;
  overflow: hidden;
  position: relative;
}

/*============================
#siteheader
============================*/
#siteheader {
  width: 100%;
  height: 58px;
  margin: 0 auto;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
}

#siteheader div.header_inner {
  width: auto;
  margin: 0 auto;
  position: relative;
}

#siteheader div.header_inner div.logo_box {
  width: 88px;
  height: inherit;
  position: absolute;
  top: 22px;
  left: 4.0%;
}

#siteheader div.header_inner div.logo_box h1 {
  height: inherit;
}

#siteheader div.header_inner div.logo_box a {
  height: inherit;
  display: block;
}

#siteheader div.header_inner div.contact_box {
  width: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0px;
  right: 0px;
}

#siteheader div.header_inner div.contact_box div.web_box,
#siteheader div.header_inner div.contact_box div.line_box,
#siteheader div.header_inner div.contact_box div.menu_bt {
  width: 56px;
  height: 56px;
}

#siteheader div.header_inner div.contact_box div.line_box a {
  width: 100%;
  height: 56px;
  display: block;
  background-color: #a99781;
  text-align: center;
}

#siteheader div.header_inner div.contact_box div.web_box a {
  width: 100%;
  height: 56px;
  display: block;
  background-color: #836c49;
  text-align: center;
}

#siteheader div.header_inner div.contact_box div.line_box a img {
  width: 22px;
  padding: 19px 0 0 0;
}

#siteheader div.header_inner div.contact_box div.web_box a img {
  width: 19px;
  padding: 19px 0 0 0;
}


#siteheader div.header_inner div.contact_box div.menu_bt {
  background-color: #fff;
  cursor: pointer;
  position: relative;
  z-index: 10;
}

#siteheader div.header_inner div.contact_box div.menu_bt div.bt_inner {
  width: 25px;
  height: 100%;
  box-sizing: border-box;
  padding: 20px 0;
  margin: 0 auto;
  position: relative;
}

#siteheader div.header_inner div.contact_box div.menu_bt div.bt_inner span {
  width: auto;
  height: 1px;
  display: block;
  background: #575757;
  position: relative;
  left: 0;
  transition: all 0.4s;
}

#siteheader div.header_inner div.contact_box div.menu_bt div.bt_inner span:nth-of-type(1) {
  top: 0%;
}

#siteheader div.header_inner div.contact_box div.menu_bt div.bt_inner span:nth-of-type(2) {
  width: 13px;
  top: 40%;
  left: 11px;
}

#siteheader div.header_inner div.contact_box div.menu_bt div.bt_inner span:nth-of-type(3) {
  top: 80%;
}

#siteheader div.header_inner div.contact_box div.menu_bt.active div.bt_inner span:nth-of-type(1) {
  transform: translateY(6px) rotate(-45deg);
}

#siteheader div.header_inner div.contact_box div.menu_bt.active div.bt_inner span:nth-of-type(2) {
  opacity: 0;
}

#siteheader div.header_inner div.contact_box div.menu_bt.active div.bt_inner span:nth-of-type(3) {
  transform: translateY(-8px) rotate(45deg);
}

/*///// header_nav ///// */
#siteheader div.header_inner div.header_nav {
  width: 100%;
  height: 100vh;
  display: none;
  position: fixed;
  top: 0px;
  z-index: 4;
  overflow-y: scroll;
  background-color: #a99781;
}

#siteheader div.header_inner div.header_nav nav div.main_nav_block {
  width: auto;
}

#siteheader div.header_inner div.header_nav nav div.main_nav_block span.nav_bg {
  display: none;
}

#siteheader div.header_inner div.header_nav nav div.main_nav_block div.nav_box {
  width: auto;
  padding: 120px 0 65px 0;
  position: relative;
}

#siteheader div.header_inner div.header_nav nav div.main_nav_block div.nav_box ul.header_nav_list {
  width: 92.0%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 30px;
  column-gap: 5.2%;
}

#siteheader div.header_inner div.header_nav nav div.main_nav_block div.nav_box ul.header_nav_list li {
  width: auto;
}


#siteheader div.header_inner div.header_nav nav div.main_nav_block div.nav_box ul.header_nav_list li a {
  width: auto;
  display: block;
  font-size: 17px;
  color: #fff;
  line-height: 1.4;
  letter-spacing: 0.025em;
  font-weight: 700;
  font-family: "copperplate", serif;
  overflow-wrap: break-word;
}

#siteheader div.header_inner div.header_nav nav div.main_nav_block div.nav_box ul.header_nav_list li a span.jp {
  width: auto;
  display: block;
  font-size: 12px;
  color: #fff;
  line-height: 1.4;
  letter-spacing: 0em;
  font-family: "Shippori Mincho", serif;
}

#siteheader div.header_inner div.header_nav nav div.main_nav_block div.nav_box div.sns_box {
  width: 92.0%;
  padding: 60px 0 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 30px;
}

#siteheader div.header_inner div.header_nav nav div.main_nav_block div.nav_box div.sns_box a.fb {
  width: 10px;
  display: block;
}

#siteheader div.header_inner div.header_nav nav div.main_nav_block div.nav_box div.sns_box a.insta {
  width: 19px;
  display: block;
}

/*============================
.main_container
============================*/
div.main_container {
  width: 100%;
  margin: 0 auto;
  text-align: left;
  position: relative;
}

/*============================
.page_title
============================*/
h1.page_title {
  font-family: "copperplate", serif;
  font-style: normal;
  font-weight: 600;
  font-size: 39px;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #a49c91;
  text-transform: uppercase;
}

h1.page_title span.jp {
  font-family: "shippori-mincho", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 12px;
  display: block;
  padding: 3px 0 0 0;
}


/*============================
.common_title
============================*/
div.common_title {
  width: auto;
}

div.common_title.center {
  text-align: center;
}

div.common_title h2 {
  width: auto;
  font-family: "copperplate", serif;
  font-weight: 600;
  font-size: 36px;
  line-height: 1em;
  letter-spacing: 0.05em;
  color: #a99781;
}

div.common_title p.jp {
  width: auto;
  font-weight: 600;
  color: #a99781;
  line-height: 1;
  letter-spacing: 0.05em;
  font-size: 14px;
  padding: 10px 0 0 0;
}

/*============================
.bread_crumb
============================*/
#TOP div.bread_crumb {
  width: 92%;
  padding: 15px 0 0 0;
  margin: 0 auto;
}

#TOP div.bread_crumb ol {
  width: auto;
  display: flex;
}

#TOP div.bread_crumb ol li {
  font-family: "copperplate", serif;
  position: relative;
  color: #585858;
  line-height: 1;
  font-weight: 300;
}

#TOP div.bread_crumb ol li.padding {
  padding: 0 0 0 10px;
}

#TOP div.bread_crumb ol li a {
  color: #585858;
  padding: 0 15px 0 0;
}

#TOP div.bread_crumb ol li a:hover {
  opacity: 0.8;
}

#TOP div.bread_crumb ol li:not(:last-child) a:after {
  display: inline-block;
  transform: rotate(45deg);
  width: 5px;
  height: 5px;
  margin: 0 5px;
  border-top: 1px solid #333333;
  border-right: 1px solid #333333;
  content: '';
  position: absolute;
  top: 30%;
  right: -10%;
}

/*============================
#CTA
============================*/
div#CTA {
  width: auto;
  margin: 0 auto;
  background: transparent url("../../images/common/cta_bg_sp.png") no-repeat center center;
  background-size: cover;
}

div#CTA div.cta_inner {
  width: auto;
  padding: 55px 0 65px 0;
}

div#CTA div.cta_inner h2.cta_title {
  width: auto;
  font-size: 35px;
  text-align: center;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.05em;
  font-family: "copperplate", serif;
  font-style: normal;
  font-weight: 700;
}

div#CTA div.cta_inner ul.contact_list {
  width: auto;
  padding: 35px 0 0 0;
  max-width: 300px;
  margin: 0 auto;

}

div#CTA div.cta_inner ul.contact_list li {
  width: 100%;
}

div#CTA div.cta_inner ul.contact_list li:nth-of-type(2) {
  margin: 12px 0 0 0;
}

div#CTA div.cta_inner ul.contact_list li a {
  width: auto;
  height: 60px;
  font-size: 14px;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.025em;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  color: #a99781;
  background-color: #fff;
}


div#CTA div.cta_inner ul.contact_list li a span::before {
  content: "";
  width: 23px;
  height: 21px;
  position: absolute;
  background: url(../../images/common/icon_line.png) no-repeat 0px 0px;
  background-size: 23px auto;
  top: 50%;
  transform: translateY(-50%);
  left: 22px;
}

div#CTA div.cta_inner ul.contact_list li a.web span::before {
  width: 18px;
  height: 19px;
  background: url(../../images/common/icon_web_gray.png) no-repeat 0px 0px;
  background-size: 18px auto;
  left: 23px;

}

div#CTA div.cta_inner ul.contact_list li a::after {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  position: absolute;
  top: 48%;
  right: 20px;
  transform: rotate(45deg) translate(0, -50%);
  -webkit-transform: rotate(45deg) translate(0, -50%);
  -ms-transform: rotate(45deg) translate(0, -50%);
}

div#CTA div.cta_inner ul.contact_list li a.web::after {
  border-top: 1px solid #a49c91;
  border-right: 1px solid #a49c91;
}

div#CTA div.cta_inner ul.contact_list li a.line {
  color: #fff;
  background-color: #a99781;
}

div#CTA div.cta_inner div.tel_box {
  width: auto;
  color: #fff;
  padding: 40px 0px 0 0px;
  margin: 0 auto;
}

div#CTA div.cta_inner div.tel_box p.tel_txt {
  width: auto;
  text-align: center;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.025em;
  padding: 0 0 17px 0;
}

div#CTA div.cta_inner div.tel_box a {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #fff;
  box-sizing: border-box;
}

div#CTA div.cta_inner div.tel_box a span.num {
  width: auto;
  padding: 0 0 0 23px;
  display: inline-block;
  line-height: 1;
  letter-spacing: 0.05em;
  font-family: "mrs-eaves-xl-serif", serif;
  color: #fff;
  font-size: 23px;
  position: relative;
}

div#CTA div.cta_inner div.tel_box a span.num::before {
  content: "";
  width: 14px;
  height: 19px;
  position: absolute;
  background: url(../../images/common/icon_tel.png) no-repeat 0px 0px;
  background-size: 14px auto;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}



div#CTA div.cta_inner p.address {
  width: auto;
  padding: 15px 0 0 0;
  color: #fff;
  font-size: 12px;
  text-align: center;
  line-height: 1.8;
  letter-spacing: 0.025em;
}

/*============================
sitefooter
============================*/

#sitefooter {
  width: auto;
  padding: 50px 0 0 0;
  background: transparent url(../../images/common/footer_bg_sp.png) center center no-repeat;
  background-size: cover;
}

#sitefooter div.inner {
  width: auto;
}

#sitefooter div.inner div.foot_wrapp {
  width: auto;
  padding: 0 0 60px 0;
}

#sitefooter div.inner div.foot_wrapp div.footer_left {
  width: auto;
}

#sitefooter div.inner div.foot_wrapp div.footer_left div.foot_logo_img {
  width: 155px;
  margin: 0 auto;
}

#sitefooter div.inner div.foot_wrapp div.footer_left div.sns_box {
  width: auto;
  padding: 22px 0 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 30px;
}

#sitefooter div.inner div.foot_wrapp div.footer_left div.sns_box a.fb {
  width: 10px;
}

#sitefooter div.inner div.foot_wrapp div.footer_left div.sns_box a.insta {
  width: 19px;
}

#sitefooter div.inner div.foot_wrapp div.footer_right {
  width: auto;
  padding: 45px 0 0 0;
}

#sitefooter div.inner div.foot_wrapp div.footer_right div.nav_area {
  width: auto;
}

#sitefooter div.inner div.foot_wrapp div.footer_right div.nav_area ul.foot_nav_list {
  width: 92.0%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 30px;
  column-gap: 5.2%;
}

#sitefooter div.inner div.foot_wrapp div.footer_right div.nav_area ul.foot_nav_list li {
  width: auto;
}


#sitefooter div.inner div.foot_wrapp div.footer_right div.nav_area ul.foot_nav_list li a {
  width: auto;
  display: block;
  font-size: 17px;
  color: #fff;
  line-height: 1.4;
  letter-spacing: 0.025em;
  font-weight: 700;
  font-family: "copperplate", serif;
  overflow-wrap: break-word;
}

#sitefooter div.inner div.foot_wrapp div.footer_right div.nav_area ul.foot_nav_list li a span {
  width: auto;
  display: block;
  font-size: 12px;
  color: #fff;
  line-height: 1.4;
  letter-spacing: 0em;
  font-family: "Shippori Mincho", serif;
}

#sitefooter div.inner div.foot_wrapp div.footer_right div.related_box {
  width: 92%;
  padding: 50px 0 0 0;
  margin: 0 auto;
}

#sitefooter div.inner div.foot_wrapp div.footer_right div.related_box h4.related_title {
  width: auto;
  padding: 0 0 8px 8px;
  font-size: 14px;
  color: #fff;
  text-align: left;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 500;
  border-bottom: 1px solid #fff;
}

#sitefooter div.inner div.foot_wrapp div.footer_right div.related_box h4.related_title:nth-of-type(2) {
  padding: 30px 0 8px 8px;
}

#sitefooter div.inner div.foot_wrapp div.footer_right div.related_box ul.related_list {
  width: auto;
  padding: 15px 0 0 8px;
}

#sitefooter div.inner div.foot_wrapp div.footer_right div.related_box ul.related_list li {
  width: 100%;
  padding: 0px 0 20px 13px;
  position: relative;
}


#sitefooter div.inner div.foot_wrapp div.footer_right div.related_box ul.related_list li a {
  width: auto;
  display: inline-block;
  font-size: 14px;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.025em;
  font-family: "copperplate", serif;
}

#sitefooter div.inner div.foot_wrapp div.footer_right div.related_box ul.related_list li::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 10px;
  left: 0%;
}

#sitefooter div.inner p.copy {
  width: auto;
  padding: 25px 0 25px 0;
  font-size: 10px;
  color: #fff;
  line-height: 1;
  letter-spacing: 0em;
  text-align: center;
  font-family: "copperplate", serif;
  font-style: normal;
  font-weight: 300;
  border-top: 1px solid #fff;
}


/*============================
common_btn
============================*/
a.common_btn {
  width: 300px;
  height: 60px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  color: #fff;
  letter-spacing: 0.05em;
  text-align: center;
  background-color: #a99781;
  box-sizing: border-box;
  filter: drop-shadow(3px 5px 5px rgba(161, 161, 161, 0.28));
}

/* wht */
a.common_btn.wht {
  color: #a99781;
  background-color: #fff;
}

/* brw */
a.common_btn.brw {
  background-color: #836c49;
}

/*============================
下層ページの見出し
============================*/
div.lowerpage_head {
  padding: 100px 4% 38px 4%;
  position: relative;
  background: url(../../images/common/top_bg_sp.png) no-repeat;
  background-size: cover;
}

div.lowerpage_head div.lowerpage_title {
  margin: 0 auto;
}

div.lowerpage_head div.lowerpage_title p {
  margin-bottom: 14px;
  text-align: center;
  font-family: "copperplate", serif;
  font-weight: 600;
  font-size: 39px;
  line-height: 1;
  color: #877b6d;
}

div.lowerpage_head div.lowerpage_title h1 {
  text-align: center;
  color: #877b6d;
  font-size: 12px;
}

/*============================
下層ページのパンくずリスト
============================*/
/* 下層ページタイトル内のみののレイアウト */
/* div.lowerpage_head div.lowerpage_bread_cramb {
  position: absolute;
  bottom: -38px;
  right: 4%;
  z-index: 100;
  width: 100%;
} */

/* /----------------------- */
div.lowerpage_bread_cramb ol {
  margin: 10px 4% 0 0;
  display: flex;
  justify-content: flex-end;
}

div.lowerpage_bread_cramb.bc_inner ol {
  margin: 0;
}

div.lowerpage_bread_cramb ol li {
  display: flex;
  align-items: center;
  font-size: 12px;
}

div.lowerpage_bread_cramb ol li a {
  color: #575757;
}

div.lowerpage_bread_cramb ol li:first-of-type a {
  color: #ab9579;
}

div.lowerpage_bread_cramb ol li:not(:last-of-type)::after {
  content: "";
  display: block;
  width: 14px;
  height: 1px;
  margin: 16px;
  background-color: #b8b8b8;
}

/*============================
ページネーション
============================*/
.wp-pagenavi {
  display: flex;
  justify-content: center;
  gap: 10px;
  
}

.wp-pagenavi a,
.wp-pagenavi span {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #b5b5b5;
}

.wp-pagenavi .current {
    background: #333;
    color: #fff;
}

.wp-pagenavi a.page.larger,
.wp-pagenavi a.page.smaller,
.wp-pagenavi a.nextpostslink,
.wp-pagenavi a.previouspostslink{
    color: #a99781;
}



/*============================
シングルページのページネーション
============================*/

.single_pager_sp_inner {
  margin: 0 0 50px 0;
  display: flex;
  justify-content: space-between;
}

.single_pager_sp_inner .prev a,
.single_pager_sp_inner .next a {
  position: relative;
  font-size: 13px;
  color: #ab9579;
}

.single_pager_sp_inner .prev a {
  padding-right: 1.5em;
}

.single_pager_sp_inner .next a {
  padding-left: 1.5em;
}

.single_pager_sp_inner .prev a::before {
  position: absolute;
  content: "＞";
  right: 0;
  top: 0;
}

.single_pager_sp_inner .next a::before {
  position: absolute;
  content: '＜';
  left: 0;
  top: 0;
}

.single_pager_sp_list a {
  width: 80%;
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  color: #fff;
  letter-spacing: 0.05em;
  text-align: center;
  background-color: #a99781;
  box-sizing: border-box;
  filter: drop-shadow(3px 5px 5px rgba(161, 161, 161, 0.28));
}

/*============================
カテゴリーのタブ
============================*/
.category_tab_sp {
  width: 92%;
  margin: 0 auto;
}

.category_tab_sp .tab_first {
  width: 43%;
  margin: 0 auto 10px auto;
}

.category_tab_sp .tab_second {
  display: flex;
  justify-content: space-between;
}

.category_tab_sp .tab_second p {
  width: 43%;
}

.category_tab_sp a {
  display: block;
  padding: 16px 0;
  color: #b5b5b5;
  border-bottom: 2px solid #b5b5b5;
  text-align: center;
  font-size: 13px;
}

.category_tab_sp .current a {
  color: #a99781;
  border-bottom: 2px solid #a99781;
}