@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,
ul {
  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;
}

/* reduceでもこのループだけは必ず回す */
@media (prefers-reduced-motion: reduce) {
  .member__rail {
    /* reset.scss の 0.01ms / 1回 を上書きする */
    animation-name: member-rail-scroll !important;
    animation-duration: var(--speed, 20s) !important;
    animation-timing-function: linear !important;
    animation-iteration-count: infinite !important;
    animation-play-state: running !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: 1150px) {
  html {
    font-size: 1.3913043478vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

body {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  color: #333333;
}

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

a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  a:hover {
    opacity: 1;
  }
}

.about-layout {
  margin-top: 10.625rem;
  margin-bottom: 10.93rem;
}
@media screen and (max-width: 767px) {
  .about-layout {
    margin-top: 5rem;
    margin-bottom: 5rem;
  }
}

.access-layout {
  margin-top: 10rem;
  margin-bottom: 11.25rem;
}
@media screen and (max-width: 767px) {
  .access-layout {
    margin-top: 5rem;
    margin-bottom: 6.25rem;
  }
}

.attention-layout {
  margin-top: 6.875rem;
}
@media screen and (max-width: 767px) {
  .attention-layout {
    margin-top: 3.75rem;
  }
}

.azu-layout {
  padding-top: 6.25rem;
  padding-bottom: 6.25rem;
}
@media screen and (max-width: 767px) {
  .azu-layout {
    padding-top: 4.375rem;
    padding-bottom: 5rem;
  }
}

.banner-layout {
  margin-top: 5rem;
}

.company-layout {
  margin-top: 10rem;
  margin-bottom: 11.25rem;
}
@media screen and (max-width: 767px) {
  .company-layout {
    margin-top: 6.25rem;
    margin-bottom: 6.25rem;
  }
}

.contact-layout {
  padding-top: 5.0625rem;
  padding-bottom: 7.0625rem;
}
@media screen and (max-width: 767px) {
  .contact-layout {
    padding-top: 5.625rem;
    padding-bottom: 8.125rem;
  }
}

.flow-layout {
  margin-top: 10rem;
  margin-bottom: 11.25rem;
}
@media screen and (max-width: 767px) {
  .flow-layout {
    margin-top: 5rem;
    margin-bottom: 5rem;
  }
}

.footer-layout {
  padding-top: 2.625rem;
  padding-bottom: 0.8125rem;
}
@media screen and (max-width: 767px) {
  .footer-layout {
    padding-top: 3.75rem;
    padding-bottom: 1.25rem;
  }
}

.header-layout {
  position: fixed;
  z-index: 900;
  top: 0;
  right: 0;
  left: 0;
}

.howto-layout {
  margin-top: 9.9375rem;
  margin-bottom: 11.25rem;
}
@media screen and (max-width: 767px) {
  .howto-layout {
    margin-top: 6.25rem;
    margin-bottom: 6.25rem;
  }
}

.member-layout {
  margin-top: 10rem;
}
@media screen and (max-width: 767px) {
  .member-layout {
    margin-top: 5rem;
  }
}

.menu-layout {
  padding-top: 6.25rem;
  padding-bottom: 9.375rem;
}
@media screen and (max-width: 767px) {
  .menu-layout {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

#menu {
  margin-top: 5rem;
}

.message-layout {
  margin-top: 5.625rem;
  margin-bottom: 6.25rem;
}
@media screen and (max-width: 767px) {
  .message-layout {
    margin-top: 2.5rem;
    margin-bottom: 5.375rem;
  }
}

.price-layout {
  margin-top: 10.8125rem;
}
@media screen and (max-width: 767px) {
  .price-layout {
    margin-top: 5rem;
  }
}

.rental-about-layout {
  margin-top: 5.625rem;
}
@media screen and (max-width: 767px) {
  .rental-about-layout {
    margin-top: 5rem;
  }
}

.sub-page-mv-layout {
  margin-top: 9.1875rem;
}
@media screen and (max-width: 767px) {
  .sub-page-mv-layout {
    margin-top: 2.8125rem;
  }
}

@media screen and (max-width: 767px) {
  .sub-page-mv-layout.sub-page-mv--rental {
    margin-top: 4.8125rem;
  }
}

.line-button {
  position: fixed;
  right: 2.1875rem;
  top: 38.5rem;
  z-index: 5000;
}
@media screen and (max-width: 767px) {
  .line-button {
    bottom: 2.125rem;
    right: 0.75rem;
    top: initial;
  }
}

.line-button a {
  padding: 0.875rem 1.59375rem;
  border-radius: 0.75rem;
  border: 2px solid #BE6D57;
  background-color: #BE6D57;
  color: #fff;
  font-family: "Zen Old Mincho", serif;
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
  transition: all 0.4s ease;
}

.line-button a:hover {
  background-color: #fff;
  color: #BE6D57;
  opacity: 1;
}

.inner {
  width: 100%;
  max-width: 81.875rem;
  padding: 0 25px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .inner {
    padding: 0 15px;
  }
}

.section-title h2 {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 5.1875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  color: #B2ACA1;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .section-title h2 {
    font-size: 3.75rem;
  }
}

.section-title.section-title--menu h2 {
  text-align: center;
  font-size: 5.9375rem;
  letter-spacing: 0.04em;
  color: #848484;
}
@media screen and (max-width: 767px) {
  .section-title.section-title--menu h2 {
    font-size: 3.75rem;
  }
}

.section-title.section-title--flow h2 {
  letter-spacing: 0.04em;
  color: #333333;
}

.section-title.section-title--contact h2 {
  font-size: 5.3125rem;
  letter-spacing: 0.04em;
  color: #BE6D57;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .section-title.section-title--contact h2 {
    font-size: 3.75rem;
  }
}

.section-title.section-title--work h2 {
  color: #848484;
  text-align: end;
}
@media screen and (max-width: 767px) {
  .section-title.section-title--work h2 {
    text-align: start;
  }
}

.button a {
  display: inline-block;
  padding-right: 3.125rem;
  padding-bottom: 0.4375rem;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #333333;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  position: relative;
}
@media screen and (max-width: 767px) {
  .button a {
    padding-right: 2.4375rem;
    padding-bottom: 0.4375rem;
    font-size: 1rem;
  }
}

.button a::after {
  position: absolute;
  content: "";
  background-image: url(../images/common/button-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top;
  width: 9.6875rem;
  height: 0.625rem;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .button a::after {
    width: 7.75rem;
    height: 0.5rem;
  }
}

.sub-page-title h2 {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 3.3125rem;
  font-weight: 700;
  color: #BE6D57;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .sub-page-title h2 {
    font-size: 2.125rem;
  }
}

.sub-page-title.sub-page-title--member h2 {
  text-align: center;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .sub-page-title.sub-page-title--member h2 {
    font-size: 3.125rem;
  }
}

.sub-page-title.sub-page-title--company h2 {
  color: #333333;
}

.about {
  overflow: hidden;
}

.about__contents {
  display: flex;
  gap: 6.25rem;
  justify-content: flex-start;
  margin-left: calc(50% - 50vw);
}
@media screen and (max-width: 767px) {
  .about__contents {
    flex-direction: column;
    margin-top: 2.625rem;
    gap: 2.625rem;
    justify-content: center;
    align-items: center;
    margin-left: initial;
  }
}

.about__img-body {
  position: relative;
  height: 48.75rem;
  width: 100%;
  max-width: 42.25rem;
}
@media screen and (max-width: 767px) {
  .about__img-body {
    height: 22.5rem;
  }
}

.about__img-item1 {
  position: absolute;
  top: 1.875rem;
  left: 0;
  width: 100%;
  max-width: 22.5rem;
}
@media screen and (max-width: 767px) {
  .about__img-item1 {
    max-width: 11.85375rem;
    top: 0.43125rem;
  }
}

.about__img-item2 {
  position: absolute;
  top: 0;
  left: 22.5rem;
  width: 100%;
  max-width: 20.625rem;
}
@media screen and (max-width: 767px) {
  .about__img-item2 {
    max-width: 10.3125rem;
    top: 0;
    left: 11.85375rem;
  }
}

.about__img-item3 {
  position: absolute;
  bottom: 0;
  left: 5.625rem;
  width: 100%;
  max-width: 20.625rem;
}
@media screen and (max-width: 767px) {
  .about__img-item3 {
    max-width: 10.325rem;
    top: 12.73125rem;
    left: 1.25rem;
  }
}

.about__img-item4 {
  position: absolute;
  bottom: 1.875rem;
  left: 26.25rem;
  width: 100%;
  max-width: 22.5rem;
}
@media screen and (max-width: 767px) {
  .about__img-item4 {
    max-width: 11.853125rem;
    left: 11.575rem;
    top: 12.0625rem;
  }
}

.about__text-contents {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.about__text {
  margin-left: 3.125rem;
  margin-top: 1.875rem;
  font-family: "Zen Old Mincho", serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .about__text {
    margin-left: initial;
    font-size: 0.875rem;
  }
}

.about__button {
  margin-top: 2.5rem;
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .about__button {
    margin-top: 3.125rem;
  }
}

.access__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .access__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.875rem;
  }
}

