/*============================
#WRAP
============================*/
div#WRAP {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  text-align: left;
  overflow: hidden;
  position: relative;
}

/*============================
#siteheader
============================*/
#siteheader {
  width: 100%;
  height: 70px;
  margin: 0 auto;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
}

#siteheader div.header_inner {
  width: auto;
  height: 70px;
  margin: 0 auto;
  position: relative;
}

#siteheader div.header_inner div.logo_box {
  width: 127px;
  height: inherit;
  position: absolute;
  top: 42px;
  left: 4.7%;
}

#siteheader div.header_inner div.logo_box h1 {
  height: inherit;
}

#siteheader div.header_inner div.logo_box a {
  width: 100%;
  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: 63px;
  height: 63px;
}

#siteheader div.header_inner div.contact_box div.line_box a {
  width: 100%;
  height: 63px;
  display: block;
  background-color: #a99781;
  text-align: center;
}

#siteheader div.header_inner div.contact_box div.web_box a {
  width: 100%;
  height: 63px;
  display: block;
  background-color: #836c49;
  text-align: center;
}

#siteheader div.header_inner div.contact_box div.line_box a img {
  width: 23px;
  margin: 0 auto;
  padding: 22px 0 0 0;
}

#siteheader div.header_inner div.contact_box div.web_box a img {
  width: 19px;
  margin: 0 auto;
  padding: 22px 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: 30px;
  height: 100%;
  box-sizing: border-box;
  padding: 23px 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: 20px;
  top: 40%;
  left: 10px;
}

#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(9px) 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(-7px) rotate(45deg);
}

/*///// header_nav ///// */
#siteheader div.header_inner div.header_nav {
  width: 100%;
  height: 100vh;
  display: none;
  opacity: 1;
  position: fixed;
  top: 0px;
  z-index: 4;
  /* opacity: 0;
  top: -100px;
  transition: all .4s;  */
  background-color: #a99781;
  overflow-y: scroll;
}

/* #siteheader div.header_inner div.header_nav.visible {
  opacity: 1;
  top:70px;
} */

#siteheader div.header_inner div.header_nav nav div.main_nav_block {
  width: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-flow: column;

}

#siteheader div.header_inner div.header_nav nav div.main_nav_block span.nav_bg {
  width: auto;
  height: 100vh;
  display: block;
  background: transparent url(../../images/common/nav_bg_pc.png) center center no-repeat;
  background-size: cover;
}

#siteheader div.header_inner div.header_nav nav div.main_nav_block div.nav_box {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 130px 15% 80px 15%;
  position: relative;
  box-sizing: border-box;
}

#siteheader div.header_inner div.header_nav nav div.main_nav_block div.nav_box ul.header_nav_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(5, auto);
  grid-auto-flow: column;
  row-gap: 30px;
  column-gap: 5.2%;
  gap: 50px 10.6%;
}


/* レスポンシブ用 */
@media (max-width: 1000px) {
  #siteheader div.header_inner div.header_nav nav div.main_nav_block {
    grid-template-columns: 40% 70%;
  }

  #siteheader div.header_inner div.header_nav nav div.main_nav_block div.nav_box {
    padding: 100px 10% 80px 10%;
  }
}





#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: 22px;
  color: #ffffff;
  line-height: 1;
  letter-spacing: 0.05em;
  font-family: "copperplate", serif;
  font-weight: 700;
}

#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;
  padding: 10px 0 0 0;
  display: block;
  font-size: 14px;
  color: #ffffff;
  line-height: 1;
  letter-spacing: 0em;
  font-family: "Shippori Mincho", serif;
  font-style: normal;
  font-weight: 500;
}

#siteheader div.header_inner div.header_nav nav div.main_nav_block div.nav_box div.sns_box {
  width: auto;
  padding: 60px 0 0 0;
  display: flex;
  justify-content: flex-start;
  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;
  padding: 0px 0 0 0;
}

/*============================
.page_title
============================*/
h1.page_title {
  /* padding: 85px 0 0 0; */
  font-family: "copperplate", serif;
  font-style: normal;
  font-weight: 700;
  font-size: 54px;
  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: 24px;
  display: block;
  padding: 6px 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: 62px;
  line-height: 1;
  letter-spacing: 0.025em;
  color: #a99781;
}

div.common_title p.jp {
  width: auto;
  font-weight: 600;
  color: #a99781;
  line-height: 1;
  letter-spacing: 0.05em;
  font-size: 22px;
  padding: 10px 0 0 0;
}


