@charset "UTF-8";
html {
  font-size: 100%;
}
@media (max-width: 1120px) {
  html {
    font-size: 1.4285714286vw;
  }
}
@media screen and (max-width: 767.98px) {
  html {
    font-size: 100%;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

body {
  font-family: "A1MinchoStd", "A1明朝", "A1 Mincho", serif;
  color: #3E3A39;
}

a,
button {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/*****************************
* A Modern CSS Reset (https://github.com/hankchizljaw/modern-css-reset)
* 上記に、ul要素,ol要素,a要素への記述追加
*****************************/
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
li {
  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;
  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]) {
  text-decoration-skip-ink: auto;
}

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

/* 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;
}

button {
  border: none;
  padding: 0;
  background-color: transparent;
  background-color: initial;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
}
.l-inner {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  max-width: 1120px;
  padding-right: 1.5625rem;
  padding-left: 1.5625rem;
}
@media screen and (max-width: 767.98px) {
  .l-inner {
    padding-right: 0.9375rem;
    padding-left: 0.9375rem;
  }
}

.c-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.8125rem;
  width: 18.75rem;
  height: 3.75rem;
  background: #A31B29;
  border: 0.0625rem solid #A31B29;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.7222222222;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767.98px) {
  .c-btn {
    font-size: 1rem;
  }
}
.c-btn::after {
  content: "";
  display: block;
  width: 1.0625rem;
  height: 1.0625rem;
  -webkit-mask-image: url(../images/icon_arrow.svg);
          mask-image: url(../images/icon_arrow.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background: #fff;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
.c-btn:hover {
  opacity: 1;
  background: #fff;
  color: #A31B29;
}
.c-btn:hover::after {
  background: #A31B29;
}
@media screen and (max-width: 767.98px) {
  .c-btn:hover {
    background: #A31B29;
    color: #fff;
  }
  .c-btn:hover::after {
    background: #fff;
  }
}

.c-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.9375rem;
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.12em;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  width: 100%;
}
.c-title::before {
  content: "";
  display: block;
  width: 4.875rem;
  height: 4.125rem;
  background: url(../images/title_left.svg) no-repeat center/contain;
}
.c-title::after {
  content: "";
  display: block;
  width: 4.75rem;
  height: 4.125rem;
  background: url(../images/title_right.svg) no-repeat center/contain;
}

.p-commitment-detail {
  background: #1E313B;
  padding: 4.375rem 0 5rem;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
@media screen and (max-width: 767.98px) {
  .p-commitment-detail {
    padding: 3.125rem 0 3.75rem;
  }
}

.p-commitment-detail__wrap {
  display: grid;
  grid-template-columns: 11.625rem auto;
  gap: 1rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767.98px) {
  .p-commitment-detail__wrap {
    grid-template-columns: auto;
  }
}
.p-commitment-detail__wrap:nth-child(2) {
  margin-top: 1.8125rem;
}
@media screen and (max-width: 767.98px) {
  .p-commitment-detail__wrap:nth-child(2) {
    margin-top: 1.375rem;
  }
}
.p-commitment-detail__wrap:nth-child(3) {
  margin-top: 1.375rem;
}

.p-commitment-detail__term {
  background: #fff;
  color: #1E313B;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 2.875rem;
}

.p-commitment-detail__desc {
  color: #fff;
  font-size: max(0.9375rem, 13px);
  font-weight: 700;
  line-height: 1.6666666667;
  letter-spacing: 0.1em;
}

.p-commitment-detail__floors {
  margin: 0;
}

.p-commitment-detail__floor {
  text-indent: -2.5em;
  padding-left: 2.5em;
}

.p-commitment-detail__list {
  text-indent: -0.5em;
  padding-left: 0.5em;
}

@media screen and (max-width: 767.98px) {
  .p-commitment-item {
    width: 18.75rem;
    margin-inline: auto;
  }
}

.p-commitment-item__img {
  width: 100%;
}
.p-commitment-item__img img {
  width: 100%;
}

.p-commitment-item__title {
  background: url(../images/title_bg.svg) no-repeat center/contain;
  width: 90%;
  aspect-ratio: 219/26;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.0625rem;
  line-height: 1.4705882353;
  letter-spacing: 0.1em;
  color: #fff;
  margin: 1.25rem auto 0;
}
@media screen and (max-width: 767.98px) {
  .p-commitment-item__title {
    width: 100%;
  }
}

.p-commitment-item__text {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.6666666667;
  letter-spacing: 0.05em;
  margin: 1.125rem auto 0;
  width: 90%;
  text-align: justify;
}
@media screen and (max-width: 767.98px) {
  .p-commitment-item__text {
    width: 100%;
  }
}

.p-commitment__bg {
  background: url(../images/bg_img.webp) no-repeat center center/cover;
  position: relative;
  padding: 4.8125rem 0 0;
}
@media screen and (max-width: 767.98px) {
  .p-commitment__bg {
    padding-top: 3.125rem;
  }
}
.p-commitment__bg::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(201, 188, 156, .6);
}

.p-commitment__inner {
  position: relative;
  z-index: 1;
}

.p-commitment__lists {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: min(5.6737588652vw, 64px);
}
@media screen and (max-width: 767.98px) {
  .p-commitment__lists {
    grid-template-columns: auto;
    gap: 1.875rem;
  }
}

.p-commitment__images {
  margin-top: 4.375rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem 0.6875rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767.98px) {
  .p-commitment__images {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.9375rem 0.3125rem;
    margin-top: 3.125rem;
  }
}

.p-commitment__img figcaption {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.6666666667;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 0.3125rem;
}
.p-commitment__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 368/268;
}

.p-commitment__detail {
  position: relative;
  z-index: 1;
  margin-top: -1px;
}

.p-commitment__bottom {
  background: url(../images/bg_img.webp) no-repeat center center/cover;
  padding: 5.5rem 0 3.125rem;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767.98px) {
  .p-commitment__bottom {
    padding: 3.125rem 0;
  }
}
.p-commitment__bottom::before {
  content: "";
  display: block;
  width: 50vw;
  height: 1.6875rem;
  background: #898989;
  position: absolute;
  bottom: 0;
  left: 0;
}
.p-commitment__bottom::after {
  content: "";
  display: block;
  width: 50vw;
  height: 1.6875rem;
  background: #A31B29;
  position: absolute;
  bottom: 0;
  right: 0;
}

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

.p-commitment__plan {
  margin-top: 3.625rem;
}

.p-commitment__logo {
  margin: 3.125rem auto 0;
  width: 10.1875rem;
}
.p-commitment__logo img {
  width: 100%;
}

.p-floor {
  width: 100%;
}

.p-floor__title {
  margin-left: 1.25rem;
  width: 10.4375rem;
}
@media screen and (max-width: 767.98px) {
  .p-floor__title {
    margin-inline: auto;
  }
}
.p-floor__title img {
  width: 100%;
}

.p-floor__items {
  margin-top: 2.25rem;
}

.p-floor__item:not(:first-child) {
  margin-top: 1.25rem;
}

.p-floor__num {
  width: 9rem;
}

.p-floor__img {
  margin-top: 0.625rem;
}
.p-floor__img img {
  width: 100%;
}

.p-introduction01 {
  padding: 6.75rem 0 4.875rem;
  position: relative;
}
.p-introduction01::before {
  content: "";
  display: block;
  width: min(55.4078014184vw, 797px);
  height: min(54.9645390071vw, 783px);
  -webkit-mask-image: url(../images/bg_deco.svg);
          mask-image: url(../images/bg_deco.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background: rgba(163, 27, 41, .1);
  position: absolute;
  top: -2.625rem;
  right: -12.875rem;
  z-index: 1;
}
.p-introduction01::after {
  content: "";
  display: block;
  width: min(55.4078014184vw, 797px);
  height: min(54.9645390071vw, 783px);
  background: url(../images/bg_deco.svg) no-repeat center/contain;
  position: absolute;
  bottom: 2.3125rem;
  left: -16.875rem;
  z-index: 1;
}
@media screen and (max-width: 767.98px) {
  .p-introduction01 {
    padding: 5rem 0 3.125rem;
  }
  .p-introduction01::before {
    right: -6.25rem;
  }
  .p-introduction01::after {
    left: -6.25rem;
  }
}

.p-introduction01__inner {
  max-width: 1440px;
  margin-inline: auto;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767.98px) {
  .p-introduction01__inner {
    padding: 0 0.9375rem;
  }
}

.p-introduction01__head {
  margin-left: auto;
  max-width: 78.4375rem;
  padding-left: 1.5625rem;
}
@media screen and (max-width: 767.98px) {
  .p-introduction01__head {
    max-width: 100%;
    padding: 0;
    margin-left: 0;
  }
}

.p-introduction01__en {
  width: 12.875rem;
}
@media screen and (max-width: 767.98px) {
  .p-introduction01__en {
    width: 11.625rem;
  }
}

.p-introduction01__title {
  margin-top: 1.1875rem;
  font-size: 1.75rem;
  line-height: 1.5384615385;
  letter-spacing: 0.1em;
  color: #231815;
}
@media screen and (max-width: 767.98px) {
  .p-introduction01__title {
    font-size: 1.125rem;
  }
}

.p-introduction01__wrap {
  margin-top: 2.3125rem;
  margin-left: auto;
  max-width: 78.4375rem;
  padding-left: 1.5625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 0.875rem;
}
@media screen and (max-width: 767.98px) {
  .p-introduction01__wrap {
    padding-left: 0;
    max-width: 100%;
    margin-left: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-introduction01__body {
  width: clamp(310px, 27.4822695035vw, 395px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767.98px) {
  .p-introduction01__body {
    width: 100%;
  }
}

.p-introduction01__text {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.6666666667;
  letter-spacing: 0.1em;
  color: #231815;
  text-align: justify;
}
.p-introduction01__text + p {
  margin-top: 1.5em;
}

.p-introduction01__img {
  width: 100%;
  margin-top: 2rem;
}
.p-introduction01__img img {
  width: 100%;
  aspect-ratio: 310/197;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-introduction01__img02 {
  height: 100%;
  margin-top: auto;
}
.p-introduction01__img02 img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 640/452;
}

.p-introduction01__link {
  margin-top: 4.0625rem;
  text-align: center;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767.98px) {
  .p-introduction01__link {
    margin-top: 2.5rem;
  }
}

.p-introduction02 {
  padding: 5.0625rem 0 4.1875rem;
  background: url(../images/name_bg.webp) no-repeat center/cover;
  position: relative;
}
.p-introduction02::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 27, 61, .2);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.p-introduction02::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(../images/name_bg_before.webp) no-repeat center 30%/cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
@media screen and (max-width: 767.98px) {
  .p-introduction02::after {
    background-position: 80% top;
  }
}

.p-introduction02__inner {
  position: relative;
  z-index: 3;
}

.p-introduction02__en {
  width: 12.5rem;
}
@media screen and (max-width: 767.98px) {
  .p-introduction02__en {
    width: 11.25rem;
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="5" /><feOffset dx="2" dy="2" result="offsetblur" /><feFlood flood-color="rgba(0,0,0,0.7)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
    -webkit-filter: drop-shadow(1px 1px 5px rgba(0, 0, 0, .7));
            filter: drop-shadow(1px 1px 5px rgba(0, 0, 0, .7));
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
  }
}

.p-introduction02__title {
  margin-top: 0.9375rem;
  font-size: 1.75rem;
  line-height: 1.5384615385;
  letter-spacing: 0.05em;
  color: #fff;
}
@media screen and (max-width: 767.98px) {
  .p-introduction02__title {
    font-size: 1.125rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, .7);
  }
}

.p-introduction02__body {
  margin-top: 1.875rem;
  width: clamp(368px, 34.219858156vw, 465px);
}
@media screen and (max-width: 767.98px) {
  .p-introduction02__body {
    width: 100%;
  }
}

.p-introduction02__text {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.6666666667;
  letter-spacing: 0.05em;
  color: #fff;
  text-align: justify;
}
.p-introduction02__text + p {
  margin-top: 1.5em;
}
@media screen and (max-width: 767.98px) {
  .p-introduction02__text {
    text-shadow: 1px 1px 5px rgba(0, 0, 0, .7);
  }
}

.p-introduction02__images {
  margin-top: 1.3125rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media screen and (max-width: 767.98px) {
  .p-introduction02__images {
    gap: 0.3125rem;
    margin-inline: calc(50% - 50vw);
    width: 100vw;
  }
}

.p-introduction02__img {
  width: 100%;
}
.p-introduction02__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 256/200;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-mv {
  padding: 3.9375rem 0;
  background: url(../images/mv_img.webp?v2) no-repeat center center/cover;
  position: relative;
  height: 100dvh;
  min-height: 37.5rem;
}
@media screen and (max-width: 767.98px) {
  .p-mv {
    padding: 1.25rem 0;
  }
}
.p-mv::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(35, 0, 0, .4);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.p-mv::after {
  content: "";
  display: block;
  width: min(42.5531914894vw, 480px);
  height: min(42.2872340426vw, 477px);
  background: url(../images/bg_logo.svg) no-repeat center center/cover;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
}
@media screen and (max-width: 767.98px) {
  .p-mv::after {
    width: 20.9375rem;
    height: 20.8125rem;
  }
}

.p-mv__inner {
  padding: 0 3.9375rem;
}
@media screen and (max-width: 767.98px) {
  .p-mv__inner {
    padding: 0 1.25rem;
  }
}

.p-mv__logo {
  width: 9.3085106383vw;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767.98px) {
  .p-mv__logo {
    width: 5rem;
  }
}

.p-mv__text {
  color: #fff;
  font-size: 1.875rem;
  line-height: 2.1;
  letter-spacing: 0.2em;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  white-space: nowrap;
  z-index: 2;
  margin-top: -1.125rem;
}
@media screen and (max-width: 767.98px) {
  .p-mv__text {
    font-size: 1.5rem;
    margin-top: 0;
  }
}
.p-mv__text span {
  display: block;
}
.p-mv__text span:nth-child(2) {
  margin-top: 0.1875rem;
  letter-spacing: 0.12em;
}
.p-mv__text span:nth-child(3) {
  margin-top: 0.6875rem;
}
.p-mv__text span.p-mv__indent {
  display: inline-block;
  margin-top: -0.625rem;
}

.p-plan__wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.25rem;
}
@media screen and (max-width: 767.98px) {
  .p-plan__wrap {
    grid-template-columns: auto;
  }
}

.p-plan__img {
  width: 100%;
}
.p-plan__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 384/243;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-plan__title {
  text-align: center;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.4705882353;
  letter-spacing: 0.1em;
  margin-top: 0.625rem;
}

.p-plan__content {
  margin-top: 0.625rem;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

.p-plan__term {
  background: #3E3A39;
  color: #fff;
  text-align: center;
  font-size: 0.9375rem;
  line-height: 1.7333333333;
  letter-spacing: 0.1em;
}
.p-plan__term span {
  font-size: 10px;
  display: inline-block;
}

.p-plan__desc {
  font-size: 0.9375rem;
  line-height: 1.6666666667;
  letter-spacing: 0.1em;
  margin-top: 0.3125rem;
}

.p-plan__list {
  text-indent: -1em;
  padding-left: 1em;
}

.p-plan__box {
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: 0.9375rem;
  line-height: 1.6666666667;
  letter-spacing: 0.1em;
  margin-top: 1.875rem;
}

.p-room {
  background: url(../images/bg_img.webp) no-repeat center center/cover;
  padding: 4.6875rem 0 4.0625rem;
  overflow: hidden;
  position: relative;
}
.p-room::before {
  content: "";
  display: block;
  width: min(55.4078014184vw, 797px);
  height: min(54.9645390071vw, 783px);
  -webkit-mask-image: url(../images/bg_deco.svg);
          mask-image: url(../images/bg_deco.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background: rgba(175, 23, 39, .1);
  position: absolute;
  top: 6.25rem;
  right: -12.1875rem;
  z-index: 1;
}
.p-room::after {
  content: "";
  display: block;
  width: min(55.4078014184vw, 797px);
  height: min(54.9645390071vw, 783px);
  background: url(../images/bg_deco.svg) no-repeat center/contain;
  position: absolute;
  bottom: 8.5625rem;
  left: -16.875rem;
  z-index: 1;
}
@media screen and (max-width: 767.98px) {
  .p-room {
    padding: 5rem 0 3.125rem;
  }
  .p-room::before {
    right: -6.25rem;
  }
  .p-room::after {
    left: -6.25rem;
    bottom: auto;
    top: 31.25rem;
  }
}

.p-room__inner {
  position: relative;
  z-index: 2;
}

.p-room__img {
  margin-top: 3.125rem;
  width: 100%;
}
@media screen and (max-width: 767.98px) {
  .p-room__img {
    margin-top: 1.875rem;
  }
}
.p-room__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 805/414;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-room__wrap {
  margin-top: 3.125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3.3125rem;
}
@media screen and (max-width: 767.98px) {
  .p-room__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.875rem;
    margin-top: 1.875rem;
  }
}

.p-room__item {
  margin-top: 3.5rem;
  width: clamp(257px, 25.2659574468vw, 325px);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767.98px) {
  .p-room__item {
    margin-top: 0;
    width: 100%;
  }
}

.p-room__text {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.6666666667;
  letter-spacing: 0.05em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: justify;
}
.p-room__text + .p-room__text {
  margin-top: 1.5em;
}

.p-welcome-head {
  text-align: center;
  color: #3E3A39;
  position: relative;
  z-index: 2;
}

.p-welcome-head__date {
  display: block;
  width: 12.5rem;
  margin: 2.5rem auto 0;
}
@media screen and (max-width: 767.98px) {
  .p-welcome-head__date {
    width: 9.375rem;
    margin: 1.875rem auto 0;
  }
}
.p-welcome-head__date img {
  width: 100%;
}

.p-welcome-head__text {
  margin-top: 1rem;
  font-size: 2.375rem;
  line-height: 1.9736842105;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767.98px) {
  .p-welcome-head__text {
    margin-top: 1.25rem;
    font-size: 1.75rem;
  }
}
.p-welcome-head__text span {
  color: #A31B29;
}
.p-welcome-head__text ruby rt {
  font-size: 1.125rem;
  color: #3E3A39;
  text-align: center;
  margin-bottom: 0.25rem;
  margin-left: 0.25rem;
}
@media screen and (max-width: 767.98px) {
  .p-welcome-head__text ruby rt {
    font-size: 0.9375rem;
  }
}

.p-welcome {
  padding: 1.6875rem 0 0;
  position: relative;
  background: url(../images/bg_img.webp) no-repeat center center/cover;
  overflow: hidden;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.p-welcome::before {
  content: "";
  display: block;
  width: 50vw;
  height: 1.6875rem;
  background: #898989;
  position: absolute;
  top: 0;
  left: 0;
}
.p-welcome::after {
  content: "";
  display: block;
  width: 50vw;
  height: 1.6875rem;
  background: #A31B29;
  position: absolute;
  top: 0;
  right: 0;
}

.p-welcome__top {
  position: relative;
  padding-top: 3.75rem;
}
.p-welcome__top::after {
  content: "";
  display: block;
  width: min(52.2163120567vw, 589px);
  height: min(51.8617021277vw, 585px);
  -webkit-mask-image: url(../images/bg_logo.svg);
          mask-image: url(../images/bg_logo.svg);
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center center;
          mask-position: center center;
  background: #C9C6A6;
  position: absolute;
  top: 1.125rem;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  z-index: 1;
}
@media screen and (max-width: 767.98px) {
  .p-welcome__top::after {
    width: 20.9375rem;
    height: 20.8125rem;
  }
}

.p-welcome__images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.25rem;
  margin-top: 3.125rem;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767.98px) {
  .p-welcome__images {
    grid-template-columns: auto;
    margin-top: 1.875rem;
  }
}

.p-welcome__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 375/253;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 767.98px) {
  .u-desktop {
    display: none;
  }
}

.u-mobile {
  display: none;
}
@media screen and (max-width: 767.98px) {
  .u-mobile {
    display: block;
  }
}
/*# sourceMappingURL=styles.css.map */