.access__text-body {
  margin-top: 2.625rem;
}
@media screen and (max-width: 767px) {
  .access__text-body {
    margin-top: 2.5rem;
  }
}

.access__sub-title {
  font-family: "Zen Old Mincho", serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.7;
  color: #333333;
}

.access__text {
  font-family: "Zen Old Mincho", serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.7;
  color: #333333;
}

.access__right {
  width: 100%;
  max-width: 45rem;
  height: 28.125rem;
}
@media screen and (max-width: 767px) {
  .access__right {
    height: 13.47625rem;
  }
}

.access__right iframe {
  width: 100%;
  height: 100%;
}

.attention__items {
  display: flex;
  gap: 6.5625rem;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .attention__items {
    flex-direction: column;
    gap: 2.5rem;
  }
}

.attention__item-body {
  display: flex;
  flex-direction: column;
  gap: 3.8125rem;
}
@media screen and (max-width: 767px) {
  .attention__item-body {
    gap: 2.5rem;
  }
}

.attention__item {
  display: flex;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .attention__item {
    flex-direction: column;
    gap: 1rem;
  }
}

.attention__item-title p {
  width: 12.5rem;
  padding: 0.5625rem 0 0.5625rem 1.625rem;
  background-color: #F8F5EF;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .attention__item-title p {
    padding: 0.375rem 0 0.375rem 1.5rem;
  }
}

