@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul {
  list-style-type: none;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol,
div {
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: "Trajan Pro";
  src: url("../fonts/TrajanPro-Regular.otf");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
html {
  font-family: "Noto Serif JP", serif;
  font-size: 10px;
  color: #383838;
  scroll-behavior: smooth;
}

main {
  background-color: #fffefc;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

.l-wrapper {
  width: 100%;
  max-width: 100%;
  max-width: 100vw;
  max-width: 100dvw;
  -webkit-clip-path: inset(0px);
          clip-path: inset(0px);
  overflow-x: clip;
}

.is-hide {
  opacity: 0;
  outline: none;
  visibility: hidden;
  max-height: 0px;
  max-width: 0px;
  pointer-events: none;
}

.image {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.image--100 {
  height: 100%;
}

.image--auto {
  width: auto;
}

.image--contain {
  -o-object-fit: contain;
  object-fit: contain;
}

.button {
  position: relative;
  display: block;
  width: 100%;
  padding: 18.4px;
  max-width: 280px;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  text-align: center;
  transition: all 0.3s ease;
}

@media screen and (max-width: 767px) {
  .button {
    padding: 20px;
    font-size: 14px;
  }
}
.button::after {
  content: "";
  position: absolute;
  margin: auto;
  top: 50%;
  right: 19.5px;
  width: 12px;
  aspect-ratio: 1/1;
  border-right: 1px solid #383838;
  border-bottom: 1px solid #383838;
  transform: translateY(-50%) rotate(-45deg);
  transition: inherit;
}

@media screen and (max-width: 767px) {
  .button::after {
    width: 10px;
    height: 10px;
  }
}
.button--center {
  margin-inline: auto;
}

.button--outline {
  border: 1px solid #2d2d2d;
  padding: 17.6px;
}
.button--outline.button--mypage {
  margin: 0 auto 20px;
}

@media screen and (max-width: 767px) {
  .button--outline {
    padding: 19.2px;
  }
}
.button--outline:hover {
  background: #2d2d2d;
  color: #fff;
}

.button--outline:hover::after {
  border-color: #fff;
}

.button--download {
  margin: 0 auto 20px;
  background-color: #9f8e58;
  color: #fff;
}

.button--download::before {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  width: calc(100% - 9px);
  height: calc(100% - 9px);
  border: 1px solid #fff;
}

.button--download::after {
  content: '';
  right: 17px;
  width: 20px;
  border: none;
  background: url('../img/common/header-icon1.svg') no-repeat center / contain;
  transform: translateY(-50%) rotate(0);
}

.button--big {
  padding: 22.6px;
  max-width: 680px;
}

@media screen and (max-width: 767px) {
  .button--big {
    padding: 21.2px;
  }
}
@media screen and (max-width: 767px) {
  .button--big::after {
    width: 12px;
    height: 12px;
  }
}
.button--small {
  padding: 10px;
  font-size: 1.4rem;
}

@media screen and (max-width: 767px) {
  .button--small {
    padding: 6.6px;
    font-size: 12px;
  }
}
.button--small::after {
  width: 8px;
  height: 8px;
  right: 10px;
}

.button--black, .button--brown, .button--darkred {
  color: #fff;
}

.button--black::after, .button--brown::after, .button--darkred::after {
  border-color: #fff;
}

.button--black {
  background: #2d2d2d;
}

.button--black:hover {
  background: #777272;
}

.button--brown {
  background: #b49975;
}

.button--brown:hover {
  background: #b7ab9d;
}

.button--darkred {
  background: #6D3434;
}

.button--darkred:hover {
  background: #944D4D;
}

.button--blue {
  background: #36446B;
  color: #FFF;
}
.button--blue::after {
    border-color: #FFF;
}

.button--blue:hover {
  background: #525b74;
}

.button--no-mw {
  max-width: unset;
}

@media screen and (max-width: 767px) {
  .button--sp-no-mw {
    max-width: unset;
  }
}
.button-wrap {
  display: flex;
  gap: 20px;
}

@media screen and (max-width: 767px) {
  .button-wrap {
    flex-direction: column;
  }
}
.button-wrap--small {
  gap: 4px;
}

@media screen and (max-width: 767px) {
  .button-wrap--small {
    gap: 10px;
  }
}
@media screen and (max-width: 767px) {
  .button-wrap--sp-row {
    flex-direction: row;
    gap: 2px;
  }
}
.heading--center {
  text-align: center;
}

.heading__title {
  font-size: 2rem;
  font-weight: 400;
  font-family: "Trajan Pro", sans-serif;
  letter-spacing: 0.1em;
  color: #b49975;
  margin-bottom: 12px;
}

@media screen and (max-width: 767px) {
  .heading__title {
    font-size: 16px;
    margin-bottom: 5px;
  }
  .heading__title.spl {
    font-size: 2.5rem !important;
    margin-bottom: 5px;
  }
}
.heading__subtitle {
  font-size: 3.2rem;
  font-weight: 400;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 767px) {
  .heading__subtitle {
    font-size: 28px;
  }
  .heading__subtitle.line {
    font-size: 22px;
  }
}
.header {
  background-color: #fff;
  position: fixed;
  top: 0;
  z-index: 999;
  width: 100%;
  transition: 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.12);
}

@media screen and (max-width: 1259px) {
  .header {
    background-color: #fff;
  }
}
.header.scrolled {
  background-color: #fffefc;
}

.header__container {
  display: flex;
  gap: 0 10px;
  padding-left: 20px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

@media screen and (max-width: 1242px) {
  .header__container {
    padding-left: 20px;
  }
}
@media screen and (max-width: 1259px) {
  .header__container {
    padding: 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  }
}
.header__logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

@media screen and (max-width: 1259px) {
  .header__logo-container {
    padding: 4px 0 4px 5px;
  }
}
@media screen and (max-width: 767px) {
  .header__logo-container {
    gap: 0;
  }
}
.header__logo {
  display: flex;
  flex-shrink: 0;
  width: 100px;
  height: auto;
}

@media screen and (max-width: 1259px) {
  .header__logo {
    width: 88.5px;
    height: 41px;
  }
}
.header__wrapper {
  display: flex;
  flex-direction: column;
}

.header__wrapper-text {
  font: 1.2rem "Trajan Pro", sans-serif;
  letter-spacing: 0.06em;
  line-height: 1.8571428571em;
  white-space: nowrap;
  color: #786955;
  text-align: left;
}

@media screen and (max-width: 1259px) {
  .header__wrapper-text {
    font-size: 1rem;
  }
}
@media screen and (max-width: 950px) {
  .header__wrapper-text {
    font-size: 8px;
  }
}
.header__wrapper-text--jp {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-align: center;
  color: #2d2d2d;
  border-top: 1px solid #c4b8a7;
}

.header__hamburger {
  display: none;
}

@media screen and (max-width: 1259px) {
  .header__hamburger {
    background: #b49975;
    position: relative;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    cursor: pointer;
    transition: 0.3s ease;
  }
}
.header__hamburger span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 25px;
  height: 2px;
  background-color: #fffefc;
  border-radius: 1px;
  transform: rotate(0deg) translate(-50%);
  transition: 0.3s ease-in-out;
}

.header__hamburger span:first-of-type {
  transform: translateY(calc(-50% - 5px)) translateX(-50%);
}

.header__hamburger span:last-of-type {
  transform: translateY(calc(-50% + 7px)) translateX(-50%);
}

@media screen and (max-width: 1259px) {
  .header__hamburger.toggle {
    opacity: 1;
    visibility: visible;
  }
}
.header__hamburger.toggle span {
  transform: rotate(45deg);
}

.header__hamburger.toggle span:first-of-type {
  transform: translate(-50%) rotate(45deg);
}

.header__hamburger.toggle span:nth-of-type(2) {
  opacity: 0;
  transform: translateX(20px);
}

.header__hamburger.toggle span:last-of-type {
  transform: rotate(-45deg) translate(calc(-50% + 3px), calc(-50% - 8px));
}

.header__menu {
  display: flex;
  align-items: center;
  gap: 25px;
}

@media screen and (max-width: 1259px) {
  .header__menu {
    position: absolute;
    top: 50px;
    width: 100%;
    height: 100vh;
    /* background: rgba(57, 39, 24, 0); */
    flex-direction: column;
    gap: 70px;
    transform: translateX(100%);
    /* overflow: hidden; */
  }
}
@media screen and (max-width: 1259px) {
  .header__menu {
    /* 
    background: rgba(57, 39, 24, 0.8);
    -webkit-transition: background 0.6s, -webkit-transform 0.3s;
    transition: background 0.6s, -webkit-transform 0.3s; */
    transition: transform 0.3s;
  }
  .header__menu--overlay {
    content: "";
    width: 200vw;
    height: calc(100vh - 50px);
    pointer-events: none;
    position: fixed; /* 画面全体に固定する */
    top: 50px;
    left: 0;
    z-index: -1;
    opacity: 0;
    background: rgba(57, 39, 24, 0.8);
    transition: opacity 0.6s;
  }
}
@media screen and (max-width: 1259px) {
  .header__menu.toggle {
    opacity: 1;
    transform: translateX(0);
    /* background: rgba(57, 39, 24, 0.8); */
    /* transition: background 0.6s, -webkit-transform 0.3s; */
    transition: transform 0.3s, opacity 0.6s;
    z-index: -1;
  }
  .header__hamburger.toggle + .header__menu--overlay {
    opacity: 1;
    transition: opacity 0.6s;
  }
}
.header__nav {
  display: flex;
  justify-content: flex-end;
  max-width: 750px;
  width: 100%;
  gap: 20px 18px;
}

@media screen and (max-width: 1259px) {
  .header__nav {
    gap: 15px;
  }
}
@media screen and (max-width: 1259px) {
  .header__nav {
    display: none;
  }
}
.header__nav--sp {
  display: none;
}

@media screen and (max-width: 1259px) {
  .header__nav--sp {
    position: absolute;
    right: 0;
    display: flex;
    padding: 60px 50px 100vh;
    flex-direction: column;
    width: 70%;
    gap: 20px;
    background-color: #fffefc;
  }
}
.header__nav-link {
  font-size: 1.3rem;
  padding-bottom: 5px;
  white-space: nowrap;
  letter-spacing: 0.1em;
  position: relative;
}

@media screen and (max-width: 1259px) {
  .header__nav-link {
    font-size: 12px;
  }
}
.header__nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: linear-gradient(270deg, #b49975 0%, #b49975 100%);
  transition: transform 0.42s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.header__nav-link:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.header__nav-link--wicon::after {
  display: inline-block;
  content: "";
  background-image: url("../img/common/arrow-link-black.svg");
  margin-left: 6px;
  width: 12px;
  height: 12px;
}

.header__button {
  display: flex;
  gap: 1px;
}

@media screen and (max-width: 1259px) {
  .header__button--pc {
    display: none;
  }
}
.header__button--tablet {
  display: none;
  margin-left: auto;
}

@media screen and (min-width: 1081px) {
  .header__button--tablet {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .header__button--tablet {
    display: none;
  }
}
.header__button--sp {
  display: none;
}

@media screen and (max-width: 1259px) {
  .header__button--sp {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    gap: 0;
  }
}
.header__btn-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  width: 90px;
  height: 90px;
  padding: 20px 0 16px;
  background-color: #36446B;
  transition: 0.3s ease;
}
/* LINE*/
a.header__btn-item.line{
  background-color: #03C44F;
}


@media screen and (max-width: 1259px) {
  .header__btn-item {
    width: 100%;
    height: 50px;
    padding: 10px;
    justify-content: center;
  }
}
.header__btn-item span {
  display: block;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  color: #fff;
  text-align: center;
}

@media screen and (max-width: 1259px) {
  .header__btn-item span {
    display: none;
  }
}
@media screen and (max-width: 1150px) {
  .header__btn-item span {
    font-size: 10px;
  }
}
@media screen and (max-width: 1259px) {
  .header__btn-item span {
    display: inline;
  }
}
.header__btn-item img {
  width: 38.43px;
  height: 26.92px;
}

@media screen and (max-width: 1259px) {
  .header__btn-item img {
    width: 30.12px;
    height: 20.38px;
  }
}
.header__btn-item--reservation {
  background-color: #6d3434;
}

.header__btn-item--reservation img {
  width: 30.14px;
  height: 31px;
}

@media screen and (max-width: 1259px) {
  .header__btn-item--reservation img {
    width: 23.03px;
    height: 23.92px;
  }
}
.header__btn-item--mail {
  background-color: #36446b;
}

.header__btn-item--mail img {
  width: 28.23px;
  height: 21.23px;
  margin-top: 5px;
}

@media screen and (max-width: 1259px) {
  .header__btn-item--mail img {
    width: 21.26px;
    height: 15.95px;
    margin-top: 0;
  }
}
.header__btn-item--line {
  background-color: #36676b;
}

.header__btn-item--line span {
  text-align: center;
  padding-top: 5px;
  line-height: 1.2142857143em;
}

@media screen and (max-width: 1259px) {
  .header__btn-item--line span {
    padding-top: 1px;
  }
}
.header__btn-item--line img {
  width: 29.35px;
  height: 28.92px;
}

@media screen and (max-width: 1259px) {
  .header__btn-item--line img {
    width: 22px;
    height: 22px;
  }
}
.header__btn-item:hover {
  background-color: #525B74;
}

.header__btn-item--reservation:hover {
  background-color: #705555;
}

.header__btn-item--mail:hover {
  background-color: #525b74;
}

.header__btn-item--line:hover {
  background-color: #5c7172;
}

.footer {
  z-index: 100;
}

.footer__contact {
  background-image: url("../img/common/footer-bg.svg");
  background-color: #fbf7f2;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 153.7px 0 140px;
}

@media screen and (max-width: 950px) {
  .footer__contact {
    padding: 73.7px 0 81px;
  }
}
.footer__contact-wrapper {
  padding-inline: 4%;
  margin-inline: auto;
  max-width: calc(880px + 8%);
  box-sizing: border-box;
}

@media screen and (max-width: 767px) {
  .footer__contact-wrapper {
    max-width: 100%;
    padding-inline: 5%;
  }
}
.footer__contact-text-wrap {
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1200px + 8%);
  box-sizing: border-box;
}

@media screen and (max-width: 767px) {
  .footer__contact-text-wrap {
    max-width: 100%;
    padding: 0 5%;
  }
}
@media screen and (max-width: 950px) {
  .footer__contact-text-wrap {
    padding: 0;
  }
}
.footer__contact-heading {
  display: block;
  font: 2rem "Trajan Pro", sans-serif;
  letter-spacing: 0.1em;
  line-height: 1.3em;
  padding-bottom: 25px;
  color: #b49975;
  text-align: center;
}

@media screen and (max-width: 950px) {
  .footer__contact-heading {
    font-size: 16px;
    padding-bottom: 10px;
  }
}
.footer__contact-heading--jp {
  font: 3.2rem "Noto Serif JP", serif;
  color: #383838;
  padding-bottom: 0;
}

@media screen and (min-width: 391px) and (max-width: 950px) {
  .footer__contact-heading--jp {
    font-size: 28px;
  }
}
@media screen and (min-width: 320px) and (max-width: 390px) {
  .footer__contact-heading--jp {
    font-size: 22px;
  }
}
.footer__contact-btn-wrap {
  display: grid;
  /* grid-template-columns: repeat(2, 1fr); LINEボタン非表示の為*/
  grid-template-columns: repeat(1, 1fr);
  gap: 40px;
  width: 100%;
  margin: 60px auto 0;
}

@media screen and (max-width: 950px) {
  .footer__contact-btn-wrap {
    grid-template-columns: repeat(1, 1fr);
    justify-items: center;
    justify-content: center;
    margin-top: 35px;
    gap: 10px;
  }
}
.footer__contact-btn {
  position: relative;
  max-width: 420px;
  width: 100%;
  background-color: #36446B;
  padding: 30px 0 32px;
  border: 5px solid transparent;
  box-shadow: inset 0 0 0 1px #fff, 2px 3px 8px rgba(107, 100, 91, 0.4);
  display: flex;
  justify-content: center;
  transition: 0.3s ease;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .footer__contact-btn {
    height: auto;
    padding: 22px 0;
    max-width: 420px;
  }
}
.footer__contact-btn span {
  font-size: 1.8rem;
  color: #fff;
  letter-spacing: 0.08em;
  line-height: 1em;
}

@media screen and (max-width: 950px) {
  .footer__contact-btn span {
    font-size: 16px;
  }
}
.footer__contact-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2%;
  transform: translate(-50%, -50%);
  background-image: url("../img/common/header-icon1.svg");
  background-size: cover;
  background-repeat: no-repeat;
  width: 34.27px;
  height: 24px;
}

@media screen and (max-width: 950px) {
  .footer__contact-btn::after {
    width: 25.55px;
    height: 17.9px;
  }
}
.footer__contact-btn--reservation {
  background-color: #6d3434;
}

.footer__contact-btn--reservation::after {
  background-image: url("../img/common/header-icon2.svg");
  width: 28.2px;
  height: 29px;
}

.footer__contact-btn--mail {
  background-color: #36446b;
}

.footer__contact-btn--mail::after {
  background-image: url("../img/common/header-icon3.svg");
  width: 30.55px;
  height: 22.97px;
  right: 3%;
}

@media screen and (max-width: 950px) {
  .footer__contact-btn--mail::after {
    right: 2%;
  }
}
.footer__contact-btn--line {
  background-color: #36676b;
}

.footer__contact-btn--line::after {
  background-image: url("../img/common/header-icon4.svg");
  width: 28.42px;
  height: 28px;
}

.footer__contact-btn:hover {
  background-color: #525B74;
}

.footer__contact-btn--reservation:hover {
  background-color: #705555;
}

.footer__contact-btn--mail:hover {
  background-color: #525b74;
}

.footer__contact-btn--line:hover {
  background-color: #5c7172;
}

.footer__link-nav {
  background-color: #56534f;
}

.footer__container {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1200px + 8%);
  box-sizing: border-box;
  padding: 117px 4% 100px;
}

@media screen and (max-width: 767px) {
  .footer__container {
    max-width: 100%;
    padding: 0 5%;
  }
}
@media screen and (max-width: 950px) {
  .footer__container {
    gap: 20px;
  }
}
@media screen and (max-width: 950px) {
  .footer__container {
    padding: 60px 50px 40px;
    flex-direction: column;
  }
}
.footer__wrapper {
  max-width: 290px;
  width: 100%;
}

@media screen and (max-width: 950px) {
  .footer__wrapper {
    max-width: 100%;
  }
}
.footer__copyright {
  background-color: #fffefc;
  padding: 14.5px 0;
}

@media screen and (max-width: 950px) {
  .footer__copyright {
    padding: 10px 0;
    margin-bottom: 64px;
  }
}
.footer__copyright span {
  display: block;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  line-height: 1.8571428571em;
  color: #bebcb9;
  text-align: center;
}

@media screen and (max-width: 950px) {
  .footer__copyright span {
    font-size: 12px;
  }
}
.footer__content {
  display: flex;
  justify-content: space-between;
}

@media screen and (max-width: 950px) {
  .footer__content {
    flex-direction: column;
  }
}
.footer__link-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-right: 1px solid #fff;
  padding: 0 40px;
}