/*============================
.bread_crumb
============================*/
#TOP div.bread_crumb {
  width: auto;
  padding: 25px 0 0 0;
}

#TOP div.bread_crumb div.inner ol {
  width: auto;
  display: flex;
}

#TOP div.bread_crumb div.inner ol li {
  font-family: "copperplate", serif;
  position: relative;
  color: #585858;
  line-height: 1;
  font-weight: 300;
}

#TOP div.bread_crumb div.inner ol li.padding {
  padding: 0 0 0 10px;
}

#TOP div.bread_crumb div.inner ol li a {
  color: #585858;
  padding: 0 15px 0 0;
}

#TOP div.bread_crumb div.inner ol li a:hover {
  opacity: 0.8;
}

#TOP div.bread_crumb div.inner 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_pc.png") no-repeat center center;
  background-size: cover;
}

div#CTA div.cta_inner {
  width: auto;
  padding: 100px 0 90px 0;
}

div#CTA div.cta_inner h2.cta_title {
  width: auto;
  font-size: 55px;
  text-align: center;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.075em;
  font-family: "copperplate", serif;
  font-weight: 700;
}

div#CTA div.cta_inner ul.contact_list {
  width: auto;
  padding: 60px 0 0 0;
  max-width: 950px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

div#CTA div.cta_inner ul.contact_list li {
  width: 47.4%;
}

div#CTA div.cta_inner ul.contact_list li a {
  width: auto;
  height: 70px;
  font-size: 18px;
  text-align: center;
  color: #a49c91;
  line-height: 1;
  letter-spacing: 0.025em;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background-color: #fff;
}

div#CTA div.cta_inner ul.contact_list li a::after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  position: absolute;
  top: 48%;
  right: 25px;
  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 ul.contact_list li a span.label {
  position: relative;
  padding: 0 0 0 38px;
}

div#CTA div.cta_inner ul.contact_list li a span::before {
  content: "";
  width: 25px;
  height: 24px;
  position: absolute;
  background: url(../../images/common/icon_line.png) no-repeat 0px 0px;
  background-size: 25px auto;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

div#CTA div.cta_inner ul.contact_list li a.web span::before {
  width: 22px;
  height: 23px;
  background: url(../../images/common/icon_web_gray.png) no-repeat 0px 0px;
  background-size: 22px auto;

}

div#CTA div.cta_inner div.tel_box {
  width: auto;
  color: #fff;
  padding: 50px 0 0 0;
}

div#CTA div.cta_inner div.tel_box p.tel_txt {
  width: auto;
  text-align: center;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.025em;
}

div#CTA div.cta_inner div.tel_box a {
  width: auto;
  margin: 20px 0 0 0;
  display: flex;
  justify-content: center;
  position: relative;
  text-align: center;
}

div#CTA div.cta_inner div.tel_box a span.num {
  font-size: 30px;
  padding: 0 0 0 28px;
  font-family: "mrs-eaves-xl-serif", serif;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1;
  position: relative;
}

div#CTA div.cta_inner div.tel_box a span.num::before {
  content: "";
  width: 17px;
  height: 22px;
  position: absolute;
  background: url(../../images/common/icon_tel.png) no-repeat 0px 0px;
  background-size: 17px auto;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

div#CTA div.cta_inner p.address {
  width: auto;
  padding: 12px 0 0 0;
  color: #fff;
  font-size: 16px;
  text-align: center;
  line-height: 2;
  letter-spacing: 0.025em;
}

/*============================
#sitefooter
============================*/
#sitefooter {
  width: auto;
  padding: 90px 0 0 0;
  background: transparent url(../../images/common/footer_bg_pc.png) center center no-repeat;
  background-size: cover;
}

#sitefooter div.inner {
  width: auto;
}

#sitefooter div.inner div.foot_wrapp {
  width: 78.1%;
  padding: 0 0 80px 0;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

#sitefooter div.inner div.foot_wrapp div.footer_left {
  width: 17.9%;
}

#sitefooter div.inner div.foot_wrapp div.footer_left div.foot_logo_img {
  max-width: 179px;
}

#sitefooter div.inner div.foot_wrapp div.footer_left div.sns_box {
  max-width: 179px;
  padding: 33px 0 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 20px
}

#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: 20px;
}

#sitefooter div.inner div.foot_wrapp div.footer_right {
  width: 58.9%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}