.attention__item-title.title-1 p::before {
  position: absolute;
  content: "";
  background-image: url(../images/rental/attention-item1.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 1.375rem;
  height: 1.375rem;
  top: 50%;
  left: 1.625rem;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .attention__item-title.title-1 p::before {
    width: 1.25rem;
    height: 1.25rem;
    left: 1.5rem;
  }
}

.attention__item-title.title-2 p::before {
  position: absolute;
  content: "";
  background-image: url(../images/rental/attention-item2.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 1.375rem;
  height: 1.375rem;
  top: 50%;
  left: 2.1875rem;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .attention__item-title.title-2 p::before {
    width: 1.25rem;
    height: 1.25rem;
    left: 2.125rem;
  }
}

.attention__item-title.title-3 p::before {
  position: absolute;
  content: "";
  background-image: url(../images/rental/attention-item3.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 1.375rem;
  height: 1.375rem;
  top: 50%;
  left: 3.4375rem;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .attention__item-title.title-3 p::before {
    width: 1.25rem;
    height: 1.25rem;
    left: 3.3125rem;
  }
}

.attention__item-title.title-5 p::before {
  position: absolute;
  content: "";
  background-image: url(../images/rental/attention-item5.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 1.375rem;
  height: 1.375rem;
  top: 50%;
  left: 1.875rem;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .attention__item-title.title-5 p::before {
    width: 1.25rem;
    height: 1.25rem;
    left: 3.3125rem;
  }
}

.attention__item-title.title-4 p::before {
  position: absolute;
  content: "";
  background-image: url(../images/rental/attention-item4.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 1.375rem;
  height: 1.375rem;
  top: 50%;
  left: 3.4375rem;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .attention__item-title.title-4 p::before {
    width: 1.25rem;
    height: 1.25rem;
    left: 3.3125rem;
  }
}

.attention__item-text {
  font-family: "Zen Old Mincho", serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.8;
  color: #333333;
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .attention__item-text {
    font-size: 0.875rem;
    margin-top: initial;
  }
}

.attention__item-text.attention__item-text--right {
  margin-top: 1.3125rem;
}
@media screen and (max-width: 767px) {
  .attention__item-text.attention__item-text--right {
    margin-top: 1.5625rem;
  }
}

.attention__text-under {
  margin-top: 2.75rem;
}
@media screen and (max-width: 767px) {
  .attention__text-under {
    margin-top: 2.0625rem;
  }
}

.attention__item-text span {
  text-decoration: underline;
}

.azu {
  background-color: #F8F0EF;
}

.azu__inner {
  display: flex;
  gap: 3.4375rem;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .azu__inner {
    flex-direction: column-reverse;
    gap: 2.51625rem;
    align-items: start;
  }
}

.azu__sub-text {
  font-family: "Zen Old Mincho", serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1;
  color: #333333;
}

.azu__title {
  margin-top: 0.4375rem;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 2.0625rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .azu__title {
    position: relative;
    z-index: 20;
  }
}

.azu__text {
  font-family: "Zen Old Mincho", serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.8;
  color: #333333;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .azu__text {
    margin-top: 1.75rem;
    font-size: 0.8125rem;
  }
}

.azu__text-top {
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .azu__text-top {
    margin-top: 1.25rem;
  }
}

.azu__img {
  width: 100%;
  max-width: 19.3125rem;
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .azu__img {
    max-width: initial;
    flex-direction: column-reverse;
  }
}

.azu__1 {
  margin-bottom: -0.9375rem;
  margin-left: 9.6875rem;
}
@media screen and (max-width: 767px) {
  .azu__1 {
    margin-bottom: initial;
    margin-left: auto;
    margin-right: 0;
  }
}

.azu__2 {
  margin-right: auto;
  margin-left: 0;
}

.azu__img img {
  width: 100%;
  aspect-ratio: 309.74/218.08;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .azu__img img {
    width: 80%;
    height: auto;
    aspect-ratio: auto;
  }
}

.azu__img::after {
  position: absolute;
  content: "";
  background-image: url(../images/about/about-treat2.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: -1;
  width: 12.5rem;
  height: 12.125rem;
  top: -5.625rem;
  right: -12.5rem;
  animation: rotateLoop 20s linear infinite;
}
@media screen and (max-width: 767px) {
  .azu__img::after {
    width: 7.0625rem;
    height: 6.875rem;
    top: -6.5rem;
    right: 0.625rem;
  }
}

@keyframes rotateLoop {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.company {
  overflow: hidden;
}

.company__contents {
  margin-right: calc(50% - 50vw);
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .company__contents {
    margin-right: initial;
    flex-direction: column;
    gap: 3.125rem;
  }
}

.company__text {
  margin-top: 3.125rem;
  font-family: "Zen Old Mincho", serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.6;
  color: #333333;
}

.company__list {
  margin-top: 3.75rem;
  width: 100%;
  max-width: 46.5rem;
}
@media screen and (max-width: 767px) {
  .company__list {
    margin-top: 2.5rem;
  }
}

.compnay__list-item {
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #878787;
  display: flex;
}
@media screen and (max-width: 767px) {
  .compnay__list-item {
    flex-direction: column;
    gap: 1rem;
    padding-bottom: 2rem;
  }
}

.compnay__list-item:not(:first-child) {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .compnay__list-item:not(:first-child) {
    margin-top: 2rem;
  }
}

.company__list-title {
  font-family: "Zen Old Mincho", serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  color: #333333;
  width: 20%;
}
@media screen and (max-width: 767px) {
  .company__list-title {
    width: 100%;
  }
}

.company__list-text {
  font-family: "Zen Old Mincho", serif;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1;
  color: #333333;
}

.company__img {
  width: 100%;
  max-width: 38.25rem;
}

.company__img img {
  width: 100%;
  aspect-ratio: 612/767;
  -o-object-fit: cover;
     object-fit: cover;
}

.contact {
  background-image: url(../images/common/contact-bg.webp);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .contact {
    background-image: url(../images/common/contact-sp-bg.webp);
  }
}

.contact__text {
  margin-top: 4.4375rem;
  font-family: "Zen Old Mincho", serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.7;
  color: #333333;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact__text {
    margin-top: 3.75rem;
  }
}

.contact__button {
  display: flex;
  justify-content: center;
  margin-top: 2.3125rem;
}
@media screen and (max-width: 767px) {
  .contact__button {
    margin-top: 2.5rem;
  }
}

.contact__button a {
  padding: 1.0625rem 4.375rem;
  background-color: #BE6D57;
  color: #fff;
  border-radius: 0.75rem;
  font-family: "Zen Old Mincho", serif;
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
  border: 2px solid #BE6D57;
  transition: all 0.4s ease;
}
@media screen and (max-width: 767px) {
  .contact__button a {
    padding: 0.875rem 3.75rem;
    font-size: 1rem;
  }
}

.contact__button a:hover {
  background-color: #fff;
  color: #BE6D57;
  opacity: 1;
}

.flow__contents {
  border: 1px solid #878787;
  padding: 2.5rem;
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .flow__contents {
    border: none;
    padding: initial;
    margin-top: 3.75rem;
  }
}

.flow__items {
  position: relative;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  max-width: 55.1875rem;
}

.flow__items::before {
  position: absolute;
  z-index: -2;
  content: "";
  background-color: #878787;
  width: 1px;
  height: 31.875rem;
  top: 3.125rem;
  left: 2.375rem;
}
@media screen and (max-width: 767px) {
  .flow__items::before {
    top: 1.25rem;
    left: 1.3125rem;
    height: 34.375rem;
  }
}
@media screen and (max-width: 399px) {
  .flow__items::before {
    height: 36.25rem;
  }
}

.flow__item {
  display: flex;
  align-items: start;
  gap: 1.5625rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .flow__item {
    gap: 1.25rem;
  }
}

.flow__number {
  width: 100%;
  max-width: 4.8125rem;
}
@media screen and (max-width: 767px) {
  .flow__number {
    max-width: 2.625rem;
  }
}

.flow__number img {
  width: 100%;
  aspect-ratio: 1/1;
}

.flow__title-body {
  display: flex;
  flex-direction: column;
}

.flow__text-title {
  margin-top: 1.3125rem;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .flow__text-title {
    font-size: 1rem;
    margin-top: 0.375rem;
  }
}

.flow__text-title span {
  text-decoration: underline;
}

.flow__text-body {
  display: flex;
  gap: 5rem;
}
@media screen and (max-width: 767px) {
  .flow__text-body {
    flex-direction: column;
    gap: initial;
  }
}

.flow__text p {
  margin-top: 1.25rem;
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .flow__text p {
    margin-top: 0.625rem;
    font-size: 1rem;
  }
}

.flow__item.flow__item--first {
  margin-top: initial;
}

.footer {
  background-color: #333333;
}

.footer__contents {
  display: flex;
  gap: 3.3125rem;
}
@media screen and (max-width: 767px) {
  .footer__contents {
    flex-direction: column-reverse;
    align-items: center;
  }
}

.footer__logo {
  width: 100%;
  max-width: 10.3125rem;
}

.footer__logo img {
  width: 100%;
  aspect-ratio: 165/85;
  -o-object-fit: cover;
     object-fit: cover;
}

.footer__items {
  display: flex;
  flex-direction: column;
  gap: 1.375rem;
}
@media screen and (max-width: 767px) {
  .footer__items {
    align-items: center;
    gap: 2.5rem;
  }
}

.footer__link {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
}

.footer small {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.3125rem;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .footer small {
    margin-top: 1.125rem;
    font-size: 0.625rem;
  }
}

.header {
  height: 6.0625rem;
  background-color: #fff;
  display: none;
}
@media screen and (max-width: 767px) {
  .header {
    height: 3.875rem;
    display: block;
  }
}

.header.is-show {
  display: block;
}

.header__inner {
  height: inherit;
  padding: 0 5.625rem;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .header__inner {
    padding: 0 1.25rem;
  }
}

.header__name {
  width: 100%;
  height: inherit;
  max-width: 5.625rem;
}

.header__logo {
  width: 100%;
  display: flex;
  align-items: center;
  height: inherit;
}

.header__logo img {
  width: 100%;
  aspect-ratio: 129/67;
  -o-object-fit: cover;
     object-fit: cover;
}

.header__nav {
  height: inherit;
}

.header__items {
  display: flex;
  height: inherit;
}

.header__item {
  height: inherit;
}

.header__link {
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  height: inherit;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1;
  color: #848484;
  text-transform: uppercase;
}

.hamburger {
  position: fixed;
  z-index: 9999;
  top: 1.5625rem;
  right: 1.25rem;
  width: 1.9375rem;
  height: 0.9375rem;
  cursor: pointer;
}

.hamburger.is-open {
  top: 1.1875rem;
  right: 1.25rem;
}

.hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 0.0625rem;
  background-color: #636363;
  transition: all 0.4s ease;
}

.hamburger span:nth-child(1) {
  top: 0rem;
}

.hamburger span:nth-child(2) {
  top: 0.4375rem;
  transition: 0.4s opacity ease;
}

.hamburger span:nth-child(3) {
  top: 0.875rem;
}

.hamburger.is-open span:nth-child(1) {
  top: 0.28125rem;
  transform: rotate(-35deg);
}

.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
  top: 0.28125rem;
  transform: rotate(35deg);
}

.drawer-menu {
  position: fixed;
  z-index: 6000;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  background-color: #F8F5EF;
  overflow-y: scroll;
  scrollbar-width: none;
  display: none;
}

.drawer-menu__logo {
  width: 100%;
  max-width: 6.875rem;
  padding: 0.5rem 0 0 1.25rem;
}

.drawer-menu__logo a {
  width: 100%;
  display: flex;
  align-items: center;
  height: inherit;
}

.drawer-menu::-webkit-scrollbar {
  display: none;
}

.drawer-menu__inner {
  padding: 5.625rem 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.drawer-menu__items {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.drawer-menu__item {
  padding: 2.1875rem 0 2.1875rem 1.4375rem;
  position: relative;
}

.drawer-menu__item::before {
  position: absolute;
  content: "";
  background-color: #BE6D57;
  top: 53%;
  left: 0;
  width: 0.4375rem;
  height: 1px;
  border-radius: 50%;
}

.drawer-menu__link {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #333333;
  text-transform: uppercase;
}

.howto__inner {
  display: flex;
  position: relative;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .howto__inner {
    flex-direction: column;
  }
}

.howto__inner::before {
  position: absolute;
  content: "";
  background-color: #878787;
  height: 1px;
  width: 80%;
  top: 65%;
  left: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .howto__inner::before {
    top: 49%;
    left: 0;
  }
}

.howto__text-item {
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .howto__text-item {
    margin-top: initial;
  }
}

.howto__title h2 {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 3.3125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #B2ACA1;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .howto__title h2 {
    font-size: 3.125rem;
  }
}

.howto__text p {
  margin-top: 3.875rem;
  font-family: "Zen Old Mincho", serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.8;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .howto__text p {
    margin-top: 3.125rem;
    font-size: 0.9375rem;
  }
}

.howto__img-item {
  position: relative;
  width: 55%;
}
@media screen and (max-width: 767px) {
  .howto__img-item {
    margin-left: 0;
    width: 100%;
  }
}

.howto__img--1 {
  position: absolute;
  left: 0;
  bottom: -15%;
  width: 100%;
  max-width: 22.6875rem;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .howto__img--1 {
    max-width: 14.375rem;
    margin: 0 auto;
  }
}

.howto__img--2 {
  position: relative;
  left: 45%;
  top: 0;
  width: 100%;
  max-width: 21.25rem;
  z-index: 5;
}
@media screen and (max-width: 767px) {
  .howto__img--2 {
    top: -10%;
    max-width: 13.5rem;
    margin: 1.25rem auto 0;
    left: 20%;
    z-index: 1;
  }
}

/* 変数は rail に直接セット。未定義でも走るように var(, fallback) を付ける */
.member__wrapper {
  overflow: hidden;
  padding-inline: var(--pad, 0px);
  margin-top: 5rem;
  contain: layout paint;
}

.member__rail {
  --gap: 64px;
  --pad: 0px;
  transform: translate3d(0, 0, 0);
  will-change: transform;
  display: inline-flex;
  white-space: nowrap;
}

/* アニメは「準備完了になったら」付与（.is-ready） */
.member__rail.is-ready {
  animation: member-rail-scroll var(--speed, 20s) linear infinite;
}

.member__wrapper:hover .member__rail { /* PCホバーで一時停止はJS側で制御でもOK */
  /* ここは空でもOK。停止はJSで */
}

@media (max-width: 767px) {
  .member__rail {
    --gap: 16px;
    --pad: 8px;
    --speed-px: 30;
  }
}
.member__track {
  display: inline-flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--gap, 64px);
}

.member__item {
  flex: 0 0 auto;
  text-align: center;
  width: clamp(200px, 22vw, 368px);
}

.member__item > img {
  width: 100%;
  display: block;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.member__item--even {
  margin-top: 62px;
}

@media (max-width: 767px) {
  .member__rail {
    --gap: 16px;
    --pad: 8px;
    --speed: 15s;
  }
  .member__item {
    width: calc((100vw - var(--pad, 0px) * 2 - var(--gap, 16px)) / 2);
  }
  .member__item--even {
    margin-top: 42px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .member__wrapper:hover .member__rail.is-ready {
    animation-play-state: paused;
  }
}
@media (prefers-reduced-motion: reduce) {
  .member__rail.is-ready {
    animation: none;
  }
}
.member__position {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1;
  color: #BE6D57;
  text-transform: uppercase;
  margin-top: 1.25rem;
}

.member__name {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1;
  color: #333333;
  margin-top: 0.5rem;
}

.menu {
  background-color: #F8F5EF;
}

.menu__items {
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 7.5rem;
       column-gap: 7.5rem;
  row-gap: 5rem;
}
@media screen and (max-width: 767px) {
  .menu__items {
    display: flex;
    flex-direction: column;
    margin-top: 3.75rem;
    gap: 3.75rem;
    align-items: center;
  }
}

.menu__item {
  width: 100%;
  max-width: 35.625rem;
  height: 100%;
}

.menu__img {
  width: 100%;
  max-width: 35.625rem;
}

.menu__img img {
  width: 100%;
  aspect-ratio: 570/300;
  -o-object-fit: cover;
     object-fit: cover;
}

.menu__sub-title-body {
  margin-top: 1.25rem;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .menu__sub-title-body {
    margin-top: 0.875rem;
  }
}

.menu__sub-title,
.menu__price {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 1.5625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #333333;
  line-height: 1;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .menu__sub-title,
  .menu__price {
    font-size: 1rem;
  }
}

.menu__text-body {
  margin-top: 1.875rem;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .menu__text-body {
    margin-top: 1.219375rem;
  }
}

.menu__text {
  position: relative;
  font-family: "Zen Old Mincho", serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.7;
  color: #333333;
  padding-left: 0.8125rem;
}
@media screen and (max-width: 767px) {
  .menu__text {
    font-size: 0.9375rem;
  }
}

.menu__text::before {
  position: absolute;
  content: "";
  background-color: #333333;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.34375rem;
  height: 1px;
}

.menu__sub-text {
  margin-top: 0.875rem;
  font-family: "Zen Old Mincho", serif;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.5;
  color: #333333;
}

.menu__text-small {
  padding-left: 0.9375rem;
  font-family: "Zen Old Mincho", serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.7;
  color: #333333;
}

.menu__button {
  margin-top: 4.375rem;
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .menu__button {
    margin-top: 3.125rem;
  }
}

/* ヘッダー高さ（PC/SPで可変ならメディアクエリで切替） */
:root {
  --header-h: 150px;
}

@media (max-width: 768px) {
  :root {
    --header-h: 100px;
  }
}
/* ハッシュ遷移/scrollIntoViewの基準位置を上にずらす */
html {
  scroll-padding-top: var(--header-h);
  scroll-behavior: auto;
}

.message__inner {
  display: flex;
  justify-content: center;
  gap: 6.875rem;
}
@media screen and (max-width: 767px) {
  .message__inner {
    flex-direction: column;
    align-items: center;
    gap: 3.8125rem;
  }
}

.message__title h2 {
  margin-top: 2.0625rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .message__title h2 {
    margin-top: initial;
    text-align: center;
  }
}

.message__title h2::before {
  position: absolute;
  content: "";
  background-image: url(../images/about/about-treat1.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  top: -3%;
  left: -10%;
  width: 17.5625rem;
  height: 6.6875rem;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .message__title h2::before {
    top: -60%;
    left: 50%;
    transform: translateX(-50%);
    width: 12.375rem;
    height: 5.625rem;
  }
}

.message__text {
  font-family: "Zen Old Mincho", serif;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 2;
  color: #333333;
  margin-top: 3.25rem;
}
@media screen and (max-width: 767px) {
  .message__text {
    font-size: 0.875rem;
  }
}

.message__text-top {
  margin-top: initial;
}

@media screen and (max-width: 767px) {
  .mv {
    margin-top: 4.8125rem;
  }
}

.mv__inner {
  position: relative;
  display: flex;
  padding-left: 5.625rem;
}
@media screen and (max-width: 767px) {
  .mv__inner {
    display: block;
    padding-left: 1.25rem;
  }
}

.mv__menu {
  display: flex;
  flex-direction: column;
  gap: 7rem;
  align-items: center;
}

.mv__items {
  display: flex;
  flex-direction: column;
  gap: 3.125rem;
}

.mv__link {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 1;
  color: #333333;
  position: relative;
  padding-left: 1.875rem;
  text-transform: uppercase;
}

.mv__link::before {
  position: absolute;
  content: "";
  background-color: #BE6D57;
  width: 0.625rem;
  height: 0.125rem;
  border-radius: 50%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.mv__slider {
  width: 70.9%;
  max-width: 63.8125rem;
  height: 100%;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .mv__slider {
    width: 100%;
    max-width: 47.9375rem;
  }
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .swiper-slide img {
    -o-object-fit: contain;
       object-fit: contain;
  }
}

.swiper-scrollbar {
  width: 160px !important;
  height: 4px;
  background-color: #e6e6e6;
  border-radius: 9999px;
  margin: 0 auto !important;
  position: relative !important;
  bottom: 1rem !important;
}

.swiper-scrollbar-drag {
  width: 40px !important; /* ←強制的に固定 */
  background-color: #828282;
  border-radius: 9999px;
}

.scroll {
  position: absolute;
  left: 3%;
  bottom: 14%;
  display: flex;
  align-items: center;
  writing-mode: vertical-rl;
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #878787;
  gap: 0.75rem;
}
@media screen and (max-width: 767px) {
  .scroll {
    font-size: 0.625rem;
    gap: 0.125rem;
    bottom: 12%;
    left: 1%;
  }
}

.scroll::before {
  content: "";
  position: relative;
  display: inline-block;
  width: 1px;
  height: 11.375rem;
  left: -0.9375rem;
  bottom: -8.75rem;
  background-color: #878787;
}
@media screen and (max-width: 767px) {
  .scroll::before {
    height: 6.3125rem;
    left: -0.4375rem;
    bottom: -4.8125rem;
  }
}

.scroll::after {
  content: "";
  position: absolute;
  bottom: -5.125rem;
  left: -0.25rem;
  width: 0.75rem;
  height: 1px;
  background-color: #878787;
  transform: rotate(-45deg);
  transform-origin: left top;
}
@media screen and (max-width: 767px) {
  .scroll::after {
    bottom: -2.875rem;
    width: 0.35rem;
    left: 0rem;
  }
}

.price {
  padding-top: 5rem;
  padding-bottom: 6.25rem;
  background-color: #F8F0EF;
}
@media screen and (max-width: 767px) {
  .price {
    padding-top: 4.375rem;
    padding-bottom: 3.75rem;
  }
}

.price__title h2 {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 4.375rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #848484;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .price__title h2 {
    font-size: perm(50);
  }
}

.price__items {
  margin-top: 4.375rem;
  display: flex;
  gap: 3.75rem;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .price__items {
    flex-direction: column;
    gap: 3.1875rem;
  }
}

.price__item {
  padding: 3.75rem 5.875rem;
  border: 1px solid #848484;
  position: relative;
}
@media screen and (max-width: 767px) {
  .price__item {
    padding: 2.5rem 1.6875rem;
  }
}

.price__item::before {
  position: absolute;
  content: "";
  background-image: url(../images/rental/price-treat.svg);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 3.25rem;
  height: 3.25rem;
  top: -1.125rem;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .price__item::before {
    width: 2.5rem;
    height: 2.1875rem;
  }
}

.price__item-title h3 {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 1.5625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #BE6D57;
  text-transform: uppercase;
  text-align: center;
}

.price__item-title h3 span {
  display: block;
  font-family: "Zen Old Mincho", serif;
  font-size: 1rem;
}

.price__item-text-body {
  margin-top: 3.125rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .price__item-text-body {
    margin-top: 2.5rem;
  }
}

.price__item-text {
  display: flex;
  justify-content: space-between;
}

.price__item-time {
  font-family: "Zen Old Mincho", serif;
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.8;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .price__item-time {
    font-size: 1rem;
  }
}

.price__item-time span {
  font-size: 0.875rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .price__item-time span {
    font-size: 0.8125rem;
  }
}

.price__item-price {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .price__item-price {
    font-size: 1.125rem;
  }
}

.price__item-price span {
  display: block;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .price__item-price span {
    font-size: 0.8125rem;
  }
}

.rental-about__inner {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 84.375rem;
}
@media screen and (max-width: 767px) {
  .rental-about__inner {
    flex-direction: column-reverse;
    padding: 0 15px;
    gap: 3.75rem;
  }
}

.rental-about__items {
  position: relative;
  width: 50%;
  aspect-ratio: 1/1;
  padding: 10px;
}
@media screen and (max-width: 767px) {
  .rental-about__items {
    width: 100%;
    padding: 0;
  }
}

.rental-about__item.item-1 {
  position: absolute;
  width: 60%;
  top: 0;
  left: 0;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .rental-about__item.item-1 {
    width: 45%;
  }
}

.rental-about__item.item-2 {
  position: absolute;
  width: 60%;
  top: 20%;
  left: 65%;
}
@media screen and (max-width: 767px) {
  .rental-about__item.item-2 {
    width: 45%;
    left: 53%;
  }
}

.rental-about__item.item-3 {
  position: absolute;
  width: 60%;
  bottom: -15%;
  left: 40%;
}
@media screen and (max-width: 767px) {
  .rental-about__item.item-3 {
    width: 45%;
    bottom: 8%;
  }
}

.rental-about__items::before {
  content: "";
  position: absolute;
  background-color: #FFF1EF;
  width: 21.5625rem;
  height: 21.5625rem;
  top: 50%;
  left: 30%;
}
@media screen and (max-width: 767px) {
  .rental-about__items::before {
    width: 8.9375rem;
    height: 8.9375rem;
    left: 50%;
    transform: translateX(-50%);
    top: 30%;
  }
}

.rental-about__text-body {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .rental-about__text-body {
    align-items: flex-start;
    justify-content: center;
  }
}

.rental-about__title h2 {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 3.4375rem;
  font-weight: 700;
  color: #BE6D57;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .rental-about__title h2 {
    font-size: 2.125rem;
  }
}

.rental-about__text {
  margin-top: 3.75rem;
}
@media screen and (max-width: 767px) {
  .rental-about__text {
    margin-top: 3.125rem;
  }
}

.rental-about__text p {
  font-size: 1rem;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.8;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .rental-about__text p {
    font-size: 0.875rem;
  }
}

.rental-about__text-under {
  margin-top: 2.6875rem;
}
@media screen and (max-width: 767px) {
  .rental-about__text-under {
    margin-top: 1.875rem;
  }
}

.sub-page-mv {
  height: 35.1875rem;
}
@media screen and (max-width: 767px) {
  .sub-page-mv {
    height: 18.3125rem;
  }
}

.sub-page-mv__inner {
  display: flex;
  justify-content: flex-end;
  position: relative;
}
@media screen and (max-width: 767px) {
  .sub-page-mv__inner {
    display: block;
    padding-left: 1.25rem;
  }
}

.sub-page-mv__title h1 {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 5.1875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  color: #B2ACA1;
  text-transform: uppercase;
  position: absolute;
  left: 6.25%;
  top: 8.875rem;
}
@media screen and (max-width: 767px) {
  .sub-page-mv__title h1 {
    top: 3.25rem;
    left: 0.9375rem;
    font-size: 2.5rem;
  }
}

.sub-page-mv__title.sub-page-mv__title--rental h1 {
  text-shadow: 0 0 1.1875rem #fff;
}

.sub-page-mv__movie {
  width: 100%;
  max-width: 65.4375rem;
  height: 35.1875rem;
}
@media screen and (max-width: 767px) {
  .sub-page-mv__movie {
    height: 18.3125rem;
  }
}

.sub-page-mv__movie video {
  width: 100%;
  height: 35.1875rem;
}
@media screen and (max-width: 767px) {
  .sub-page-mv__movie video {
    height: 18.3125rem;
  }
}

.sub-page-mv__img {
  width: 100%;
  max-width: 65.4375rem;
  height: 35.1875rem;
}
@media screen and (max-width: 767px) {
  .sub-page-mv__img {
    height: 18.3125rem;
  }
}

.sub-page-mv__img img {
  width: 100%;
  height: 35.1875rem;
}
@media screen and (max-width: 767px) {
  .sub-page-mv__img img {
    height: 18.3125rem;
  }
}

@media screen and (max-width: 767px) {
  .work__inner {
    background-color: #F8F0EF;
  }
}

.work__title {
  position: relative;
  top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .work__title {
    top: 5rem;
  }
}

.work__contents {
  padding: 6.25rem 8.4375rem 4.125rem 5.625rem;
  background-color: #F8F0EF;
  width: 100%;
  max-width: 74.6875rem;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 3.125rem;
}
@media screen and (max-width: 767px) {
  .work__contents {
    padding: 8.75rem 0.9375rem 5rem 0.9375rem;
  }
}

.work__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.125rem;
}
@media screen and (max-width: 767px) {
  .work__items {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85625rem;
  }
}

.work__button {
  display: flex;
  justify-content: flex-end;
}

@media screen and (max-width: 767px) {
  .md-none {
    display: none;
  }
}

.md-show {
  display: none;
}
@media screen and (max-width: 767px) {
  .md-show {
    display: block;
  }
}
/*# sourceMappingURL=style.css.map */