@media screen and (max-width: 950px) {
  .footer__link-content {
    padding: 0 20px;
  }
}
@media screen and (max-width: 950px) {
  .footer__link-content {
    border-right: 0;
    padding: 0;
    margin-bottom: 20px;
  }
}
.footer__link-content:first-child {
  padding-left: 0;
}

.footer__link-content:last-child {
  border: none;
  padding-right: 0;
}

@media screen and (max-width: 950px) {
  .footer__link-content:last-child .footer__link:last-child {
    margin-bottom: 40px;
  }
}
.footer__link {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  line-height: 1.8571428571em;
  padding: 0 0 5px;
  color: #fff;
  white-space: nowrap;
  position: relative;
}

@media screen and (min-width: 767px) and (max-width: 980px) {
  .footer__link {
    font-size: 12px;
  }
}
.footer__link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: linear-gradient(270deg, #b49975 0%, #b49975 100%);
  border-radius: 5px;
  transition: transform 0.42s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.footer__link:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.footer__link--wicon::after {
  display: inline-block;
  content: "";
  background-image: url("../img/common/arrow-link-white.svg");
  margin-left: 6px;
  width: 12px;
  height: 12px;
}

.footer__btn {
  display: block;
  width: 100%;
  padding: 3px 0;
  margin-bottom: 8px;
  background-color: #fff;
  transition: 0.3s ease;
}

@media screen and (max-width: 950px) {
  .footer__btn {
    width: 291px;
    margin: 0 auto 8px;
  }
}
.footer__btn:last-child {
  margin-bottom: 0;
}

.footer__btn picture {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__btn picture::after {
  position: absolute;
  content: "";
  background-image: url("../img/common/arrow-link.svg");
  width: 12px;
  height: 12px;
  right: 11px;
}

.footer__btn:hover {
  opacity: 0.5;
}

.banner__container {
  width: 100%;
  height: 480px;
  background: url("../img/banner/banner-bg.jpg") no-repeat center/cover;
  position: relative;
}

@media screen and (max-width: 767px) {
  .banner__container {
    height: 180px;
    margin-top: 50px;
  }
}
.banner__title-container {
  width: 100%;
  height: 100%;
  position: relative;
}

@media screen and (max-width: 767px) {
  .banner__title-container {
    display: flex;
    align-items: center;
  }
}
.banner__wrapper {
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  top: 200px;
  bottom: 140px;
}

@media screen and (max-width: 767px) {
  .banner__wrapper {
    position: static;
  }
}
.banner__title-wrap {
  position: relative;
  padding-left: 40px;
}

@media screen and (max-width: 767px) {
  .banner__title-wrap {
    padding-left: 15px;
  }
}
.banner__title-wrap::before {
  content: "";
  width: 6px;
  height: 100%;
  background-color: #b49975;
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (max-width: 767px) {
  .banner__title-wrap::before {
    width: 4px;
  }
}
.banner__title {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  padding: 20.4px 0;
}

@media screen and (max-width: 767px) {
  .banner__title {
    gap: 10px;
    padding: 2.2px 0;
  }
}
.banner__title-en {
  font-size: 2.2rem;
  font-family: "Trajan Pro", sans-serif;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #b49975;
}

@media screen and (max-width: 767px) {
  .banner__title-en {
    font-size: 16px;
  }
}
.banner__title-jp {
  font-size: 4.2rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 767px) {
  .banner__title-jp {
    font-size: 32px;
  }
}
.container {
  padding: 0 4%;
  margin: 0 auto;
  max-width: calc(1200px + 8%);
  box-sizing: border-box;
}

@media screen and (max-width: 767px) {
  .container {
    max-width: 100%;
    padding: 0 5%;
  }
}
.container--940 {
  padding-inline: 4%;
  margin-inline: auto;
  max-width: calc(940px + 8%);
  box-sizing: border-box;
}

@media screen and (max-width: 767px) {
  .container--940 {
    max-width: 100%;
    padding-inline: 5%;
  }
}
.container--1040 {
  padding-inline: 4%;
  margin-inline: auto;
  max-width: calc(1040px + 8%);
  box-sizing: border-box;
}

@media screen and (max-width: 767px) {
  .container--1040 {
    max-width: 100%;
    padding-inline: 5%;
  }
}
.breadcrumbs {
  padding-block: 20px 105px;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .breadcrumbs {
    padding-bottom: 63px;
  }
}
.breadcrumbs__link {
  font-size: 1.4rem;
  color: #b49975;
  letter-spacing: 0.08em;
  display: -webkit-box;
  position: relative;
}

@media screen and (max-width: 767px) {
  .breadcrumbs__link {
    font-size: 12px;
  }
}
.breadcrumbs__link:not(:last-child) {
  flex-shrink: 0;
  margin-right: 8px;
}

.breadcrumbs__link:not(:last-child)::after {
  content: "＞";
  color: #383838 !important;
  pointer-events: none !important;
  margin-left: 8px;
  display: block;
}

.breadcrumbs__link--black {
  color: #383838;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.category {
  display: flex;
  gap: 30px;
}

@media screen and (max-width: 767px) {
  .category {
    flex-direction: column;
    gap: 18px;
  }
}
.category--align-center {
  align-items: center;
}

.category__title {
  padding: 14.5px;
  display: inline-block;
  width: 100%;
  max-width: 180px;
  height: -moz-fit-content;
  height: fit-content;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  color: #fff;
  text-align: center;
  background: #b49975;
}

@media screen and (max-width: 767px) {
  .category__title {
    padding: 6px;
    max-width: unset;
    font-size: 14px;
  }
}
.category__checklist {
  display: flex;
  gap: 15px 30px;
  flex-wrap: wrap;
  align-items: center;
  height: -moz-fit-content;
  height: fit-content;
}

@media screen and (max-width: 767px) {
  .category__checklist {
    -moz-column-gap: 25px;
    column-gap: 25px;
  }
}
.category__checklist-box {
  position: absolute;
  left: -9999px;
}

.category__checklist-box:not(:checked) + .category__checklist-label::after {
  opacity: 0;
  transform: scale(0);
}

.category__checklist-box:checked + .category__checklist-label::before {
  background: #777272;
  border-color: transparent;
}

.category__checklist-label {
  position: relative;
  display: inline-block;
  padding-left: 26px;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .category__checklist-label {
    padding-left: 24px;
    font-size: 14px;
  }
}
.category__checklist-label::before, .category__checklist-label::after {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 3px;
  transition: all 0.2s ease;
  top: 0;
  bottom: 0;
  margin: auto;
}

.category__checklist-label::before {
  content: "";
  left: 0;
  border: 1px solid #d5d5d5;
}

.category__checklist-label::after {
  content: "✔︎";
  padding-top: 1px;
  left: 1px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: "Trajan Pro", sans-serif;
}

.category-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

@media screen and (max-width: 767px) {
  .category-group {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.category-group > .category {
  display: grid;
  grid-template-columns: 180fr 390fr;
}

@media screen and (max-width: 767px) {
  .category-group > .category {
    grid-template-columns: 1fr;
  }
}
.category-group > :not(:last-child) > :last-child {
  padding-right: 20px;
}

@media screen and (max-width: 767px) {
  .category-group > :not(:last-child) > :last-child {
    padding-right: 0;
  }
}
.card {
  display: flex;
  flex-direction: column;
}

.card:hover .card__img img {
  transform: scale(1.1);
}

.card:hover .card__button {
  background: #777272;
}

.card__img {
  margin-bottom: 20px;
  aspect-ratio: 1/1;
  display: flex;
  /* overflow: hidden; */
}
.card__img--coupon{
  aspect-ratio: 16/9;
}
.card__img .property__favorite-wrap {
  position: absolute;
  top: -7px;
  right: 10px;
  filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, .3));
}
.card__img .property__favorite-wrap .property__favorite {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 65px;
  background-color: #fff;
  border: none;
  font-size: 1.6rem;
  color: #777;
  cursor: pointer;
  clip-path: polygon(
    0 0, 
    100% 0, 
    100% 100%, 
    50% 90%, 
    50% 90%, 
    0 100%
  );
}
.card__img .property__favorite-wrap .property__favorite.is-active {
  background-color: #36446B;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .card__img {
    margin-bottom: 10px;
  }
}
.card__img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  transition: 0.3s ease;
}

@media screen and (max-width: 767px) {
  .card__img img {
    aspect-ratio: 166/209;
  }
}
.card__img--square img {
  aspect-ratio: 1/1;
}
.card__img--coupon img {
  aspect-ratio: 16/9;
}

.card__date {
  margin-block-end: 10px;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 767px) {
  .card__date {
    font-size: 12px;
  }
}

.card__loc {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 767px) {
  .card__loc {
    font-size: 12px;
  }
}
.card__loc::before {
  content: "";
  position: relative;
  top: 4px;
  display: inline-block;
  width: 12px;
  height: 17px;
  margin-right: 7px;
  background: url("../img/icons/location.svg") no-repeat center/cover;
}

.card__title {
  display: block;
  margin-block: 10px 20px;
  font-size: 1.8rem;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 767px) {
  .card__title {
    margin-block: 8px;
    font-size: 16px;
    line-height: 1.625em;
  }
}
.card__lower {
  margin-block: auto 0;
}

.card__info {
  margin-bottom: 60px;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
}

@media screen and (max-width: 767px) {
  .card__info {
    margin-bottom: 20px;
    font-size: 12px;
  }
}
/* .card__button {
  pointer-events: none;
} */
.card--sample .card__img {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card--sample .card__img::before, .card--sample .card__img::after {
  position: absolute;
}

.card--sample .card__img::before {
  content: "";
  width: 100%;
  height: 100%;
  background: #786955;
  mix-blend-mode: multiply;
  z-index: 2;
}

.card--sample .card__img::after {
  content: "SAMPLE\aIMAGE";
  font-size: 2.2rem;
  color: #fff;
  line-height: 1.1818181818em;
  letter-spacing: 0.1em;
  font-family: "Trajan Pro", sans-serif;
  text-align: center;
  white-space: pre-wrap;
  z-index: 3;
}

@media screen and (max-width: 767px) {
  .card--sample .card__img::after {
    font-size: 1.6rem;
  }
}
.card-group {
  margin-bottom: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 80px 30px;
}

@media screen and (max-width: 767px) {
  .card-group {
    margin-bottom: 60px;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 18px;
  }
}
.badges {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .badges {
    gap: 10px;
  }
}
.badges__item {
  border-radius: 20px;
  padding-inline: 20px;
  height: 28px;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  line-height: 1.8571428571em;
  color: #fff;
  background: #b49975;
}

@media screen and (max-width: 767px) {
  .badges__item {
    padding-inline: 16px;
    font-size: 12px;
    height: 24px;
  }
}
.pagination, .wp-pagenavi {
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination .previouspostslink,
.pagination .nextpostslink,
.previouspostslink,
.nextpostslink {
  position: relative;
  display: block;
  width: 13px;
  height: 18px;
  color: transparent;
}

.pagination .previouspostslink::before,
.pagination .nextpostslink::before,
.previouspostslink::before,
.nextpostslink::before {
  content: "";
  margin: auto;
  position: absolute;
  inset: 0 4px 0 auto;
  border-right: 1px solid #383838;
  border-bottom: 1px solid #383838;
  margin-block: auto;
  width: 12px;
  height: 12px;
  display: block;
  transform: rotate(-45deg);
  pointer-events: none;
}

.pagination .previouspostslink:not(a)::before,
.pagination .nextpostslink:not(a)::before,
.previouspostslink:not(a)::before,
.nextpostslink:not(a)::before {
  border-color: #bebcb9;
}

.pagination .previouspostslink,
.previouspostslink {
  margin-right: 18px;
  transform: scaleX(-1);
}

@media screen and (max-width: 767px) {
  .pagination .previouspostslink,
  .previouspostslink {
    margin-right: 8px;
  }
}
.pagination .nextpostslink,
.nextpostslink {
  margin-left: 10px;
}

@media screen and (max-width: 767px) {
  .pagination .nextpostslink,
  .nextpostslink {
    margin-left: 2px;
  }
}
.pagination .page,
.pagination .current,
.pagination .extend,
.wp-pagenavi .page,
.wp-pagenavi .current,
.wp-pagenavi .extend {
  border: 1px solid #2d2d2d;
  margin-right: 6px;
  width: 40px;
  height: 50px;
  font-size: 1.6rem;
  color: #2d2d2d;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .pagination .page,
  .pagination .current,
  .pagination .extend,
  .wp-pagenavi .page,
  .wp-pagenavi .current,
  .wp-pagenavi .extend {
    margin-right: 5px;
    width: 30px;
    height: 40px;
    font-size: 14px;
  }
}
.pagination .current,
.wp-pagenavi .current {
  color: #fff;
  background: #2d2d2d;
}

.pagination .page,
.wp-pagenavi .page {
  transition: 0.3s ease;
}

.pagination .page:hover,
.wp-pagenavi .page:hover {
  color: #fff;
  background: #383838;
}/*# sourceMappingURL=common.css.map */

/* 250131LINEボタン追加 */
.footer__contact-btn_line{
  position: relative;
    max-width: 420px;
    width: 88%;
    background-color: #03C44F;
    padding: 22px 0;
    border: 5px solid transparent;
    box-shadow: inset 0 0 0 1px #fff, 2px 3px 8px rgba(107, 100, 91, 0.4);
    display: flex;
    justify-content: center;
    transition: 0.3s ease;
    margin: 0 auto;
}
.footer__contact-btn_line span{
  display: block;
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  color: #fff;
  text-align: center;
}

/**********************
 250410 
 ***********************/
a.header__btn-item.member{
  background-color: #B49975;
}
.header__btn-item.member:hover {
  background-color: #C2A987;
}
.el__btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 280px;
  height: 54px;
  border: none;
  border-radius: 4px;
  font-size: 1.6rem;
  color: #fff;
  transition: .3s;
  cursor: pointer;
}
.el__btn::before {
  --right: 28px;
  content: "";
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 28px;
  transform: translateY(-50%);
  transition: 0.3s ease;
  cursor: pointer;
}
.top__btn-fixed .el__btn {
    font-size: 1.4rem;
}
.el__btn::after {
  --right: 36px;
  content: "";
  width: 4px;
  height: 4px;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  right: 36px;
  rotate: 45deg;
  transition: 0.3s ease;
  cursor: pointer;
}
.el__btn:hover {
  --extra: -5px;
}
.el__btn:hover::before,
.el__btn:hover::after {
  right: calc(var(--right) + var(--extra));
}
.el__btn.gold {
  background-color: #B49975;
}
.el__btn.gold::after  {
  border-top: 1px solid #b49975;
  border-right: 1px solid #b49975;
}
.el__btn.blue {
  background-color: #36446B;
}
.el__btn.blue::after  {
  border-top: 1px solid #36446B;
  border-right: 1px solid #36446B;
}
.el__btn.gray {
  background-color: #ccc;
}
.el__btn.gray::after  {
  border-top: 1px solid #ccc;
  border-right: 1px solid #ccc;
}
.el__logout,
.el__cancel {
  display: block;
  width: 80px;
  margin: 0 auto 139px;
  font-size: 1.4rem;
  text-align: center;
  text-decoration: underline;
}
.el__cancel {
  margin: 0 auto 20px;
  background-color: transparent;
  border: none;
  color: #ccc;
  font-size: 1.2rem;
  cursor: pointer;
}

/**********************
 250701 
 ***********************/
 @media screen and (max-width: 1428px) {
  .header__nav {
  max-width: 530px;
  flex-wrap: wrap;
}
}

a.header__btn-item.register{
  background-color: #B49975;
  position: relative;
}
a.header__btn-item.register:after{
  content: "";
  position: absolute;
  right: 0;
  top:0;
  height: 100%;
  width: 1px;
  background-color: #d5bea0;
}

a.header__btn-item.register span{
  font-size: 9px;
  display: inline-block;
  padding-top: 4px;
  letter-spacing: 0;
}

.footer__contact-wrapper {
  padding-inline: 4%;
  margin-inline: auto;
  max-width: calc(1280px + 8%);
  box-sizing: border-box;
}
@media screen and (max-width: 570px) {
  .footer__contact-heading--jp {
      font-size: 5.5vw;
  }
}

@media screen and (max-width: 390px) {
  .footer__contact-heading--jp {
      font-size: 5.5vw;
  }
}

.footer__contact-btn-wrap {
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 950px) {
  .footer__contact-btn-wrap {
      grid-template-columns: repeat(1, 1fr);
  }
}
.footer__contact-btn--register {
  background-color: #B49975;
}
.footer__contact-btn--register:hover {
  background-color: #b9a891;
}
.footer__contact-btn--register::after {
  background-image: url("../img/common/header-icon7.svg");
  width: 32px;
  height: 32px;
  right: 0;
}
.footer__contact-btn--members {
  background-color: #B49975;
}
.footer__contact-btn--members:hover {
  background-color: #b9a891;
}
.footer__contact-btn--members::after {
  background-image: url("../img/common/header-icon8.svg");
  width: 32px;
  height: 32px;
  right: 0;
}

/* 250911_信和のしんわバナー追加 */
.top__mv{
  position: relative;
}
.top__mv-shinwanoshinwa-pc{
  position: absolute;
  top: 100px;
  right: 30px;
  width: 190px;
  height: 190px;
  z-index: 10;
}
.top__mv-shinwanoshinwa-sp{
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
}