@charset "UTF-8";
/* 共通 */
* {
  min-width: 0;
  min-height: 0;
  color: #3f3f3f;
  line-height: 1;
  font-family: Noto Sans CJK JP, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", YuGothic, Yu Gothic, "メイリオ", Meiryo, "MS ゴシック", sans-serif;
}

.marcellus-regular {
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
}

/* 共通 */
a {
  text-decoration: none;
  display: inline-block;
}
a:hover {
  opacity: 0.8;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  text-decoration: none;
}

.inner {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 1100px) {
  .inner {
    max-width: 100%;
  }
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

:target {
  /* ヘッダーの高さ分だけパディングを追加し、内容が隠れないようにする */
  padding-top: 60px;
  /* パディングで内容が下に押し出されるのを避けるために、同じ大きさのマイナスマージンを設定 */
  margin-top: -60px;
  /* ブラウザが要素を表示する際の挙動を補助する */
  display: block;
}

@media (max-width: 600px) {
  .pc {
    display: none;
  }
  .pc.flex {
    display: none;
  }
}

.sp {
  display: none;
}
@media (max-width: 600px) {
  .sp {
    display: block;
  }
}
.sp.flex {
  display: none;
}
@media (max-width: 600px) {
  .sp.flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

div img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  vertical-align: top;
}

/* top scroll */
.top_jump {
  visibility: hidden;
  width: 60px;
  height: 60px;
  background-color: #666666;
  position: fixed;
  z-index: 999;
  bottom: 0;
  right: 0;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  opacity: 0;
}
.top_jump::before {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: auto;
  content: "";
  vertical-align: middle;
  width: 8px;
  height: 8px;
  border-top: 2px solid #dddddd;
  border-right: 2px solid #dddddd;
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
  transform: translate(-50%, -15%) rotate(-45deg);
}

.view {
  visibility: visible;
  opacity: 1;
}

.top_jump a {
  display: block;
  height: 100%;
}

/* header */
.header-group {
  width: 100%;
  background-color: #fff;
  z-index: 10;
  top: 0;
}
.header-group .header-wrap {
  width: 90%;
  margin: 0 auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.header-group .header-wrap .logo {
  height: 40px;
}
@media (max-width: 600px) {
  .header-group .header-wrap .logo {
    height: 35px;
  }
}
.header-group .header-wrap .logo a {
  height: 100%;
}
.header-group .header-wrap .logo a img {
  width: auto;
  height: 100%;
}
.header-group .header-wrap .link-list {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /* ドロップダウンメニュー */
}
@media (max-width: 970px) {
  .header-group .header-wrap .link-list {
    display: none;
  }
}
.header-group .header-wrap .link-list .btn {
  position: relative;
  margin-right: 20px;
}
.header-group .header-wrap .link-list .btn a {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 13px;
  font-weight: 600;
}
.header-group .header-wrap .link-list .btn a .arrow {
  position: relative;
  display: inline-block;
  width: 8.1px;
  height: 4.5px;
  margin-left: 5px;
}
.header-group .header-wrap .link-list .btn a .arrow::before, .header-group .header-wrap .link-list .btn a .arrow::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 0.5px);
  width: 1px;
  height: 6px;
  border-radius: 9999px;
  background-color: #3f3f3f;
  -webkit-transform-origin: 50% calc(100% - 0.5px);
          transform-origin: 50% calc(100% - 0.5px);
}
.header-group .header-wrap .link-list .btn a .arrow::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.header-group .header-wrap .link-list .btn a .arrow::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.header-group .header-wrap .link-list .btn a:hover .arrow::before, .header-group .header-wrap .link-list .btn a:hover .arrow::after {
  bottom: auto;
  top: 0;
  left: calc(50% - 0.5px);
  width: 1px;
  height: 6px;
  -webkit-transform-origin: 50% 0.5px;
          transform-origin: 50% 0.5px;
}
.header-group .header-wrap .link-list .btn .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #fff;
  min-width: 200px;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  border-radius: 10px;
}
.header-group .header-wrap .link-list .btn .dropdown-menu a {
  font-size: 13px;
  display: block;
  padding: 15px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-bottom: 1px solid #a98c6e;
  text-decoration: none;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.header-group .header-wrap .link-list .btn .dropdown-menu a:last-child {
  border-bottom: none;
}
.header-group .header-wrap .link-list .btn .dropdown-menu a:hover {
  background-color: #f5f5f5;
}
.header-group .header-wrap .link-list .btn:hover .dropdown-menu {
  display: block;
}
.header-group .header-wrap .link-list .sns {
  margin-right: 10px;
}
.header-group .header-wrap .link-list .sns:last-child {
  margin-right: 0;
}
.header-group .header-wrap .link-list .sns img {
  width: 20px;
  height: 20px;
}

.toggle_btn {
  display: none;
  position: absolute;
  top: 50%;
  right: 30px;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  width: 30px;
  height: 15px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  cursor: pointer;
  z-index: 5;
}
@media (max-width: 970px) {
  .toggle_btn {
    display: block;
  }
}
.toggle_btn .toggle_line {
  width: 100%;
  height: 100%;
}
.toggle_btn .toggle_line span {
  display: block;
  position: absolute;
  right: 0;
  height: 1px;
  background-color: #3f3f3f;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.toggle_btn .toggle_line span:nth-child(1) {
  width: 100%;
  top: 0;
}
.toggle_btn .toggle_line span:nth-child(2) {
  width: 80%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.toggle_btn .toggle_line span:nth-child(3) {
  width: 50%;
  bottom: 0px;
}
.toggle_btn.open .toggle_line span:nth-child(1) {
  top: 50%;
  -webkit-transform: translateY(50%) rotate(-315deg);
  transform: translateY(50%) rotate(-315deg);
}
.toggle_btn.open .toggle_line span:nth-child(2) {
  opacity: 0;
}
.toggle_btn.open .toggle_line span:nth-child(3) {
  width: 100%;
  top: 50%;
  -webkit-transform: translateY(50%) rotate(315deg);
  transform: translateY(50%) rotate(315deg);
}

#navArea {
  /*ハンバーガーメニュー*/
}
#navArea nav {
  display: block;
  position: fixed;
  top: 0;
  right: -100%;
  bottom: 0;
  width: 100%;
  height: 100vh;
  background: #f2f0ec;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 3;
  opacity: 0;
}
#navArea nav .inner {
  padding: 100px 5% 0 5%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#navArea nav .inner .headline {
  font-size: 47px;
  margin-bottom: 50px;
}
#navArea nav .inner .logo {
  margin-bottom: 30px;
}
@media (max-width: 600px) {
  #navArea nav .inner .logo {
    height: 35px;
  }
}
#navArea nav .inner .logo a {
  height: 100%;
}
#navArea nav .inner .logo a img {
  width: auto;
  height: 100%;
}
#navArea nav .inner .list-box .list-container {
  width: calc(100% / 2 - 20px / 2);
  margin-right: 20px;
}
#navArea nav .inner .list-box .list-container:nth-child(2n) {
  margin-right: 0;
}
#navArea nav .inner .list-box .list-container .list .item {
  margin-bottom: 20px;
}
#navArea nav .inner .list-box .list-container .list .item a {
  font-size: 14px;
  line-height: calc(18 / 16);
}
#navArea nav .inner .list-box .list-container .list .item.contact a {
  background-color: #a98c6e;
  padding: 10px 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #fff;
  border-radius: 20px;
  display: inline-block;
}
#navArea nav .inner .list-box .list-container .list .item.child a {
  padding-left: 25px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}