/* レスポンシブ用 */
@media (max-width: 1000px) {
  #sitefooter div.inner div.foot_wrapp div.footer_right {
    width: 70.0%;
  }
}


#sitefooter div.inner div.foot_wrapp div.footer_right div.nav_area {
  width: 60%;
}

#sitefooter div.inner div.foot_wrapp div.footer_right div.nav_area ul.foot_nav_list {
  width: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(5, auto);
  grid-auto-flow: column;
  row-gap: 30px;
  column-gap: 10.8%;


}



#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: 18px;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: 700;
  font-family: "copperplate", serif;
  font-style: normal;
  word-wrap: break-word;
  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;
  padding: 10px 0 0 0;
  color: #fff;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 500;
  font-family: "Shippori Mincho", serif;
}

#sitefooter div.inner div.foot_wrapp div.footer_right div.related_box {
  width: 37.4%;
}

#sitefooter div.inner div.foot_wrapp div.footer_right div.related_box h4.related_title {
  width: auto;
  font-size: 14px;
  color: #fff;
  line-height: 1;
  letter-spacing: 0em;
  padding: 0 0 10px 0;
  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 10px 0;
}

#sitefooter div.inner div.foot_wrapp div.footer_right div.related_box ul.related_list {
  width: auto;
  padding: 10px 0 0 0;
}

#sitefooter div.inner div.foot_wrapp div.footer_right div.related_box ul.related_list li {
  width: auto;
  padding: 0px 0 20px 10px;
  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: 12px;
  color: #fff;
  line-height: 1.4;
  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: "";
  width: 5px;
  height: 1px;
  background-color: #fff;
  top: 10px;
  left: 0%;
  position: absolute;
}

#sitefooter div.inner p.copy {
  width: auto;
  padding: 45px 0 45px 0;
  font-size: 13px;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
  font-family: "copperplate", serif;
  border-top: 1px solid #fff;
}

/*============================
common_btn
============================*/
a.common_btn {
  width: 246px;
  padding: 10px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  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 {
  background-image: url(../../images/common/top_bg_pc.png);
  background-repeat: no-repeat;
  background-size: cover;
}

div.lowerpage_head_inner {
  width: 92%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 160px 0 90px 0;
  position: relative;
}

div.lowerpage_head div.lowerpage_head_inner div.lowerpage_title p {
  margin: 0 0 24px 0;
  font-family: "copperplate", serif;
  font-weight: 600;
  font-size: 60px;
  color: #877b6d;
  line-height: 1;
}

div.lowerpage_head div.lowerpage_head_inner div.lowerpage_title h1 {
  color: #877b6d;
  font-size: 20px;
  line-height: 1;
}

/*============================
下層ページのパンくずリスト
============================*/
div.lowerpage_head div.lowerpage_bread_cramb {
  position: absolute;
  bottom: 30px;
  right: 0;
}

/* パンくずリスト内のレイアウト */
div.lowerpage_head div.lowerpage_bread_cramb ol {
  display: flex;
}

div.lowerpage_head div.lowerpage_bread_cramb ol li {
  display: flex;
  align-items: center;
}

div.lowerpage_head div.lowerpage_bread_cramb ol li a {
  color: #575757;
}

div.lowerpage_head div.lowerpage_bread_cramb ol li:first-of-type a {
  color: #ab9579;
}

div.lowerpage_head 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_pc {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.single_pager_pc .prev a,
.single_pager_pc .next a {
  position: relative;
  font-size: 15px;
  color: #ab9579;
}

.single_pager_pc .prev a {
  padding-right: 1.5em;
}

.single_pager_pc .next a {
  padding-left: 1.5em;
}

.single_pager_pc .prev a::before {
  position: absolute;
  content: "＞";
  right: 0;
  top: 0;
}

.single_pager_pc .next a::before {
  position: absolute;
  content: '＜';
  left: 0;
  top: 0;
}

.single_pager_pc .list a {
  width: 246px;
  padding: 12px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  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_pc {
  /* width: 92%;
  max-width: 900px; */
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}

.category_tab_pc li {
  width: 31%;
  text-align: center;
}

.category_tab_pc li a {
  display: block;
  padding: 18px 0;
  color: #b5b5b5;
  border-bottom: 2px solid #b5b5b5;
  font-size: 20px;
}

.category_tab_pc li.current a {
  color: #a99781;
  border-bottom: 2px solid #a99781;
}