@charset "UTF-8";
/*
 * 参考
 * https://github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.3333333333vw;
  }
}
@media (min-width: 1200px) {
  html {
    font-size: 16px;
  }
}

body {
  font-family: "Trebuchet MS", "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #231815;
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}

html.is-fixed {
  height: 100%;
  overflow: hidden;
}

.l-access {
  margin-top: 3.75rem;
  margin-bottom: 3.75rem;
}
@media screen and (min-width: 768px) {
  .l-access {
    margin-top: 6.25rem;
    margin-bottom: 6.25rem;
  }
}

.l-booking-form {
  margin-top: 3.75rem;
  margin-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  .l-booking-form {
    margin-bottom: 6.25rem;
  }
}

.l-booking-thanks {
  margin-top: 3.75rem;
  margin-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  .l-booking-thanks {
    margin-top: 6.25rem;
    margin-bottom: 6.25rem;
  }
}

.l-categories {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .l-categories {
    margin-top: 5rem;
  }
}

.l-company {
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .l-company {
    margin-top: 6.25rem;
  }
}

.l-contact-form {
  padding-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .l-contact-form {
    padding-top: 2.5rem;
  }
}

.l-contact-thanks {
  margin-top: 5rem;
  margin-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .l-contact-thanks {
    margin-top: 6.25rem;
    margin-bottom: 6.25rem;
  }
}

.l-contact {
  padding-top: 5rem;
}
@media screen and (min-width: 768px) {
  .l-contact {
    padding-top: 6.25rem;
  }
}

.l-details {
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .l-details {
    margin-top: 6.25rem;
  }
}

.l-flow {
  margin-top: 12.5rem;
  margin-bottom: 3.75rem;
}
@media screen and (min-width: 768px) {
  .l-flow {
    margin-top: 9.375rem;
    margin-bottom: 9.375rem;
  }
}

@media screen and (min-width: 768px) {
  .l-fv {
    margin-top: 9.375rem;
    margin-bottom: 3.75rem;
  }
}

.l-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 2.5rem;
}
@media screen and (min-width: 768px) {
  .l-header {
    height: 5.625rem;
  }
}

.l-human-resources {
  margin-top: 3.75rem;
  margin-bottom: 3.75rem;
}
@media screen and (min-width: 768px) {
  .l-human-resources {
    margin-top: 3.125rem;
    padding-top: 3.125rem;
    margin-bottom: 12.5rem;
  }
}

.l-inner {
  width: 100%;
  max-width: 37.5rem;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 1250px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

.l-message {
  padding-top: 5rem;
  margin-top: 6.25rem;
  padding-bottom: 4.8125rem;
}
@media screen and (min-width: 768px) {
  .l-message {
    margin-top: 10rem;
    padding-top: 10.4375rem;
    padding-bottom: 10rem;
  }
}

.l-news {
  margin-top: 3.75rem;
  margin-bottom: 3.75rem;
}
@media screen and (min-width: 768px) {
  .l-news {
    margin-top: 6.25rem;
    margin-bottom: 6.25rem;
  }
}

.l-notice {
  margin-top: 6.25rem;
}
@media screen and (min-width: 768px) {
  .l-notice {
    margin-top: 13.25rem;
    padding-top: 4.375rem;
    padding-bottom: 5rem;
  }
}

.l-other-business {
  margin-top: 3.75rem;
  margin-bottom: 60px;
}
@media screen and (min-width: 768px) {
  .l-other-business {
    margin-top: 6.25rem;
  }
}

.l-post-news {
  margin-top: 3.75rem;
  margin-bottom: 3.75rem;
}
@media screen and (min-width: 768px) {
  .l-post-news {
    margin-top: 6.25rem;
    margin-bottom: 6.25rem;
  }
}

.l-property {
  margin-top: 3.75rem;
  margin-bottom: 3.75rem;
}
@media screen and (min-width: 768px) {
  .l-property {
    margin-top: 6.25rem;
    margin-bottom: 6.25rem;
  }
}

.l-rental-detail {
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .l-rental-detail {
    margin-top: 6.25rem;
  }
}

.l-rental {
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  .l-rental {
    margin-top: 23.75rem;
  }
}

.l-reservation {
  margin-top: 3.75rem;
  margin-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  .l-reservation {
    margin-top: 6.25rem;
    margin-bottom: 6.25rem;
  }
}

.l-spot {
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .l-spot {
    margin-top: 6.25rem;
  }
}

.l-support {
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .l-support {
    margin-top: 6.25rem;
  }
}

.l-trade-detail {
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .l-trade-detail {
    margin-top: 6.25rem;
  }
}

.l-trade {
  padding-top: 5rem;
  margin-top: 14.1875rem;
  padding-bottom: 2.1875rem;
}
@media screen and (min-width: 768px) {
  .l-trade {
    padding-top: 9.0625rem;
  }
}

.c-btn {
  background-color: #fff;
  outline: 1px solid #231815;
  outline-offset: -5px;
  color: #231815;
  cursor: pointer;
  font-size: 1rem;
  padding: 1.375rem 4.375rem;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s, outline 0.3s, color 0.3s;
}

.c-btn:hover {
  background-color: #89857d;
  outline: 1px solid #fff;
  color: #fff;
}

.c-btn.c-btn--consult {
  padding: 1.375rem 2.375rem;
}

.c-fv-title {
  font-size: 1.625rem;
  line-height: 1;
  text-transform: capitalize;
  text-align: center;
  letter-spacing: 0.05em;
  font-weight: 500;
  color: #fff;
  font-family: "obviously-extended", sans-serif;
}
@media screen and (min-width: 768px) {
  .c-fv-title {
    font-size: 2.5rem;
  }
}

.c-section-title {
  font-size: 1.625rem;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .c-section-title {
    font-size: 2.3125rem;
  }
}

.c-section-title--other {
  font-size: 1.625rem;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .c-section-title--other {
    font-size: 3.125rem;
  }
}

.c-section-title--left {
  font-size: 1.625rem;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .c-section-title--left {
    -moz-text-align-last: left;
         text-align-last: left;
    font-size: 3.125rem;
  }
}

.c-title {
  padding-bottom: 1.25rem;
  position: relative;
  font-size: 1.75rem;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .c-title {
    padding-bottom: 1.5625rem;
    font-size: 3rem;
  }
}

.c-title span {
  margin-top: 0.625rem;
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .c-title span {
    padding-bottom: 0.75rem;
    font-size: 1rem;
  }
}

.p-404 {
  margin: 12.5rem 0;
}

.p-access__inner {
  margin: auto;
  padding: 0 1.25rem;
  max-width: 31.25rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-access__inner {
    padding: 0 1.5625rem;
    max-width: 50rem;
  }
}

.p-access__map {
  width: 100%;
}

.p-access__map iframe {
  width: 100%;
}

.p-access__button {
  margin-top: 3.75rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-access__button {
    margin-top: 6.25rem;
  }
}

.p-access__no-map {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-access__no-map {
    font-size: 1rem;
  }
}

.p-booking-form__inner {
  margin: auto;
  padding: 0 0.625rem;
  max-width: 37.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-booking-form__inner {
    padding: 0 1.5625rem;
    max-width: 65.625rem;
  }
}

.p-booking-form__title {
  padding-bottom: 1.25rem;
  position: relative;
  font-size: 1.5rem;
  line-height: 1;
  text-align: center;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-booking-form__title {
    padding-bottom: 1.5625rem;
    font-size: 2rem;
  }
}

.p-booking-thanks__inner {
  margin: auto;
  padding: 0 0.625rem;
  max-width: 37.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-booking-thanks__inner {
    padding: 0 1.5625rem;
    max-width: 75rem;
  }
}

.p-booking-thanks__complete-text-wrap {
  margin-top: 2.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-booking-thanks__complete-text-wrap {
    margin-top: 5rem;
  }
}

.p-booking-thanks__complete-text {
  display: inline-block;
  font-size: 1rem;
  line-height: 1.5;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-booking-thanks__complete-text {
    text-align: center;
  }
}

.p-booking-thanks__top-btn-wrap {
  margin-top: 2.5rem;
  position: relative;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-booking-thanks__top-btn-wrap {
    margin-top: 5rem;
  }
}

.p-booking-thanks__top-btn {
  padding: 1.25rem 0;
  max-width: 18.75rem;
  width: 100%;
  position: relative;
  display: inline-block;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0.2em;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .p-booking-thanks__top-btn {
    padding: 1.875rem 0;
  }
}

.p-breadcrumbs {
  padding: 0.625rem 0 0;
}

.p-breadcrumbs__inner span {
  font-size: 0.875rem;
  line-height: 1.4285714286;
  font-weight: 400;
  z-index: 2;
}

.p-categories {
  display: flex;
  align-items: center;
  height: auto;
  background: linear-gradient(108deg, transparent 49.8%, #231815 50%, #231815 50%, transparent 50.2%);
}
@media screen and (min-width: 768px) {
  .p-categories {
    background: linear-gradient(120deg, transparent 49.9%, #231815 50%, #231815 50%, transparent 50.1%);
    height: 12.5rem;
  }
}

.p-categories__inner {
  max-width: 31.25rem;
  width: 100%;
  margin: auto;
  padding-right: 20px;
  padding-left: 20px;
}
@media screen and (min-width: 768px) {
  .p-categories__inner {
    max-width: 62.5rem;
    padding-right: 25px;
    padding-left: 25px;
  }
}

.p-categories__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9375rem 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-categories__list {
    display: flex;
    -moz-column-gap: 0.625rem;
         column-gap: 0.625rem;
    justify-content: space-around;
    align-items: center;
  }
}

.p-categories__item {
  text-align: center;
  max-width: 18.75rem;
  width: 100%;
  color: #231815;
}
@media screen and (min-width: 768px) {
  .p-categories__item {
    position: relative;
  }
}

.p-categories__item a {
  display: inline-block;
  background-color: #fff;
  outline: 1px solid #231815;
  outline-offset: -5px;
  color: #231815;
  width: 100%;
  font-size: 1.25rem;
  cursor: pointer;
  color: #231815;
  font-weight: bold;
  padding: 0.625rem;
  letter-spacing: 0.1em;
  transition: background-color 0.3s, color 0.3s;
}
@media screen and (min-width: 768px) {
  .p-categories__item a {
    font-size: 1.75rem;
    padding: 1.25rem;
  }
}

.p-categories__item .current {
  background-color: #89857d;
  outline: 1px solid #fff;
  color: #fff;
}

.p-categories__item:hover a {
  background-color: #89857d;
  outline: 1px solid #fff;
  color: #fff;
}

.p-categories__item:hover {
  background-color: #89857d;
  outline: 1px solid #fff;
  color: #fff;
}

@media screen and (min-width: 768px) {
  .p-company-profile {
    display: flex;
  }
}

.p-company-profile__list-wrap {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-company-profile__list-wrap {
    max-width: 34.375rem;
    width: 100%;
    padding-top: 3.75rem;
  }
}

@media screen and (min-width: 768px) {
  .p-company-profile__list-wrap::before {
    position: absolute;
    content: "";
    width: 7.0625rem;
    height: 31.9375rem;
    background-color: #c3bbab;
    top: 0;
    left: 5%;
    z-index: -1;
    border-radius: 5px;
  }
}

.p-company-profile__list {
  display: flex;
  align-items: center;
  background-color: #c3bbab;
}
@media screen and (min-width: 768px) {
  .p-company-profile__list {
    background-color: transparent;
  }
}

@media screen and (min-width: 768px) {
  .p-company-profile__list + .p-company-profile__list {
    margin-top: 0.625rem;
  }
}

.p-company-profile__term {
  max-width: 6.25rem;
  width: 100%;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1;
  color: #231815;
  text-align: right;
  padding: 0.765625rem 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-company-profile__term {
    max-width: 8.4375rem;
    font-size: 1rem;
  }
}

.p-company-profile__description {
  padding: 0.625rem 0 0.625rem 1.25rem;
  flex: 1;
  font-size: 0.9375rem;
  line-height: 1.3;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .p-company-profile__description {
    font-size: 1rem;
    padding: 0 0 0.25rem 1.5625rem;
    background-color: transparent;
  }
}

.p-company-profile__map-wrap {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-company-profile__map-wrap {
    margin-top: initial;
    padding-top: initial;
    padding-left: 2.5rem;
    flex: 1;
  }
}

.p-company-profile__map {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-company-profile__map {
    margin-top: 0;
  }
}

.p-company-profile__map iframe {
  width: 100%;
  max-width: 39.375rem;
  height: 25rem;
}

.p-company__inner {
  width: 100%;
  max-width: 31.25rem;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .p-company__inner {
    max-width: 1250px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

.p-company__heading {
  text-align: center;
}

.p-company__profile {
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-company__profile {
    margin-top: 8.75rem;
  }
}

@media screen and (min-width: 768px) {
  .p-consult {
    width: 50%;
  }
}

.p-consult__button {
  text-align: center;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-consult__button {
    margin-top: 1.75rem;
  }
}

.p-contact-form {
  overflow-x: hidden;
}

.p-contact-form__inner,
.p-contact-form__form-inner {
  margin: auto;
  padding: 0 0.625rem;
  max-width: 37.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-contact-form__inner,
  .p-contact-form__form-inner {
    padding: 0 1.5625rem;
    max-width: 65.625rem;
  }
}

.p-contact-form__info {
  padding-top: 6.25rem;
}

.p-contact-form__title {
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-contact-form__title {
    font-size: 2rem;
  }
}

.p-contact-form__tel-btn-wrap {
  margin-top: 1.875rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-contact-form__tel-btn-wrap {
    margin-top: 3.75rem;
  }
}

.p-contact-form__tel-btn {
  padding: 0.625rem 0;
  max-width: 31.25rem;
  width: 100%;
  display: inline-block;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
  color: #231815;
  letter-spacing: 0.1em;
  text-align: center;
  border-radius: 2.5rem;
  background-color: #c3bbab;
}
@media screen and (min-width: 768px) {
  .p-contact-form__tel-btn {
    padding: 0.9375rem 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 2.25rem;
    text-align: initial;
  }
}

.p-contact-form__tel-btn::before {
  content: "";
  margin-right: 0.5rem;
  width: 1.25rem;
  height: 1.5625rem;
  display: inline-block;
  background-image: url(./../images/common/tel.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .p-contact-form__tel-btn::before {
    margin-right: 0.9375rem;
    width: 1.875rem;
    height: 2.5rem;
  }
}

.p-contact-form__business-hours {
  margin-top: 0.625rem;
  font-size: 1rem;
  line-height: 1;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-contact-form__business-hours {
    margin-top: 1.875rem;
  }
}

.p-contact-form__form-body {
  margin: 2.5rem calc(50% - 50vw) 0;
  padding: 2.5rem 0 5rem;
  width: 100vw;
  background-color: #efefef;
}
@media screen and (min-width: 768px) {
  .p-contact-form__form-body {
    margin-top: 6.25rem;
    padding: 6.25rem 0;
  }
}

.p-contact-form__text {
  margin-top: 1.875rem;
  font-size: 0.875rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-contact-form__text {
    margin-top: 2.5rem;
    text-align: center;
  }
}

.p-contact-form__form {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-contact-form__form {
    margin-top: 4.6875rem;
  }
}

@media screen and (min-width: 768px) {
  .p-contact-form__form-wrap {
    display: flex;
    align-items: center;
  }
}

@media screen and (min-width: 768px) {
  .p-contact-form__form-wrap.p-contact-form__form-wrap--checkbox,
  .p-contact-form__form-wrap.p-contact-form__form-wrap--textarea {
    align-items: flex-start;
  }
}

.p-contact-form__form-wrap + .p-contact-form__form-wrap {
  margin-top: 1.5625rem;
}

.p-contact-form__form-label {
  font-size: 1.125rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-contact-form__form-label {
    max-width: 21.875rem;
    width: 100%;
    font-size: 1.25rem;
  }
}

@media screen and (min-width: 768px) {
  .p-contact-form__form-wrap.p-contact-form__form-wrap--checkbox .p-contact-form__form-label,
  .p-contact-form__form-wrap.p-contact-form__form-wrap--textarea .p-contact-form__form-label {
    padding-top: 0.3125rem;
  }
}

.p-contact-form__form-label span {
  margin-left: 0.9375rem;
  padding: 0.25rem 0.625rem;
  display: inline-block;
  font-size: 0.75rem;
  line-height: 1;
  color: #fff;
  border-radius: 0.125rem;
  background-color: #ed4924;
}
@media screen and (min-width: 768px) {
  .p-contact-form__form-label span {
    font-size: 0.875rem;
  }
}

.p-contact-form__form-input {
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-contact-form__form-input {
    margin-top: initial;
    flex-grow: 1;
  }
}

.p-contact-form__form-input input {
  padding: 0.625rem 0.9375rem;
  width: 100%;
  font-size: 1.125rem;
  line-height: 1;
  background-color: #fbfbfb;
  box-shadow: 0 0 0.625rem 0 rgba(0, 0, 0, 0.08);
  border-radius: 0;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: none;
}
@media screen and (min-width: 768px) {
  .p-contact-form__form-input input {
    padding: 0.9375rem 1.25rem;
    font-size: 1.25rem;
  }
}

.p-contact-form__form-input input:focus {
  outline: none;
}

.p-contact-form__form-input input::-moz-placeholder {
  color: rgba(51, 51, 51, 0.5);
}

.p-contact-form__form-input input::placeholder {
  color: rgba(51, 51, 51, 0.5);
}

.p-contact-form__form-textarea {
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-contact-form__form-textarea {
    margin-top: initial;
    flex-grow: 1;
  }
}

.p-contact-form__form-textarea textarea {
  padding: 0.625rem 0.9375rem;
  width: 100%;
  height: 18.75rem;
  font-size: 1.125rem;
  background-color: #fbfbfb;
  box-shadow: 0 0 0.625rem 0 rgba(0, 0, 0, 0.08);
  border-radius: 0;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: none;
  resize: none;
}
@media screen and (min-width: 768px) {
  .p-contact-form__form-textarea textarea {
    margin-top: initial;
    padding: 0.9375rem 1.25rem;
    flex-grow: 1;
    font-size: 1.25rem;
  }
}

.p-contact-form__form-textarea textarea:focus {
  outline: none;
}

.p-contact-form__form-textarea textarea::-moz-placeholder {
  color: rgba(51, 51, 51, 0.5);
}

.p-contact-form__form-textarea textarea::placeholder {
  color: rgba(51, 51, 51, 0.5);
}

.p-contact-form__form-privacy {
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-contact-form__form-privacy {
    margin-top: 3.75rem;
    text-align: center;
  }
}

.p-contact-form__form-privacy input {
  display: none;
}

.p-contact-form__form-privacy input + span {
  cursor: pointer;
  display: inline-block;
  padding: 0 0 0 2.5rem;
  position: relative;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

.p-contact-form__form-privacy input + span::before {
  content: "";
  position: absolute;
  top: 0.3125rem;
  left: 0;
  background: #fff;
  border: 1px solid #808080;
  display: block;
  width: 1.25rem;
  height: 1.25rem;
}

.p-contact-form__form-privacy input + span::after {
  content: "";
  margin-top: -0.125rem;
  position: absolute;
  top: 0.75rem;
  left: 0.125rem;
  transform: rotate(-45deg);
  display: block;
  width: 0.9375rem;
  height: 0.5rem;
  border-bottom: 0.1875rem solid #333;
  border-left: 0.1875rem solid #333;
  transition: 0.3s;
  opacity: 0;
}

.p-contact-form__form-privacy input + span a {
  text-decoration: underline;
}

.p-contact-form__form-privacy input:checked + span::after {
  opacity: 1;
}

.p-contact-form__form-announcement {
  margin-top: 1.5rem;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px) {
  .p-contact-form__form-announcement {
    margin-top: 3.75rem;
    text-align: center;
  }
}

.p-contact-form__form-announcement a {
  text-decoration: underline;
}

.p-contact-form__form-submit {
  margin: 2.5rem auto 0;
  position: relative;
  max-width: 18.75rem;
  width: 100%;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .p-contact-form__form-submit {
    margin-top: 6.25rem;
  }
}

@media screen and (min-width: 768px) {
  .p-contact-form__form-submit:hover {
    opacity: 0.8;
  }
}

.p-contact-form__form-submit input {
  padding: 1.25rem 0;
  width: 100%;
  position: relative;
  z-index: 2;
  display: inline-block;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0.2em;
  color: #231815;
  background-color: transparent;
  background-image: none;
  border: none;
  text-decoration: none;
  cursor: pointer;
}

.p-contact-form__form-submit input:hover,
.p-contact-form__form-submit input:focus {
  outline: none;
}

.p-contact-form__form-submit::-moz-foucus-inner {
  padding: 0;
  border: none;
}

.p-contact-form__form-submit-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 0.625rem;
  background-color: #c2baaa;
}

.p-contact-form__form-submit-bg::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.25rem;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  display: inline-block;
  border-style: solid;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-color: transparent transparent transparent #231815;
}

.p-contact-form__body-container {
  padding-top: 3.125rem;
  padding-bottom: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-contact-form__body-container {
    padding-top: 6.25rem;
    padding-bottom: 5.25rem;
  }
}

.p-contact-thanks__contents {
  text-align: center;
}

.p-contact-thanks__text {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.125;
}

.p-contact-thanks__message {
  margin-top: 2.5rem;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.4375;
}

.p-contact-thanks__top-btn-wrap {
  margin-top: 2.5rem;
  position: relative;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-contact-thanks__top-btn-wrap {
    margin-top: 5rem;
  }
}

.p-contact {
  background-color: #c3bbab;
  width: 100%;
  height: 100%;
  position: relative;
}

.p-contact__inner {
  margin: auto;
  padding: 0 1.25rem;
  max-width: 37.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-contact__inner {
    padding: 0 1.5625rem;
  }
}

@media screen and (min-width: 768px) {
  .p-contact__wrap {
    display: flex;
    align-items: flex-start;
    gap: 18%;
  }
}

.p-contact__nav {
  display: flex;
  justify-content: center;
  align-items: center;
}

.p-contact__nav-item a {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.p-contact__nav-item-body {
  background-color: #fff;
  width: 3.5625rem;
  height: 3.5625rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.p-contact__nav-item-body a {
  width: 100%;
  height: 100%;
  background-color: #fff;
}

.p-contact__nav-item-body img {
  width: 2.5rem;
  height: 100%;
  background-color: #fff;
}

.p-contact__nav-item:last-of-type {
  margin-left: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-contact__nav-item:last-of-type {
    margin-left: 1.25rem;
  }
}

.p-contact__nav-item p {
  color: #fff;
  margin-top: 0.3125rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  font-family: "Noto Sans JP", sans-serif;
}

@media screen and (min-width: 768px) {
  .p-details-info__list-wrap {
    width: 100%;
  }
}

.p-details-info__list {
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid #727171;
  border-left: 1px solid #727171;
  border-right: 1px solid #727171;
}

.p-details-info__list:last-of-type {
  border-bottom: 1px solid #727171;
}

.p-details-info__term {
  width: 30%;
  font-size: 0.875rem;
  font-weight: 700;
  color: #231815;
  text-align: center;
  background-color: #c3bbab;
  z-index: 1;
  padding: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-details-info__term {
    width: 20%;
    font-size: 1rem;
  }
}

.p-details-info__description {
  padding: 0.625rem;
  flex: 1;
  font-size: 0.875rem;
  line-height: 1.3;
  width: 80%;
}
@media screen and (min-width: 768px) {
  .p-details-info__description {
    font-size: 1rem;
  }
}

.p-details__inner {
  margin: auto;
  padding: 0 1.25rem;
  max-width: 31.25rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-details__inner {
    padding: 0 1.5625rem;
    max-width: 50rem;
  }
}

.p-details__heading {
  text-align: center;
}

.p-details__profile {
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-details__profile {
    margin-top: 8.75rem;
  }
}

.p-details__info {
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-details__info {
    margin-top: 1.5rem;
  }
}

.p-drawer__inner {
  padding: 6.25rem 0.9375rem 5.625rem;
}
@media screen and (min-width: 768px) {
  .p-drawer__inner {
    padding: 0;
  }
}

.p-drawer__wrap {
  width: 100%;
  max-width: 31.25rem;
  padding-left: 0.9375rem;
  padding-right: 0.9375rem;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .p-drawer__wrap {
    padding-left: 0;
    padding-right: 0;
    max-width: 100%;
  }
}

.p-drawer__nav {
  display: flex;
  width: 100%;
  justify-content: right;
}

.p-drawer__nav-head-list {
  display: flex;
  height: inherit;
  align-items: center;
  margin-right: 5.625rem;
}

.p-drawer__nav-head-item {
  height: inherit;
}

.p-drawer__nav-head-item.p-drawer__nav-head-item--contact {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-drawer__nav-head-item.p-drawer__nav-head-item--contact {
    margin-left: 0.9375rem;
    display: flex;
    align-items: center;
  }
}

.p-drawer__nav-head-item a {
  position: relative;
  padding: 0 0.6875rem;
  height: inherit;
  display: flex;
  align-items: center;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
}

@media screen and (min-width: 768px) {
  .p-drawer__nav-list {
    padding: 7rem 1.25rem 1.875rem;
    overflow-y: scroll;
    width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .p-drawer__nav-top-list,
  .p-drawer__nav-middle-list,
  .p-drawer__nav-bottom-list {
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
  }
}

@media screen and (min-width: 768px) {
  .p-drawer__nav-middle-list,
  .p-drawer__nav-bottom-list {
    margin-top: 1.25rem;
  }
}

.p-drawer__nav-top-item,
.p-drawer__nav-middle-item,
.p-drawer__nav-bottom-item {
  border-bottom: 0.0625rem solid #fff;
}
@media screen and (min-width: 768px) {
  .p-drawer__nav-top-item,
  .p-drawer__nav-middle-item,
  .p-drawer__nav-bottom-item {
    width: 100%;
    max-width: 15.625rem;
    border-bottom: none;
  }
}

@media screen and (min-width: 768px) {
  .p-drawer__nav-top-item + .p-drawer__nav-top-item,
  .p-drawer__nav-middle-item + .p-drawer__nav-middle-item,
  .p-drawer__nav-bottom-item + .p-drawer__nav-bottom-item {
    margin-right: 1.875rem;
  }
}

.p-drawer__nav-title {
  font-size: 1rem;
  align-items: center;
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  margin-bottom: 0;
  position: relative;
  letter-spacing: 0.05em;
  padding-bottom: 0.625rem;
  padding-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-drawer__nav-title {
    font-size: 1.125rem;
    padding-bottom: 0;
    line-height: 1;
  }
}

.p-drawer__nav-title::after {
  border-right: 0.125rem solid #fff;
  border-top: 0.125rem solid #fff;
  content: "";
  display: block;
  height: 0.5rem;
  position: absolute;
  right: 0.125rem;
  top: 35%;
  transform: rotate(135deg);
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  width: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-drawer__nav-title::after {
    display: none;
  }
}

.p-drawer__nav-title.open::after {
  top: 45%;
  transform: rotate(-45deg);
}

.p-drawer__contact-list {
  margin-top: 1.5rem;
}

.p-drawer__contact-item {
  color: #c2baaa;
  font-size: 1.5rem;
  margin-top: 1.5rem;
}

.p-drawer__contact-item.p-drawer__contact-item--contact a {
  padding: 0.9375rem 0;
  display: inline-block;
  width: 100%;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #231815;
  text-align: center;
  border: 0.0625rem solid #c2baaa;
  margin-top: 1.375rem;
  background-color: #c3bbab;
}

.p-drawer__contact-item.p-drawer__contact-item--contact a:hover {
  transition: color 0.3s, background-color 0.3s;
  background-color: #fff;
  outline: 1px solid #c3bbab;
  border: 1px solid #c3bbab;
}

.p-drawer__contact-item.p-drawer__contact-item--contact a:hover {
  transition: color 0.3s, background-color 0.3s;
  background-color: #fff;
  outline: 1px solid #c3bbab;
  border: 1px solid #c3bbab;
}

.p-drawer__contact-item.p-drawer__contact-item--reservation a {
  padding: 0.9375rem 0;
  display: inline-block;
  width: 100%;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #231815;
  text-align: center;
  border: 0.0625rem solid #c2baaa;
  margin-top: 1.375rem;
  background-color: #c3bbab;
}

.p-drawer__contact-item.p-drawer__contact-item--reservation a:hover {
  transition: color 0.3s, background-color 0.3s;
  background-color: #fff;
  outline: 1px solid #c3bbab;
  border: 1px solid #c3bbab;
}

.p-drawer__contact-item.p-drawer__contact-item--reservation a:hover {
  transition: color 0.3s, background-color 0.3s;
  background-color: #fff;
  outline: 1px solid #c3bbab;
  border: 1px solid #c3bbab;
}

.p-drawer__contact-body {
  display: flex;
}

.p-drawer__image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.p-drawer__image img {
  width: 1.875rem;
  height: 1.875rem;
}

.p-drawer__image span {
  font-size: 1.5rem;
  margin-left: 0.625rem;
}

.p-flow-list__item {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
}

.p-flow-list__item.p-arrow-01 {
  position: relative;
}

.p-arrow-01::before {
  content: "";
  position: absolute;
  top: 10%;
  width: 0.375rem;
  height: 24.75rem;
  background-image: url(../images/common/arrow_down.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  left: 31.5%;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-arrow-01::before {
    left: 22.5%;
    height: 22rem;
  }
}

.p-flow-list__item:not(:first-child) {
  margin-top: 3.75rem;
}

.p-flow-list__body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 60%;
}
@media screen and (min-width: 768px) {
  .p-flow-list__body {
    width: 35%;
  }
}

.p-flow-list__term {
  width: 15%;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #c3bbab;
}

.p-flow-list__title {
  padding: 0.3125rem;
  min-width: 5rem;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.1em;
  margin-left: 0.9375rem;
  background-color: #c3bbab;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-flow-list__title {
    min-width: 7.5rem;
    padding: 0.3125rem 1.5625rem;
  }
}

.p-flow-list__text {
  width: 70%;
  font-size: 0.75rem;
  line-height: 1.6;
  letter-spacing: 0.1em;
  margin-left: 0.9375rem;
}

.p-step-01::before {
  background-image: url(../images/common/step-01.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  position: absolute;
  width: 1.4375rem;
  height: 2.0625rem;
  content: "";
  top: -0.8125rem;
  left: 11%;
}
@media screen and (min-width: 768px) {
  .p-step-01::before {
    left: 7%;
  }
}

.p-step-02::before {
  background-image: url(../images/common/step-02.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  position: absolute;
  width: 1.4375rem;
  height: 2.0625rem;
  content: "";
  top: -0.8125rem;
  left: 11%;
}
@media screen and (min-width: 768px) {
  .p-step-02::before {
    left: 7%;
  }
}

.p-step-03::before {
  background-image: url(../images/common/step-03.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  position: absolute;
  width: 1.4375rem;
  height: 2.0625rem;
  content: "";
  top: -0.8125rem;
  left: 11%;
}
@media screen and (min-width: 768px) {
  .p-step-03::before {
    left: 7%;
  }
}

.p-step-04::before {
  background-image: url(../images/common/step-04.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: absolute;
  width: 1.4375rem;
  height: 2.0625rem;
  content: "";
  top: -0.8125rem;
  left: 11%;
}
@media screen and (min-width: 768px) {
  .p-step-04::before {
    left: 7%;
  }
}

.p-step-05::before {
  background-image: url(../images/common/step-05.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  position: absolute;
  width: 1.4375rem;
  height: 2.0625rem;
  content: "";
  top: -0.8125rem;
  left: 11%;
}
@media screen and (min-width: 768px) {
  .p-step-05::before {
    left: 7%;
  }
}

.p-flow__inner {
  margin: auto;
  padding: 0 1.25rem;
  max-width: 37.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-flow__inner {
    padding: 0 1.5625rem;
    max-width: 66.875rem;
  }
}

.p-flow__wrap {
  width: 100%;
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-flow__wrap {
    display: flex;
    justify-content: center;
    gap: 6%;
  }
}

.p-flow__list {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-flow__list {
    width: 70%;
  }
}

.p-flow__image {
  width: 100%;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-flow__image {
    width: 40%;
    margin-top: 0;
  }
}

.p-flow__image img {
  aspect-ratio: 1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-footer {
  padding: 2.8125rem 0;
  background-color: #c3bbab;
}
@media screen and (min-width: 768px) {
  .p-footer {
    padding: 1.875rem 0 1.25rem;
  }
}

.p-footer__inner {
  margin: auto;
  padding: 0 0.9375rem;
  max-width: 39.375rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-footer__inner {
    padding: 0 1.5625rem;
    max-width: 67.5rem;
  }
}

.p-footer__nav-items {
  border-top: 1px solid #fff;
}
@media screen and (min-width: 768px) {
  .p-footer__nav-items {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.p-footer__nav-item a {
  padding: 0.75rem 0;
  position: relative;
  display: block;
  font-size: 0.75rem;
  line-height: 1;
  text-align: center;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-footer__nav-item a {
    padding: 0.9375rem;
  }
}

.p-footer__copyright {
  margin-top: 1.25rem;
  text-align: center;
  color: #fff;
  font-size: 0.75rem;
}

.p-fv {
  width: 100%;
  height: 100%;
  min-height: 31.25rem;
  position: relative;
}

@media screen and (min-width: 768px) {
  .p-fv::before {
    content: "";
    position: absolute;
    top: -3.625rem;
    right: 0;
    width: 50%;
    height: 35.625rem;
    background: linear-gradient(90deg, #fff, #c3bbab);
    z-index: -1;
  }
}

@media screen and (min-width: 768px) {
  .p-fv::after {
    content: "";
    position: absolute;
    bottom: -3.75rem;
    left: 0;
    width: 50%;
    height: 35.625rem;
    background: linear-gradient(180deg, #fff, #c3bbab);
    z-index: -1;
  }
}

.p-fv__inner {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-fv__inner {
    max-width: 87.5rem;
    padding-left: 1.5625rem;
    padding-right: 1.5625rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.p-fv__image picture {
  border-radius: 2px;
}

.p-fv__image img {
  border-radius: 2px;
}

.p-fv__contact {
  position: absolute;
  top: 7%;
  right: 2%;
}

.p-fv__contact-mail {
  background-color: #fff;
  width: 3.5625rem;
  height: 3.5625rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
}

.p-fv__contact-mail img {
  width: 2.5rem;
  height: 100%;
}

.p-gallery {
  position: relative;
}

.p-gallery .swiper-slide img {
  width: 100%;
  aspect-ratio: 552/394;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-gallery .swiper-slide picture {
  width: 100%;
  aspect-ratio: 552/394;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-gallery .swiper-pagination {
  width: 100%;
  bottom: -2.0625rem;
}
@media screen and (min-width: 768px) {
  .p-gallery .swiper-pagination {
    bottom: -10%;
  }
}

.p-gallery .swiper-pagination .swiper-pagination-bullet {
  width: 0.6875rem;
  height: 0.6875rem;
  border-radius: initial;
  transition: 0.3s;
  left: 12%;
  background-color: #c3bbab;
}

.p-gallery .swiper-pagination .swiper-pagination-bullet-active {
  background: #89857d;
}

.p-gallery__button-wrap {
  margin-top: 3.125rem;
  display: flex;
  justify-content: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-gallery__button-wrap {
    justify-content: center;
  }
}

.p-gallery__button-wrap .swiper-button-prev {
  width: 3.75rem;
  height: 0.25rem;
  background-image: url(../images/common/arrow_left_sp.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.p-gallery__button-wrap .swiper-button-next {
  width: 3.75rem;
  height: 0.25rem;
  background-image: url(../images/common/arrow_right_sp.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.p-gallery__button-wrap .swiper-button-next {
  margin-left: 6.25rem;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 0.4375rem;
}

.p-gallery-prev.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 1.5625rem);
  right: auto;
}

.p-gallery-next.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 1.5625rem);
  left: auto;
}

.p-spot-swiper .swiper-wrapper {
  transition-timing-function: linear;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 47%;
  transform: translateX(-47%);
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
  .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
    left: 52%;
    transform: translateX(-52%);
  }
}

.p-gallery__single .swiper-slide img {
  width: 100%;
  aspect-ratio: 552/394;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-gallery__single .swiper-slide picture {
  width: 100%;
  aspect-ratio: 552/394;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-gallery__single img {
  width: 100%;
  aspect-ratio: 552/394;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-header {
  height: 2.5rem;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .p-header {
    height: 5.625rem;
  }
}

.p-header__inner {
  padding-left: 0.9375rem;
  height: inherit;
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .p-header__inner {
    padding-left: 4.375rem;
  }
}

.p-header__logo {
  max-width: 10.625rem;
  width: 100%;
  height: inherit;
  z-index: 9999;
}
@media screen and (min-width: 768px) {
  .p-header__logo {
    max-width: 30rem;
  }
}

.p-header__logo a {
  height: inherit;
  display: flex;
  align-items: center;
}

.p-header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-header__nav {
  display: none;
  height: inherit;
}
@media screen and (min-width: 768px) {
  .p-header__nav {
    display: block;
  }
}

.p-header__nav-list {
  display: flex;
  height: inherit;
}

.p-header__nav-item {
  height: inherit;
}

.p-header__nav-item a {
  padding: 0 0.9375rem;
  height: inherit;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 0.6875rem;
  font-weight: 500;
  line-height: 1;
  color: #333;
}

.p-header__nav-item span {
  margin-top: 0.625rem;
  display: block;
  font-size: 0.75rem;
}

@media screen and (min-width: 768px) {
  .p-header__nav-item-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

.p-header__nav-item-body img {
  width: 2.8125rem;
  height: 2.8125rem;
}

.p-header__hamburger {
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  position: relative;
  z-index: 999;
  width: 2.5rem;
  height: inherit;
  background-color: #fff;
  cursor: pointer;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .p-header__hamburger {
    display: none;
  }
}

.p-header__hamburger.is-open {
  background-color: #fff;
}

.p-header__hamburger span {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 1.5625rem;
  height: 1px;
  background-color: #231815;
  transition: 0.5s;
}

.p-header__hamburger span:nth-of-type(1) {
  top: -0.25rem;
}

.p-header__hamburger span:nth-of-type(2) {
  top: 0;
}

.p-header__hamburger span:nth-of-type(3) {
  top: 0.25rem;
}

.p-header__hamburger.is-open span:nth-of-type(1) {
  top: 0;
  transform: translateX(-50%) rotate(45deg);
}

.p-header__hamburger.is-open span:nth-of-type(2) {
  opacity: 0;
}

.p-header__hamburger.is-open span:nth-of-type(3) {
  top: -0.125rem;
  transform: translateX(-50%) rotate(-45deg);
}

.p-header__drawer {
  display: none;
  position: absolute;
  z-index: 900;
  top: 2.5rem;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  overflow-y: scroll;
  scrollbar-width: none;
}

.p-header__drawer::-webkit-scrollbar {
  display: none;
}

.p-drawer__inner {
  padding: 1rem 0.9375rem 5.625rem;
}

.p-header__drawer-item {
  border-bottom: 1px solid #c2baaa;
}

.p-header__drawer-item a {
  padding: 0.9375rem 0;
  display: block;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #231815;
}

.p-header__nav-item--icon {
  border-left: 1px solid #231815;
}

.p-header__nav-item.p-header__nav-item--icon a {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.p-header__nav-item-body span {
  color: #727171;
}

.p-human-resources {
  position: relative;
}

.p-human-resources::before {
  position: absolute;
  content: "";
  top: 39%;
  right: 0;
  width: 100%;
  height: 64%;
  z-index: -1;
  background: #c3bbab;
}
@media screen and (min-width: 768px) {
  .p-human-resources::before {
    top: 25%;
    height: 88%;
    background: linear-gradient(90deg, transparent 0%, transparent 62%, #c3bbab 62%, #c3bbab 100%);
  }
}

.p-human-resources__content {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-human-resources__content {
    text-align: right;
  }
}

.p-human-resources__content-sub-title {
  font-size: 1.625rem;
  line-height: 1;
  text-align: right;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-human-resources__content-sub-title {
    font-size: 2.3125rem;
  }
}

.p-human-resources__content-heading {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-human-resources__content-heading {
    margin-top: 5.25rem;
    text-align: right;
  }
}

.p-human-resources__content-title {
  padding-bottom: 1.25rem;
  position: relative;
  font-size: 1.75rem;
  line-height: 1;
  font-weight: 700;
  text-transform: capitalize;
}
@media screen and (min-width: 768px) {
  .p-human-resources__content-title {
    padding-bottom: 1.5625rem;
    font-size: 3rem;
  }
}

.p-human-resources__content-title span {
  margin-top: 0.625rem;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-human-resources__content-title span {
    padding-bottom: 0.75rem;
    font-size: 1rem;
  }
}

.p-human-resources__wrap {
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-human-resources__wrap {
    flex-direction: row;
    align-items: flex-start;
    gap: 2%;
    margin-top: 12.5rem;
    position: relative;
  }
}

.p-human-resources_image-content {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-human-resources_image-content {
    display: flex;
    justify-content: left;
    max-width: 35rem;
  }
}

.p-human-resources__image-body {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-human-resources__image-body {
    width: 60%;
  }
}

.p-human-resources__image-title {
  font-size: 1rem;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .p-human-resources__image-title {
    font-size: 1.25rem;
  }
}

.p-human-resources__image-title span {
  font-size: 1.25rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-human-resources__image-title span {
    font-size: 1.5rem;
  }
}

.p-human-resources__image {
  width: 100%;
}

.p-human-resources__content-image picture,
.p-human-resources__content-image img {
  width: 100%;
  aspect-ratio: 284/284;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-human-resources__content-image picture,
  .p-human-resources__content-image img {
    aspect-ratio: 626/425;
  }
}

.p-human-resources__text-body {
  width: 100%;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-human-resources__text-body {
    position: absolute;
    content: "";
    top: 99%;
    left: 29%;
    width: 44%;
    height: 40%;
    z-index: 2;
    margin-top: 0;
  }
}

.p-human-resources__text {
  margin-top: 0.625rem;
  font-size: 0.75rem;
}

.p-human-resources__content-right {
  width: 100%;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-human-resources__content-right {
    position: absolute;
    content: "";
    right: 2%;
    width: 18%;
    height: 40%;
    z-index: 2;
    margin-top: 0;
    top: 40%;
  }
}

.p-human-resources__content-right-title {
  font-size: 0.875rem;
  font-weight: 500;
}

.p-human-resources__content-right-text {
  font-size: 0.8125rem;
  margin-top: 0.625rem;
}

.p-human-resources__swiper.swiper {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-human-resources__swiper.swiper {
    margin-left: 1.875rem;
    width: 50%;
  }
}

.p-human-resources__swiper .swiper-slide img {
  aspect-ratio: 626/425;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-human-resources__swiper .swiper-slide picture {
  aspect-ratio: 626/425;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-width: 768px) {
  .p-info {
    width: 50%;
  }
}

.p-info__wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 5%;
  border-top: 1px solid #727171;
  border-bottom: 1px solid #727171;
  padding: 0.625rem 0;
  margin-top: 0.875rem;
}

.p-info a {
  display: inline-block;
}

.p-info__text-title {
  font-size: 1rem;
  line-height: 1.5;
}

.p-info__text-detail {
  font-size: 0.75rem;
  width: 79%;
  margin-top: 0.625rem;
}

.p-message {
  background-color: #c3bbab;
  width: 100%;
  height: 100%;
  background-image: url(../images/common/message_bg.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}

.p-message__inner {
  margin: auto;
  padding: 0 1.25rem;
  max-width: 37.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-message__inner {
    padding: 0 1.5625rem;
    max-width: 67.5rem;
  }
}

.p-message__text-body {
  padding-top: 2.5rem;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-message__text-body {
    text-align: center;
  }
}

.p-message__text {
  font-size: 0.75rem;
  line-height: 1.9;
  letter-spacing: 0.05em;
}

@media screen and (min-width: 768px) {
  .p-news-detail {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}

.p-news-detail__date {
  display: inline-block;
  font-size: 1rem;
  line-height: 1.2857142857;
  font-weight: 400;
}

.p-news-detail__category {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 400;
  color: #fff;
  padding: 0.28125rem 0.6875rem;
  background-color: #727171;
  margin-left: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-news-detail__category {
    padding: 0.25rem 0.5rem;
  }
}

.p-news-detail__title {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4583333333;
  padding-bottom: 0.375rem;
  border-bottom: 0.0625rem solid #c3bbab;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-news-detail__title {
    font-size: 2rem;
    margin-top: 1.25rem;
    padding-bottom: 1rem;
  }
}

.p-news-detail__image {
  margin-top: 1.375rem;
}
@media screen and (min-width: 768px) {
  .p-news-detail__image {
    margin-top: 2.1875rem;
  }
}

.p-news-detail__image img {
  aspect-ratio: 345/231;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-news-detail__image img {
    aspect-ratio: 700/468;
  }
}

.p-news-detail__wrap {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-news-detail__wrap {
    margin-top: 2.75rem;
  }
}
.p-news-detail__wrap p {
  margin-top: 1.5rem;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 400;
}
.p-news-detail__wrap img {
  margin-top: 1.5rem;
  aspect-ratio: 345/231;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .p-news-detail__wrap img {
    aspect-ratio: 700/468;
  }
}
.p-news-detail__wrap nav {
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-news-detail__wrap nav {
    margin-top: 2.5rem;
  }
}
.p-news-detail__wrap ul {
  margin-left: 1.4375rem;
  position: relative;
}
.p-news-detail__wrap li {
  position: relative;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 400;
}
.p-news-detail__wrap li:not(:first-child) {
  margin-top: 0.125rem;
}

.p-news-detail__pagenavi {
  margin-top: 3.75rem;
}

.p-news-list__item {
  border-bottom: 0.0625rem solid #c3bbab;
}
@media screen and (min-width: 768px) {
  .p-news-list__item {
    max-width: 48rem;
    margin-left: 11.25rem;
  }
}

.p-news-list__item a {
  display: block;
  padding: 1.5625rem 0 0.8125rem;
}
@media screen and (min-width: 768px) {
  .p-news-list__item a {
    padding: 1.5625rem 0 1.5rem;
    display: flex;
    align-items: flex-start;
  }
}

.p-news-list__item-meta {
  display: flex;
  align-items: center;
}

.p-news-list__item-date {
  font-size: 0.875rem;
  line-height: 1;
  padding-left: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-news-list__item-date {
    padding-left: 1rem;
  }
}

.p-news-list__item-category {
  color: #fff;
  background-color: #727171;
  text-align: center;
  line-height: 1;
  min-width: 4.25rem;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 0.875rem;
  margin-left: 0.8125rem;
  padding: 0.3125rem 0.25rem;
}
@media screen and (min-width: 768px) {
  .p-news-list__item-category {
    margin-left: 1.3125rem;
    padding: 0.375rem;
  }
}

.p-news-list__item-title {
  margin-top: 1rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-left: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-news-list__item-title {
    letter-spacing: 0.14em;
    margin-top: 0;
    margin-left: 2.5rem;
    padding-top: 0.1875rem;
  }
}

@media screen and (min-width: 768px) {
  .p-news__inner.l-inner {
    max-width: 71.875rem;
  }
}

@media screen and (min-width: 768px) {
  .p-news__wrap {
    display: flex;
    align-items: flex-start;
  }
}

.p-news__list {
  width: 100%;
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-news__list {
    margin-top: 6.25rem;
  }
}

.p-news__btn {
  margin-top: 1.625rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-news__btn {
    margin-top: 3.75rem;
  }
}

.p-news__pagenavi {
  margin-top: 5rem;
}

.p-notice {
  background: linear-gradient(170deg, transparent 44.9%, #c3bbab 45%, #c3bbab 45%, transparent 45.1%);
}
@media screen and (min-width: 768px) {
  .p-notice {
    background: linear-gradient(108deg, transparent 46.9%, #c3bbab 47%, #c3bbab 47%, transparent 47.1%);
  }
}

.p-notice__inner {
  margin: auto;
  padding: 0 1.25rem;
  max-width: 37.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-notice__inner {
    padding: 0 1.5625rem;
    max-width: 83.75rem;
  }
}

@media screen and (min-width: 768px) {
  .p-notice__wrap {
    display: flex;
    justify-content: space-between;
    gap: 10%;
  }
}

.p-notice__info {
  margin-top: 11.875rem;
}
@media screen and (min-width: 768px) {
  .p-notice__info {
    margin-top: 0;
  }
}

.p-other-business {
  position: relative;
}

.p-other-business::before {
  position: absolute;
  content: "";
  top: 56%;
  left: 0;
  width: 100%;
  height: 50%;
  z-index: -1;
  background: #c3bbab;
}
@media screen and (min-width: 768px) {
  .p-other-business::before {
    top: 25%;
    height: 88%;
    background: linear-gradient(90deg, #c3bbab 0%, #c3bbab 32%, transparent 32%, transparent 100%);
  }
}

.p-other-business__heading {
  display: flex;
  justify-content: center;
  align-items: center;
}

.p-other-business__title {
  padding-bottom: 1.25rem;
  position: relative;
  font-size: 1.75rem;
  line-height: 1;
  text-align: left;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-other-business__title {
    padding-bottom: 1.5625rem;
    font-size: 3rem;
  }
}

.p-other-business__title span {
  margin-top: 0.625rem;
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-other-business__title span {
    padding-bottom: 0.75rem;
    font-size: 1rem;
  }
}

.p-other-business__wrap {
  display: flex;
  justify-content: center;
  flex-direction: column-reverse;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-other-business__wrap {
    flex-direction: row;
    align-items: flex-start;
    gap: 3%;
    margin-top: 12.5rem;
    position: relative;
  }
}

.p-other-business_image-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .p-other-business_image-content {
    flex-direction: row;
    justify-content: right;
  }
}

.p-other-business__image-left {
  position: absolute;
  bottom: 12.5rem;
  left: 15%;
  width: 12%;
}
@media screen and (min-width: 768px) {
  .p-other-business__image-left {
    top: -18%;
    left: 3%;
    bottom: 0;
  }
}

.p-other-business__image-body {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-other-business__image-body {
    width: 70%;
  }
}

.p-other-business__image {
  width: 100%;
}

.p-other-business__image picture,
.p-other-business__image img {
  aspect-ratio: 626/425;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-other-business__content {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-other-business__content {
    text-align: left;
  }
}

.p-other-business__content-sub-title {
  font-size: 1.625rem;
  line-height: 1;
  text-align: left;
  letter-spacing: 0.05em;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-other-business__content-sub-title {
    font-size: 2.3125rem;
  }
}

.p-other-business__content-heading {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-other-business__content-heading {
    margin-top: 5.25rem;
    text-align: left;
  }
}

.p-other-business__content-title {
  padding-bottom: 1.25rem;
  position: relative;
  font-size: 1.75rem;
  line-height: 1;
  font-weight: 700;
  text-transform: capitalize;
}
@media screen and (min-width: 768px) {
  .p-other-business__content-title {
    padding-bottom: 1.5625rem;
    font-size: 3rem;
  }
}

.p-other-business__content-title span {
  margin-top: 0.625rem;
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-other-business__content-title span {
    padding-bottom: 0.75rem;
    font-size: 1rem;
  }
}

.p-other-business__text-body {
  width: 100%;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-other-business__text-body {
    position: absolute;
    content: "";
    top: 99%;
    left: 32%;
    width: 44%;
    height: 40%;
    z-index: 2;
    margin-top: 0;
  }
}

.p-other-business__text {
  margin-top: 0.625rem;
  font-size: 0.75rem;
}

.p-other-business__wrap--a {
  margin-top: 18.75rem;
}

.p-pagenavi {
  clear: both;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.p-pagenavi a,
.p-pagenavi span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 2.875rem;
  height: 2.875rem;
  background-color: #fff;
  color: #89857d;
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  border: 0.0625rem solid #89857d;
  transition: background-color 0.6s, color 0.6s ease;
  margin: 0 0.625rem;
  padding: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-pagenavi a,
  .p-pagenavi span {
    margin: 0 0.9375rem;
  }
}

.p-pagenavi a:hover,
.p-pagenavi span:hover {
  color: #fff;
  background-color: #89857d;
  border: 1px solid #89857d;
  transition: background-color 0.6s, color 0.6s ease;
  opacity: 1;
}

.p-pagenavi a:hover,
.p-pagenavi span:hover {
  color: #fff;
  background-color: #89857d;
  border: 1px solid #89857d;
  transition: background-color 0.6s, color 0.6s ease;
  opacity: 1;
}

.p-post-news__inner {
  margin: auto;
  padding: 0 1.25rem;
  max-width: 37.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-post-news__inner {
    padding: 0 1.5625rem;
    max-width: 70.625rem;
  }
}

@media screen and (min-width: 768px) {
  .p-post-rental-info {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 5%;
  }
}

@media screen and (min-width: 768px) {
  .p-post-rental-info__list-wrap {
    max-width: 30rem;
    width: 100%;
  }
}

.p-post-rental-info__heading {
  padding-bottom: 0.625rem;
}

.p-post-rental-info__title {
  font-size: 1.25rem;
}

.p-post-rental-info__list {
  display: flex;
  align-items: center;
}

.p-post-rental-info__list + .p-post-rental-info__list {
  margin-top: 0.875rem;
}

.p-post-rental-info__term {
  padding: 0.3125rem;
  min-width: 5rem;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.1em;
  text-align: center;
  min-width: 6.875rem;
  background-color: #c3bbab;
}
@media screen and (min-width: 768px) {
  .p-post-rental-info__term {
    font-size: 0.9375rem;
    min-width: 7.5rem;
  }
}

.p-post-rental-info__description {
  padding-left: 0.625rem;
  flex: 1;
  font-size: 0.875rem;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .p-post-rental-info__description {
    padding-left: 1.25rem;
    font-size: 0.9375rem;
  }
}

.p-post-rental-info__wrap {
  margin-top: 0.875rem;
}

.p-post-rental-info__text-title {
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .p-post-rental-info__text-title {
    font-size: 0.8125rem;
  }
}

.p-post-rental-info__text {
  font-size: 0.75rem;
  line-height: 1.6;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-post-rental-info__text {
    font-size: 0.8125rem;
  }
}

.p-post-rental-info__image-wrap {
  position: relative;
  padding-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-post-rental-info__image-wrap {
    padding-top: initial;
  }
}

.p-post-rental-info__image-wrap::before {
  position: absolute;
  content: "";
  background-color: #c3bbab;
  z-index: -1;
  width: 92%;
  height: 58%;
  top: 3.375rem;
  right: -0.625rem;
}
@media screen and (min-width: 768px) {
  .p-post-rental-info__image-wrap::before {
    width: 50%;
    height: 65%;
    top: -0.625rem;
  }
}

.p-post-rental-info__image-btn-wrap {
  margin: 1.25rem auto 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-post-rental-info__image-btn-wrap {
    margin: 3.25rem auto 0;
    text-align: left;
  }
}

.p-post-rental-info__image {
  margin-top: 1.875rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-post-rental-info__image {
    max-width: 24.75rem;
    margin-top: 0;
  }
}

.p-post-rental-info__item-img img {
  width: 100%;
  aspect-ratio: 396/284;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-post-rental-info__item-img picture {
  width: 100%;
  aspect-ratio: 396/284;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-post-rental-info__pagenavi {
  margin-top: 2.75rem;
}
@media screen and (min-width: 768px) {
  .p-post-rental-info__pagenavi {
    margin-top: 5.5rem;
  }
}

.p-post-rental__inner {
  margin: auto;
  padding: 0 1.25rem;
  max-width: 37.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-post-rental__inner {
    padding: 0 1.5625rem;
    max-width: 66.875rem;
  }
}

.p-post-rental__info {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-post-rental__info {
    margin-top: 2.5rem;
  }
}

.p-post-rental__info + .p-post-rental__info {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-post-rental__info + .p-post-rental__info {
    margin-top: 4.375rem;
  }
}

.p-post-rental__heading {
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-post-rental__heading {
    margin-top: 6.25rem;
  }
}

.p-post-rental__title {
  font-size: 1.5rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-weight: 700;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-post-rental__title {
    font-size: 2rem;
  }
}

.p-post-rental__title::after {
  background-color: #231815;
  content: "";
  flex-grow: 1;
  height: 0.0625rem;
}

.p-post-rental__title::after {
  margin-left: 0.9375rem;
}

.p-post-rental__tab {
  padding: 0.625rem 0;
  background: linear-gradient(108deg, transparent 49.8%, #231815 50%, #231815 50%, transparent 50.2%);
}
@media screen and (min-width: 768px) {
  .p-post-rental__tab {
    padding: 6.25rem 0;
    background: linear-gradient(120deg, transparent 49.8%, #231815 50%, #231815 50%, transparent 50.2%);
  }
}

.p-post-trade-info-swiper {
  position: relative;
}

.p-post-trade-info-swiper::before {
  position: absolute;
  content: "";
  width: 50%;
  height: 65%;
  top: -0.625rem;
  right: -0.625rem;
  background-color: #c3bbab;
}

.p-post-trade-info-swiper .swiper-slide img {
  width: 100%;
  aspect-ratio: 396/284;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-post-trade-info-swiper .swiper-slide picture {
  width: 100%;
  aspect-ratio: 396/284;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-post-trade-info-swiper .swiper-pagination-trade {
  width: 100%;
  bottom: 5.9375rem;
}
@media screen and (min-width: 768px) {
  .p-post-trade-info-swiper .swiper-pagination-trade {
    width: 92%;
    bottom: 23%;
    left: 4%;
    text-align: center;
    position: absolute;
  }
}

.p-post-trade-info-swiper .swiper-pagination-trade .swiper-pagination-bullet {
  width: 0.6875rem;
  height: 0.6875rem;
  border-radius: initial;
  transition: 0.3s;
  left: 12%;
  background-color: #c3bbab;
}

.p-post-trade-info-swiper .swiper-pagination-trade .swiper-pagination-bullet-active {
  background: #89857d;
}

.p-post-trade-info-swiper__button-wrap {
  margin-top: 3.125rem;
  display: flex;
  justify-content: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-post-trade-info-swiper__button-wrap {
    justify-content: right;
  }
}

.p-post-trade-info-swiper__button-wrap .swiper-button-prev {
  width: 3.75rem;
  height: 0.25rem;
  background-image: url(../images/common/arrow_left_sp.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.p-post-trade-info-swiper__button-wrap .swiper-button-next {
  width: 3.75rem;
  height: 0.25rem;
  background-image: url(../images/common/arrow_right_sp.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.p-post-trade-info-swiper__button-wrap .swiper-button-next {
  margin-left: 6.25rem;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 0.4375rem;
}

.p-post-trade-info-swiper-prev.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 1.5625rem);
  right: auto;
}

.p-post-trade-info-swiper-next.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 1.5625rem);
  left: auto;
}

@media screen and (min-width: 768px) {
  .p-post-trade-info {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 5%;
  }
}

@media screen and (min-width: 768px) {
  .p-post-trade-info__list-wrap {
    max-width: 30rem;
    width: 100%;
  }
}

.p-post-trade-info__heading {
  padding-bottom: 0.625rem;
}

.p-post-trade-info__title {
  font-size: 1.25rem;
}

.p-post-trade-info__list {
  display: flex;
  align-items: center;
}

.p-post-trade-info__list + .p-post-trade-info__list {
  margin-top: 0.875rem;
}

.p-post-trade-info__term {
  padding: 0.3125rem;
  min-width: 5rem;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.1em;
  text-align: center;
  min-width: 6.875rem;
  background-color: #c3bbab;
}
@media screen and (min-width: 768px) {
  .p-post-trade-info__term {
    font-size: 0.9375rem;
    min-width: 7.5rem;
  }
}

.p-post-trade-info__description {
  padding-left: 0.625rem;
  flex: 1;
  font-size: 0.875rem;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .p-post-trade-info__description {
    padding-left: 1.25rem;
    font-size: 0.9375rem;
  }
}

.p-post-trade-info__wrap {
  margin-top: 0.875rem;
}

.p-post-trade-info__text-title {
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .p-post-trade-info__text-title {
    font-size: 0.8125rem;
  }
}

.p-post-trade-info__text {
  font-size: 0.75rem;
  line-height: 1.6;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-post-trade-info__text {
    font-size: 0.8125rem;
  }
}

.p-post-trade-info__image-wrap {
  position: relative;
  padding-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-post-trade-info__image-wrap {
    padding-top: initial;
  }
}

.p-post-trade-info__image-wrap::before {
  position: absolute;
  content: "";
  background-color: #c3bbab;
  z-index: -1;
  width: 92%;
  height: 58%;
  top: 3.375rem;
  right: -0.625rem;
}
@media screen and (min-width: 768px) {
  .p-post-trade-info__image-wrap::before {
    width: 50%;
    height: 65%;
    top: -0.625rem;
  }
}

.p-post-trade-info__image {
  margin-top: 1.875rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-post-trade-info__image {
    max-width: 24.75rem;
    margin-top: 0;
  }
}

.p-post-trade-info__item-img img {
  width: 100%;
  aspect-ratio: 396/284;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-post-trade-info__item-img picture {
  width: 100%;
  aspect-ratio: 396/284;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-post-trade-info__image-btn-wrap {
  margin: 1.25rem auto 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-post-trade-info__image-btn-wrap {
    margin: 3.25rem auto 0;
    text-align: left;
  }
}

.p-post-trade-info__pagenavi {
  margin-top: 2.75rem;
}
@media screen and (min-width: 768px) {
  .p-post-trade-info__pagenavi {
    margin-top: 5.5rem;
  }
}

.p-post-trade__inner {
  margin: auto;
  padding: 0 1.25rem;
  max-width: 37.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-post-trade__inner {
    padding: 0 1.5625rem;
    max-width: 66.875rem;
  }
}

.p-post-trade__info {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-post-trade__info {
    margin-top: 2.5rem;
  }
}

.p-post-trade__info + .p-post-trade__info {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-post-trade__info + .p-post-trade__info {
    margin-top: 4.375rem;
  }
}

.p-post-trade__heading {
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-post-trade__heading {
    margin-top: 6.25rem;
  }
}

.p-post-trade__title {
  font-size: 1.5rem;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-weight: 700;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-post-trade__title {
    font-size: 2rem;
  }
}

.p-post-trade__title::after {
  background-color: #231815;
  content: "";
  flex-grow: 1;
  height: 0.0625rem;
}

.p-post-trade__title::after {
  margin-left: 0.9375rem;
}

@media screen and (min-width: 768px) {
  .p-rental-detail__wrap {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 4px;
  }
}

.p-rental-detail__content-left {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-rental-detail__content-left {
    max-width: 34.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.p-rental-detail__image {
  width: 100%;
}

.p-rental-detail__image picture {
  width: 100%;
  aspect-ratio: 552/394;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-rental-detail__image img {
  width: 100%;
  aspect-ratio: 552/394;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-rental-detail__content-right {
  width: 100%;
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-rental-detail__content-right {
    max-width: 34.5rem;
    margin-top: 0;
  }
}

.p-rental-list__item {
  display: flex;
  flex-direction: column;
}

.p-rental-list__item a {
  display: block;
  height: 100%;
}

.p-rental-list__item-img {
  width: 100%;
}

.p-rental-list__item-img img {
  width: 100%;
  aspect-ratio: 284/284;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-rental-list__item-content {
  padding: 0.625rem 0 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-rental-list__item-content {
    padding-top: 1.25rem 0 1.75rem;
  }
}

.p-rental-list__item-title {
  font-weight: 700;
  line-height: 1.5;
  font-size: 1.5rem;
  margin-bottom: 0.3125rem;
}

.p-rental-list__item-price {
  padding-top: 0.5rem;
  font-size: 1.25rem;
  line-height: 1.5;
  color: red;
}
@media screen and (min-width: 768px) {
  .p-rental-list__item-price {
    font-weight: 700;
  }
}

.p-rental-list__item-price span {
  font-size: 0.75rem;
  color: #231815;
  font-weight: 400;
}

.p-rental-list__item-body {
  margin-top: auto;
  padding: 0.3125rem 0 1.25rem;
}

.p-rental-list__item-categories {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 0.3125rem;
}

.p-rental-list__item-category {
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1;
}

.p-rental-list__item-category-body {
  display: flex;
  align-items: center;
}

.p-rental-list__item-category-term {
  max-width: 3.125rem;
  width: 100%;
  padding: 0.3125rem;
  background-color: #c3bbab;
  text-align: justify;
  -moz-text-align-last: justify;
       text-align-last: justify;
  color: #fff;
}

.p-rental-list__item-category-description {
  padding-left: 0.375rem;
}

.p-rental-list__item-category:not(:first-of-type) {
  padding-top: 0.375rem;
}

.p-rental-list__button {
  text-align: center;
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-rental-list__button {
    margin-top: 5.8125rem;
  }
}

.p-rental-swiper {
  position: relative;
}

.p-rental-swiper .swiper-slide img {
  width: 100%;
  aspect-ratio: 284/284;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-rental-swiper .swiper-slide picture {
  width: 100%;
  aspect-ratio: 284/284;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-rental-swiper .swiper-pagination {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-rental-swiper .swiper-pagination {
    width: 92%;
    bottom: 3%;
    left: 4%;
  }
}

.p-rental-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 0.6875rem;
  height: 0.6875rem;
  border-radius: initial;
  transition: 0.3s;
  left: 12%;
  background-color: #c3bbab;
}

.p-rental-swiper .swiper-pagination .swiper-pagination-bullet-active {
  background: #89857d;
}

.p-rental-swiper__button-wrap {
  margin-top: 3.125rem;
  display: flex;
  justify-content: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-rental-swiper__button-wrap {
    justify-content: right;
  }
}

.p-rental-swiper__button-wrap .swiper-button-prev {
  width: 3.75rem;
  height: 0.25rem;
  background-image: url(../images/common/arrow_left_sp.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .p-rental-swiper__button-wrap .swiper-button-prev {
    background-image: url(../images/common/arrow_left.svg);
    width: 13.125rem;
  }
}

.p-rental-swiper__button-wrap .swiper-button-next {
  width: 3.75rem;
  height: 0.25rem;
  background-image: url(../images/common/arrow_right_sp.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .p-rental-swiper__button-wrap .swiper-button-next {
    width: 13.125rem;
    background-image: url(../images/common/arrow_right.svg);
  }
}

.p-rental-swiper__button-wrap .swiper-button-next {
  margin-left: 6.25rem;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 0.4375rem;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 1.5625rem);
  right: auto;
}
@media screen and (min-width: 768px) {
  .swiper-button-prev,
  .swiper-rtl .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 13.125rem);
  }
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 1.5625rem);
  left: auto;
}
@media screen and (min-width: 768px) {
  .swiper-button-next,
  .swiper-rtl .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 13.125rem);
  }
}

.p-rental__swiper {
  margin-top: 2.75rem;
}
@media screen and (min-width: 768px) {
  .p-rental__swiper {
    margin-top: 5.5rem;
  }
}

.p-reservation__inner {
  margin: auto;
  padding: 0 1.25rem;
  max-width: 37.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-reservation__inner {
    padding: 0 1.5625rem;
    max-width: 56.25rem;
  }
}

.p-reservation__title {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
  text-transform: capitalize;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-reservation__title {
    font-size: 2rem;
  }
}

.p-reservation__title span {
  margin-bottom: 0.5rem;
  display: block;
  font-size: 0.875rem;
  color: #727171;
}
@media screen and (min-width: 768px) {
  .p-reservation__title span {
    font-size: 1.125rem;
  }
}

.p-reservation__text {
  margin-top: 1.875rem;
  font-size: 1rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-reservation__text {
    margin-top: 2.5rem;
    text-align: center;
  }
}

.p-reservation__wrap {
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-reservation__wrap {
    margin-top: 6.25rem;
  }
}

body .day-calendar table {
  border: none;
  border-collapse: separate;
  border-spacing: 1px 5px;
  width: 100%;
}

body .monthly-calendar caption {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  body .monthly-calendar caption {
    font-size: 2rem;
  }
}

.p-spot__swiper {
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-spot__swiper {
    margin-top: 1.5rem;
  }
}

.p-spot__single {
  margin: auto;
  padding: 0 1.25rem;
  max-width: 37.5rem;
  width: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
}
@media screen and (min-width: 768px) {
  .p-spot__single {
    padding: 0 1.5625rem;
    max-width: 66.875rem;
  }
}

.p-spot__grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5%;
  padding: 0 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-spot__grid {
    padding: 0 1.5625rem;
  }
}

.p-spot__grid-item {
  margin: auto;
  max-width: 37.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-spot__grid-item {
    max-width: 66.875rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.p-spot__grid-item img {
  width: 100%;
  aspect-ratio: 552/394;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-spot-swiper__wrap .swiper-wrapper {
  transition-timing-function: linear;
}

.p-spot-swiper__wrap .swiper-slide img {
  width: 100%;
  aspect-ratio: 552/394;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-spot-swiper__wrap .swiper-slide picture {
  width: 100%;
  aspect-ratio: 552/394;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-spot__default-message {
  text-align: center;
}

.p-sub-fv {
  width: 100%;
  height: 100%;
  min-height: 31.25rem;
  position: relative;
}

.p-sub-fv__inner {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-sub-fv__inner {
    max-width: 87.5rem;
    padding-left: 1.5625rem;
    padding-right: 1.5625rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.p-sub-fv__heading {
  position: absolute;
  z-index: 2;
  top: 53%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.p-sub-fv__title {
  width: 100%;
  max-width: 31.25rem;
}
@media screen and (min-width: 768px) {
  .p-sub-fv__title {
    max-width: 34.5rem;
  }
}

.p-sub-fv__image img {
  border-radius: 2px;
  width: 100%;
}

.p-sub-fv__contact {
  position: absolute;
  top: 7%;
  right: 2%;
}

.p-sub-fv__contact-mail {
  background-color: #fff;
  width: 3.5625rem;
  height: 3.5625rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
}

.p-sub-fv__contact-mail img {
  width: 2.5rem;
  height: 100%;
}

.p-support {
  position: relative;
}

.p-support__inner {
  margin: auto;
  padding: 0 1.25rem;
  max-width: 37.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-support__inner {
    padding: 0 1.5625rem;
    max-width: 70.625rem;
  }
}

.p-support__wrap {
  position: relative;
}

.p-support__message-head {
  position: absolute;
  content: "";
  writing-mode: vertical-rl;
  font-size: 1.875rem;
  font-weight: bold;
  top: -12%;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .p-support__message-head {
    top: 0;
    left: -6%;
  }
}

.p-support__message-bottom {
  position: absolute;
  content: "";
  font-weight: bold;
  writing-mode: vertical-rl;
  font-size: 1.875rem;
  bottom: -22%;
  right: 0;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .p-support__message-bottom {
    writing-mode: horizontal-tb;
    font-size: 1.875rem;
    bottom: 19%;
  }
}

.p-support__list {
  margin-top: 5rem;
}
@media screen and (min-width: 768px) {
  .p-support__list {
    margin-top: 6.25rem;
  }
}

.p-support-list {
  display: grid;
  gap: 0.625rem;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(4, 1fr);
}
@media screen and (min-width: 768px) {
  .p-support-list {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-flow: dense;
  }
}

.image-01 {
  grid-area: 1/1/4/2;
}
@media screen and (min-width: 768px) {
  .image-01 {
    grid-area: 1/1/3/2;
  }
}

.image-02 {
  grid-area: 1/2/2/3;
}

.image-03 {
  grid-area: 2/2/3/3;
}
@media screen and (min-width: 768px) {
  .image-03 {
    grid-area: 1/3/2/4;
  }
}

.image-04 {
  grid-area: 3/2/4/3;
}
@media screen and (min-width: 768px) {
  .image-04 {
    grid-area: 1/4/2/5;
  }
}

.image-05 {
  grid-area: 6/1/7/2;
}
@media screen and (min-width: 768px) {
  .image-05 {
    grid-area: 3/1/4/2;
  }
}

.image-06 {
  grid-area: 7/1/8/2;
}
@media screen and (min-width: 768px) {
  .image-06 {
    grid-area: 3/2/4/3;
  }
}

.image-07 {
  grid-area: 8/1/9/2;
}
@media screen and (min-width: 768px) {
  .image-07 {
    grid-area: 3/3/4/4;
  }
}

.image-08 {
  grid-area: 6/2/9/3;
}
@media screen and (min-width: 768px) {
  .image-08 {
    grid-area: 2/4/4/5;
  }
}

.p-support-list__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 200/100;
}
@media screen and (min-width: 768px) {
  .p-support-list__item img {
    aspect-ratio: 264/182;
  }
}

.p-support-list__item:nth-of-type(1) img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 160/95;
}
@media screen and (min-width: 768px) {
  .p-support-list__item:nth-of-type(1) img {
    aspect-ratio: 182/264;
  }
}

.p-support__text-body {
  position: absolute;
  content: "";
  width: 100%;
  max-width: 34.375rem;
  height: 4.375rem;
  z-index: 1;
  top: 43%;
  left: 0;
  text-align: center;
  font-size: 0.6875rem;
}
@media screen and (min-width: 768px) {
  .p-support__text-body {
    font-size: 0.75rem;
    top: 33%;
    left: 25%;
  }
}

.p-support__text {
  line-height: 1.6;
}

@media screen and (min-width: 768px) {
  .p-trade-detail__wrap {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 4px;
  }
}

.p-trade-detail__content-left {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-trade-detail__content-left {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.p-trade-detail__image {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-trade-detail__image {
    width: 92%;
  }
}

.p-trade-detail__image picture {
  width: 100%;
  aspect-ratio: 552/394;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-trade-detail__image img {
  width: 100%;
  aspect-ratio: 552/394;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-trade-detail__content-right {
  width: 100%;
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-trade-detail__content-right {
    max-width: 34.5rem;
    margin-top: 0;
  }
}

.p-trade-list {
  display: grid;
  gap: 1.875rem;
  grid-template-columns: repeat(1, 1fr);
}
@media screen and (min-width: 768px) {
  .p-trade-list {
    gap: 2.6875rem;
    -moz-column-gap: 2.6875rem;
         column-gap: 2.6875rem;
    row-gap: 3.5rem;
    grid-template-columns: repeat(3, 1fr);
  }
}

.p-trade-list__item {
  display: flex;
  flex-direction: column;
}

.p-trade-list__item a {
  display: block;
  height: 100%;
}

.p-trade-list__item-img {
  width: 100%;
}

.p-trade-list__item-img img {
  width: 100%;
  aspect-ratio: 368.5/368.5;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-trade-list__item-content {
  padding: 0.625rem 0 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-trade-list__item-content {
    padding: 1.625rem 0 0.625rem;
  }
}

.p-trade-list__item-title {
  font-weight: 700;
  line-height: 1.5;
  font-size: 1.5rem;
}

.p-trade-list__item-price {
  margin-top: 0.5rem;
  font-size: 1.375rem;
  line-height: 1.5;
  color: red;
}
@media screen and (min-width: 768px) {
  .p-trade-list__item-price {
    font-size: 1.5rem;
    font-weight: 700;
  }
}

.p-trade-list__item-price span {
  font-size: 0.75rem;
  color: #231815;
  font-weight: 400;
}

.p-trade-list__item-body {
  margin-top: auto;
}

.p-trade-list__item-categories {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-top: auto;
}

.p-trade-list__item-category {
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1;
}

.p-trade-list__item-category-body {
  display: flex;
  align-items: center;
}

.p-trade-list__item-category-term {
  max-width: 3.125rem;
  width: 100%;
  padding: 0.3125rem;
  background-color: #fff;
  text-align: justify;
  -moz-text-align-last: justify;
       text-align-last: justify;
  color: #231815;
}

.p-trade-list__item-category-description {
  padding-left: 0.375rem;
}

.p-trade-list__item-category:not(:first-of-type) {
  padding-top: 0.375rem;
}

.p-trade-list__button {
  text-align: center;
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .p-trade-list__button {
    margin-top: 5.8125rem;
  }
}

.p-trade {
  background-color: #c3bbab;
  width: 100%;
  height: 100%;
  position: relative;
}

.p-trade::before {
  position: absolute;
  content: "";
  width: 100%;
  max-width: 90rem;
  height: 3.5625rem;
  top: -1.8rem;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url(../images/common/house_bg.png);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}

.p-trade__inner {
  margin: auto;
  padding: 0 1.25rem;
  max-width: 37.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-trade__inner {
    padding: 0 1.5625rem;
    max-width: 77.5rem;
  }
}

.p-trade__list {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-trade__list {
    margin-top: 3.875rem;
  }
}

.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

.u-mobile {
  display: block;
}
@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}

html.is-fixed {
  height: 100%;
  overflow: hidden;
}

.js-fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}

/* 表示時 */
.js-fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/*# sourceMappingURL=style.css.map */