#navArea nav .inner .list-box .list-container .list .item.child a::before {
  content: "";
  width: 15px;
  height: 1px;
  background-color: #a98c6e;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
#navArea.open nav {
  right: 0;
  opacity: 1;
}

/* footer */
.footer {
  background-color: #fff;
  padding: 80px 0 0 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-top: 1px solid #3f3f3f;
}
.footer .inner {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer .inner .left .logo {
  height: 40px;
  margin-bottom: 30px;
}
.footer .inner .left .logo img {
  width: auto;
  height: 100%;
}
.footer .inner .left .company {
  font-size: 18px;
  margin-bottom: 20px;
}
@media (max-width: 600px) {
  .footer .inner .left .company {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
@media (max-width: 600px) {
  .footer .inner .left .info {
    margin-bottom: 40px;
  }
}
.footer .inner .left .info .box {
  font-size: 12px;
  margin-bottom: 10px;
}
@media (max-width: 600px) {
  .footer .inner .left .info .box {
    font-size: 12px;
  }
}
@media (max-width: 600px) {
  .footer .inner .right {
    width: 100%;
  }
}
.footer .inner .right .list-box .list-container {
  width: calc(100% / 2 - 60px / 2);
  margin-right: 60px;
  min-width: 165px;
}
.footer .inner .right .list-box .list-container:nth-child(2n) {
  margin-right: 0;
}
@media (max-width: 600px) {
  .footer .inner .right .list-box .list-container {
    width: calc(100% / 2 - 20px / 2);
    margin-right: 20px;
  }
  .footer .inner .right .list-box .list-container:nth-child(2n) {
    margin-right: 0;
  }
}
.footer .inner .right .list-box .list-container .list .item {
  margin-bottom: 20px;
}
.footer .inner .right .list-box .list-container .list .item a {
  font-size: 14px;
  line-height: calc(18 / 16);
}
.footer .inner .right .list-box .list-container .list .item.child a {
  padding-left: 25px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}
.footer .inner .right .list-box .list-container .list .item.child a::before {
  content: "";
  width: 15px;
  height: 1px;
  background-color: #a98c6e;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.footer .copyright {
  text-align: center;
  padding: 80px 0 20px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media (max-width: 600px) {
  .footer .copyright {
    padding: 40px 0 20px 0;
  }
}

.morebtn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.morebtn a::after {
  content: "";
  width: 50px;
  height: 10px;
  background-image: url(/wp-content/uploads/2025/06/icon-a-b.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-left: 15px;
}

.top-line {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 600px) {
  .top-line {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.top-line .left {
  width: 50%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 600px) {
  .top-line .left {
    width: 90%;
    margin: 0 auto;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
  }
}
.top-line .left .headline {
  font-size: clamp(43px, 5.6vw, 76px);
  color: #a98c6e;
  font-family: "Marcellus", serif;
  line-height: 1;
  letter-spacing: 0.1em;
}
@media (max-width: 600px) {
  .top-line .left .headline {
    font-size: 43px;
  }
}
.top-line .left .headline span {
  display: block;
  margin-bottom: 10px;
  font-size: 22px;
  color: #3f3f3f;
  letter-spacing: 0;
}
@media (max-width: 600px) {
  .top-line .left .headline span {
    font-size: 13px;
  }
}
.top-line .right {
  width: 50%;
  height: 360px;
}
@media (max-width: 600px) {
  .top-line .right {
    width: 100%;
    height: 160px;
    margin-bottom: 30px;
  }
}
.top-line .right img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.box-banner-list {
  max-width: 800px;
  margin: 0 auto;
  width: 90%;
}
.box-banner-list .box-banner {
  width: calc(100% / 2 - 30px / 2);
  margin-right: 30px;
  margin-bottom: 30px;
  border: 1px solid #3f3f3f;
}
.box-banner-list .box-banner:nth-child(2n) {
  margin-right: 0;
}
.box-banner-list .box-banner:nth-last-child(-n+2) {
  margin-bottom: 0;
}
@media (max-width: 600px) {
  .box-banner-list .box-banner {
    width: calc(100% / 1 - 0px / 1);
    margin-right: 0px;
    margin-bottom: 10px;
  }
  .box-banner-list .box-banner:nth-child(1n) {
    margin-right: 0;
  }
  .box-banner-list .box-banner:nth-last-child(-n+2) {
    margin-bottom: 10px;
  }
  .box-banner-list .box-banner:last-child {
    margin-bottom: 0;
  }
}
.box-banner-list .box-banner a {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.box-banner-list .box-banner a:after {
  content: "";
  width: 40px;
  height: 10px;
  background-image: url(/wp-content/uploads/2025/06/icon-a-b.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  right: 20px;
  bottom: 20px;
}
.box-banner-list .box-banner a .image {
  width: 110px;
  height: 85px;
  margin-right: 30px;
}
.box-banner-list .box-banner a .image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.box-banner-list .box-banner a .content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 33px;
  color: #a78a6e;
  line-height: 1;
}
.box-banner-list .box-banner a .content span {
  font-size: 12px;
  display: block;
  margin-bottom: 5px;
}

.category-buttons {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.category-buttons button {
  margin-right: 10px;
  padding: 10px 25px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
  color: #fff;
  border-radius: 20px;
  font-size: 13px;
}
.category-buttons button:last-child {
  margin-right: 0;
}
.category-buttons button.all {
  color: #9d8064;
}

.pagination {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pagination .page-btn {
  margin-right: 30px;
}
.pagination .page-btn.active {
  color: #a4805f;
}
.pagination .pagination-ellipsis {
  margin: 0 40px 0 10px;
}
.pagination .arrow {
  width: 50px;
  height: 10px;
  background-image: url(/wp-content/uploads/2025/06/icon-a-b.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}
.pagination .arrow.prev {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
  margin-right: 30px;
}

#content {
  margin-top: 60px;
}
@media (max-width: 600px) {
  #content {
    margin-top: 55px;
  }
}