.p-top {
  position: relative;
}
.p-top-mv {
  position: relative;
  overflow: hidden;
  color: var(--color-white);
}
.p-top-mv__bg {
  position: absolute;
  inset: 0;
}
.p-top-mv__bg-video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  opacity: 0;
}
.p-top-mv__bg-video.is-playing {
  opacity: 1;
}
.p-top-mv__bg-video-player {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: 200%;
  width: max(150vw, 200vh);
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.p-top-mv__bg-video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.p-top-mv__bg-video:has(video) {
  opacity: 1;
}
.p-top-mv__bg-image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.p-top-mv__bg-image picture, .p-top-mv__bg-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.p-top-mv__bg::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.2;
  z-index: 2;
}
.p-top-mv__inner {
  position: relative;
  z-index: 3;
  margin: 0 auto;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
.p-top-mv__logo {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-top-mv__title {
  line-height: var(--line-height-en-title);
  letter-spacing: 0;
  text-transform: uppercase;
}
.p-top-mv__title i {
  font-style: normal;
}
.p-top-mv__subtitle {
  line-height: var(--line-height-ja-title);
  letter-spacing: 0;
  font-size: var(--font-size-ja-title);
}
.p-top-mv__button-title {
  text-transform: uppercase;
}
.p-top-mv__feature-list {
  width: 100%;
}
.p-top-mv__feature-item {
  position: relative;
}
.p-top-mv__feature-icon {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-top-mv__feature-icon img {
  width: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-top-mv__feature-title {
  line-height: 1.05;
  text-transform: uppercase;
}
.p-top-mv__feature-subtitle {
  line-height: var(--line-height-ja-title);
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .p-top-mv {
    padding: 111px 0 236px;
    padding: max(8.67vw, 111px) 0 max(16.87vw, 236px);
  }
  .p-top-mv__title {
    margin-top: 58px;
    font-size: min(114px, 12.66vw);
  }
  .p-top-mv__subtitle {
    margin-top: 18px;
  }
  .p-top-mv__button {
    margin-top: 31px;
    --button-padding-x: 40px;
    --button-height: 63px;
    --button-gap: 20px;
    --button-min-width: 703px;
    --button-shadow-blur: 40px;
    --button-shadow-opacity: 0.3;
  }
  .p-top-mv__button .c-button__text {
    margin: 0 auto 0 0;
  }
  .p-top-mv__button-title {
    font-size: 17px;
  }
  .p-top-mv__button-subtitle {
    margin-left: 34px;
    font-size: 14px;
    padding-right: 52px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .p-top-mv__button-subtitle::before {
    content: "";
    display: inline-block;
    height: 35px;
    width: 1px;
    border-left: 1px solid;
    opacity: 0.1;
    margin-right: 34px;
  }
  .p-top-mv__feature-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    max-width: 840px;
    margin-top: 46px;
  }
  .p-top-mv__feature-item {
    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-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    padding-top: 1px;
  }
  .p-top-mv__feature-icon::after {
    display: block;
    content: "";
    width: 104px;
    height: 1px;
    margin: 16px 0 15px;
    background-image: var(--border-dotted-white);
  }
  .p-top-mv__feature-title {
    font-size: 14px;
  }
  .p-top-mv__feature-subtitle {
    margin-top: 12px;
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .p-top-mv {
    padding: 100px 0 31px;
  }
  .p-top-mv__bg-video-player {
    width: 150vw;
  }
  .p-top-mv__logo {
    width: 93px;
  }
  .p-top-mv__content {
    width: 100%;
  }
  .p-top-mv__title {
    margin-top: 30px;
    font-size: min(85px, 21.79vw);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    margin-left: -3%;
    margin-right: -5%;
  }
  .p-top-mv__title i {
    margin-left: -0.03em;
  }
  .p-top-mv__title .line:nth-child(2) i {
    margin-left: 0.05em;
  }
  .p-top-mv__subtitle {
    margin-top: 14px;
    line-height: 1.3;
  }
  .p-top-mv__button {
    margin: 32px auto 0;
    width: 100%;
    max-width: 292px;
    text-align: left;
    --button-width: 100%;
    --button-height: 43px;
    --button-padding-x: min(4.6vw, 18px);
    --button-height: 66px;
    --button-gap: min(2.5vw, 10px);
  }
  .p-top-mv__button .c-button__text {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0%;
            flex: 1 1 0%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .p-top-mv__button-title {
    font-size: 15px;
    line-height: 1.1;
    width: 53px;
  }
  .p-top-mv__button-subtitle {
    font-size: 12px;
    line-height: 1.3;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0%;
            flex: 1 1 0%;
  }
  .p-top-mv__button-subtitle::before {
    content: "";
    display: inline-block;
    height: 35px;
    width: 1px;
    border-left: 1px solid;
    opacity: 0.1;
    margin-right: 12px;
  }
  .p-top-mv__feature-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    margin: 82px auto 0;
    width: 78.85%;
    max-width: 276px;
  }
  .p-top-mv__feature-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    text-align: left;
    gap: 20px;
    padding: 20px 0 20px 9.4%;
  }
  .p-top-mv__feature-item::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 1px;
    background-image: var(--border-dotted-white);
  }
  .p-top-mv__feature-item:last-child::after {
    display: none;
  }
  .p-top-mv__feature-icon {
    width: 40px;
  }
  .p-top-mv__feature-title {
    font-size: 15px;
  }
  .p-top-mv__feature-subtitle {
    margin-top: 8px;
    font-size: 14px;
  }
}
.p-top-experiences {
  position: relative;
  overflow: hidden;
}
.p-top-experiences__head {
  margin: 0 auto;
}
.p-top-experiences__subtitle {
  color: var(--color-middle-red);
  font-size: var(--font-size-en-subtitle);
  line-height: var(--line-height-en-subtitle);
}
.p-top-experiences__title {
  font-size: var(--font-size-en-title);
  line-height: var(--line-height-en-title);
  letter-spacing: var(--letter-spacing-en-title);
  text-transform: uppercase;
  color: var(--color-red);
}
.p-top-experiences__title span {
  display: block;
}
.p-top-experiences__title-ja {
  font-size: var(--font-size-ja-title);
  line-height: var(--line-height-ja-title);
  letter-spacing: var(--letter-spacing-ja-title);
}
.p-top-experiences__text {
  line-height: var(--line-height-body);
  letter-spacing: var(--letter-spacing-body);
}
.p-top-experiences__gallery {
  --swiper-wrapper-transition-timing-function: linear;
}
.p-top-experiences__gallery-item img {
  width: 100%;
}
.p-top-experiences__gallery-video {
  position: relative;
  padding-top: 133.72%;
  overflow: hidden;
}
.p-top-experiences__gallery-video video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-top-experiences__gallery-video.is-playing {
  --video-player-opacity: 1;
}
.p-top-experiences__gallery-player {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 239%;
  height: 300%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
  opacity: var(--video-player-opacity, 0);
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  pointer-events: none;
}
.p-top-experiences__gallery-image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-top-experiences {
    padding: 100px 0 100px;
  }
  .p-top-experiences__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 8.16%;
  }
  .p-top-experiences__titles {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .p-top-experiences__title {
    margin-top: 40px;
  }
  .p-top-experiences__texts {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0%;
            flex: 1 1 0%;
  }
  .p-top-experiences__text {
    margin-top: 20px;
  }
  .p-top-experiences__gallery {
    margin-top: 43px;
  }
  .p-top-experiences__gallery-item {
    width: 26.40625vw;
  }
}
@media screen and (max-width: 767px) {
  .p-top-experiences {
    padding: 131px 0 100px;
  }
  .p-top-experiences__title {
    margin-top: 32px;
  }
  .p-top-experiences__title-ja {
    margin-top: 35px;
  }
  .p-top-experiences__text {
    margin-top: 12px;
  }
  .p-top-experiences__gallery {
    margin-top: 40px;
  }
  .p-top-experiences__gallery-item {
    width: 72.82vw;
  }
}
.p-top-detail {
  position: relative;
  overflow: hidden;
  color: var(--color-white);
}
.p-top-detail__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  z-index: 1;
}
.p-top-detail__bg picture, .p-top-detail__bg img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-top-detail__frame {
  position: absolute;
  left: var(--border-position, 10px);
  top: var(--border-position, 10px);
  right: var(--border-position, 10px);
  bottom: var(--border-position, 10px);
  z-index: 3;
  pointer-events: none;
}
.p-top-detail__frame span {
  position: absolute;
}
.p-top-detail__frame span:nth-child(odd) {
  width: 1px;
  height: 100%;
  background-image: var(--border-dotted-white-vertical);
}
.p-top-detail__frame span:nth-child(even) {
  width: 100%;
  height: 1px;
  background-image: var(--border-dotted-white);
}
.p-top-detail__frame span:nth-child(1) {
  left: 0;
  top: 0;
}
.p-top-detail__frame span:nth-child(2) {
  left: 0;
  top: 0;
}
.p-top-detail__frame span:nth-child(3) {
  right: 0;
  top: 0;
}
.p-top-detail__frame span:nth-child(4) {
  left: 0;
  bottom: 0;
}
.p-top-detail__inner {
  position: relative;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-top-detail__subtitle {
  font-size: var(--font-size-en-subtitle);
  line-height: var(--line-height-en-subtitle);
  letter-spacing: 0;
}
.p-top-detail__title {
  font-size: var(--font-size-en-title);
  line-height: var(--line-height-en-title);
  letter-spacing: var(--letter-spacing-en-title);
  text-transform: uppercase;
}
.p-top-detail__text {
  line-height: var(--line-height-body);
  letter-spacing: var(--letter-spacing-body);
}
.p-top-detail__button {
  --button-padding-x: 54px;
}
@media screen and (min-width: 768px) {
  .p-top-detail {
    min-height: 560px;
    max-width: 100%;
    aspect-ratio: 1280/560;
  }
  .p-top-detail__inner {
    height: 100%;
    padding-bottom: 50px;
  }
  .p-top-detail__content {
    max-width: 800px;
    width: calc(100% - 236px - 40px);
  }
  .p-top-detail__subtitle {
    --font-size-en-subtitle: 19px;
  }
  .p-top-detail__title {
    margin-top: 42px;
  }
  .p-top-detail__text {
    margin-top: 20px;
  }
  .p-top-detail__button {
    --button-min-width: 236px;
  }
}
@media screen and (max-width: 767px) {
  .p-top-detail {
    min-height: 560px;
    max-width: 100%;
    aspect-ratio: 390/560;
  }
  .p-top-detail__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    height: 100%;
    padding: 0 0 40px;
  }
  .p-top-detail__frame {
    --border-position: min(2.57vw, 10px);
  }
  .p-top-detail__content {
    max-width: none;
  }
  .p-top-detail__title {
    margin-top: 35px;
  }
  .p-top-detail__text {
    margin-top: 22px;
  }
  .p-top-detail__button {
    margin-top: 30px;
    --button-min-width: 202px;
  }
}
.p-top-rooms {
  position: relative;
  overflow: hidden;
}
.p-top-rooms__content {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-top-rooms__subtitle {
  color: var(--color-middle-red);
  font-size: var(--font-size-en-subtitle);
  line-height: var(--line-height-en-subtitle);
}
.p-top-rooms__title {
  font-size: var(--font-size-en-title);
  line-height: var(--line-height-en-title);
  letter-spacing: var(--letter-spacing-en-title);
  text-transform: uppercase;
  color: var(--color-red);
}
.p-top-rooms__title-ja {
  font-size: var(--font-size-ja-title);
  line-height: var(--line-height-ja-title);
  letter-spacing: var(--letter-spacing-ja-title);
}
.p-top-rooms__text {
  line-height: var(--line-height-body);
  letter-spacing: var(--letter-spacing-body);
}
.p-top-rooms__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-top-rooms__amenities {
  position: relative;
  color: var(--color-red);
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: 1;
  --link-border-style: dashed;
  --link-padding-bottom: 10px;
}
.p-top-rooms__gallery {
  --swiper-wrapper-transition-timing-function: linear;
}
.p-top-rooms__gallery-item img {
  width: 100%;
}
.p-top-rooms__gallery-video {
  position: relative;
  padding-top: 133.72%;
  overflow: hidden;
}
.p-top-rooms__gallery-video video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-top-rooms__gallery-video.is-playing {
  --video-player-opacity: 1;
}
.p-top-rooms__gallery-player {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 239%;
  height: 300%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 2;
  opacity: var(--video-player-opacity, 0);
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  pointer-events: none;
}
.p-top-rooms__gallery-image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-top-rooms {
    padding: 100px 0 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 6.484%;
  }
  .p-top-rooms__inner {
    width: 31.875%;
    min-width: 360px;
    margin-left: 3.125%;
  }
  .p-top-rooms__title {
    margin-top: 44px;
  }
  .p-top-rooms__title-ja {
    margin-top: 10px;
  }
  .p-top-rooms__text {
    margin-top: 20px;
  }
  .p-top-rooms__buttons {
    margin-top: 32px;
    gap: 32px;
  }
  .p-top-rooms__gallery {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0%;
            flex: 1 1 0%;
  }
  .p-top-rooms__gallery-item {
    width: 34.68vw;
    min-width: 330px;
  }
}
@media screen and (max-width: 767px) {
  .p-top-rooms {
    padding: 100px 0 100px;
  }
  .p-top-rooms__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .p-top-rooms__content {
    width: 100%;
  }
  .p-top-rooms__title {
    margin-top: 32px;
  }
  .p-top-rooms__title-ja {
    margin-top: 32px;
  }
  .p-top-rooms__text {
    margin-top: 12px;
  }
  .p-top-rooms__buttons {
    margin-top: 30px;
    gap: 22px;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    --button-height: 44px;
    --button-padding-x: 54px;
  }
  .p-top-rooms__gallery {
    margin-top: 42px;
  }
  .p-top-rooms__gallery-item {
    width: 72.82vw;
  }
}
@media screen and (max-width: 767px) and (max-width: 380px) {
  .p-top-rooms__buttons {
    --button-padding-x: 40px;
  }
}
.p-top-access {
  position: relative;
  overflow: hidden;
  background: var(--color-beige);
}
.p-top-access__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.p-top-access__bg picture, .p-top-access__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-top-access__inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 2;
}
.p-top-access__content {
  position: relative;
  z-index: 2;
}
.p-top-access__subtitle {
  color: var(--color-middle-red);
  font-size: var(--font-size-en-subtitle);
  line-height: var(--line-height-en-subtitle);
}
.p-top-access__title {
  font-size: var(--font-size-en-title);
  line-height: var(--line-height-en-title);
  letter-spacing: var(--letter-spacing-en-title);
  text-transform: uppercase;
  color: var(--color-red);
}
.p-top-access__title-ja {
  font-size: var(--font-size-ja-title);
  line-height: var(--line-height-ja-title);
  letter-spacing: var(--letter-spacing-ja-title);
}
.p-top-access__title-ja span {
  display: inline-block;
}
.p-top-access__text {
  line-height: var(--line-height-body);
  letter-spacing: var(--letter-spacing-body);
}
.p-top-access__subtext {
  font-size: 13px;
  line-height: var(--line-height-body);
  opacity: 0.6;
  letter-spacing: var(--letter-spacing-body);
}
.p-top-access__map {
  line-height: 1.2;
  letter-spacing: 0.04em;
  --link-padding-bottom: 5px;
}
.p-top-access__service::before {
  content: "";
  display: block;
  height: 2px;
  width: 100%;
  background-image: linear-gradient(to right, var(--color-red) 2px, transparent 2px);
  -webkit-background-size: 6px 1px;
          background-size: 6px 1px;
}
.p-top-access__service-title {
  font-size: var(--font-size-ja-subtitle);
  line-height: 1.3;
  letter-spacing: -0.02em;
}
.p-top-access__service-text {
  line-height: var(--line-height-body-thin);
  letter-spacing: -0.02em;
}
@media screen and (min-width: 768px) {
  .p-top-access {
    aspect-ratio: 1280/800;
    max-width: 100%;
    min-height: 837px;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: max(7.8125%, 100px) 0;
  }
  .p-top-access__bg {
    position: absolute;
    left: auto;
    right: 0;
    top: 0;
    width: 119.53%;
    height: 100%;
    z-index: 1;
  }
  .p-top-access__bg picture {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .p-top-access__bg img {
    width: 100%;
    height: auto;
    -o-object-position: right center;
       object-position: right center;
  }
  .p-top-access__content {
    min-width: 493px;
    width: 40%;
    position: relative;
    z-index: 2;
  }
  .p-top-access__title {
    margin-top: 42px;
  }
  .p-top-access__title-ja {
    margin-top: 10px;
    width: 120%;
  }
  .p-top-access__text {
    margin-top: 20px;
    letter-spacing: var(--letter-spacing-body);
  }
  .p-top-access__subtext {
    margin-top: 20px;
  }
  .p-top-access__map {
    margin-top: 23px;
    font-size: 16px;
    --link-gap: 10px;
  }
  .p-top-access__service {
    margin-top: 30px;
  }
  .p-top-access__service-title {
    margin-top: 32px;
  }
  .p-top-access__service-text {
    margin-top: 14px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1180px) {
  .p-top-access__bg img {
    -webkit-transform: translate(0, -3%);
        -ms-transform: translate(0, -3%);
            transform: translate(0, -3%);
  }
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  .p-top-access {
    padding: 100px 0 0;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    min-height: 870px;
  }
  .p-top-access__bg img {
    min-width: 990px;
  }
  .p-top-access__title {
    width: 130%;
  }
  .p-top-access__content {
    min-width: 390px;
  }
  .p-top-access__text {
    font-size: 14.5px;
    -webkit-font-feature-settings: "halt";
            font-feature-settings: "halt";
  }
  .p-top-access__service-text {
    font-size: 14.5px;
    -webkit-font-feature-settings: "halt";
            font-feature-settings: "halt";
  }
  .p-top-access__service-text br.u-only-responsive {
    display: inline;
  }
}
@media screen and (min-width: 768px) and (max-width: 900px) {
  .p-top-access__bg img {
    -webkit-transform: translate(0, 2%);
        -ms-transform: translate(0, 2%);
            transform: translate(0, 2%);
  }
}
@media screen and (max-width: 767px) {
  .p-top-access {
    padding: 80px 0 112.82vw;
  }
  .p-top-access__bg {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .p-top-access__bg picture, .p-top-access__bg img {
    width: 100%;
    height: auto;
  }
  .p-top-access__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-top-access__content {
    width: 100%;
  }
  .p-top-access__title {
    margin-top: 32px;
  }
  .p-top-access__title-ja {
    margin-top: 35px;
  }
  .p-top-access__text {
    margin-top: 12px;
  }
  .p-top-access__subtext {
    margin-top: 12px;
  }
  .p-top-access__map {
    margin-top: 24px;
  }
  .p-top-access__service {
    margin-top: 40px;
  }
  .p-top-access__service-title {
    margin-top: 42px;
  }
  .p-top-access__service-text {
    margin-top: 18px;
  }
}
.p-top-about {
  position: relative;
  overflow: hidden;
  background: var(--color-light-beige);
}
.p-top-about__head {
  margin: 0 auto;
}
.p-top-about__subtitle {
  color: var(--color-middle-red);
  font-size: var(--font-size-en-subtitle);
  line-height: var(--line-height-en-subtitle);
}
.p-top-about__title {
  margin-top: 42px;
  color: var(--color-red);
  font-size: var(--font-size-en-title);
  line-height: var(--line-height-en-title);
  letter-spacing: var(--letter-spacing-en-title);
  text-transform: uppercase;
}
.p-top-about__title-ja {
  font-size: var(--font-size-ja-title);
  line-height: var(--line-height-ja-title);
  letter-spacing: var(--letter-spacing-ja-title);
}
.p-top-about__list {
  display: grid;
}
.p-top-about__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-top-about__image {
  overflow: hidden;
}
.p-top-about__image picture {
  display: block;
}
.p-top-about__image img {
  width: 100%;
}
.p-top-about__item-title {
  font-size: var(--font-size-ja-subtitle);
  line-height: var(--line-height-en-subtitle);
  letter-spacing: -0.02em;
}
.p-top-about__item-text {
  line-height: var(--line-height-body-thin);
  letter-spacing: var(--letter-spacing-body);
}
@media screen and (min-width: 768px) {
  .p-top-about {
    padding: 100px 0 100px;
  }
  .p-top-about__head {
    width: 100%;
  }
  .p-top-about__title-ja {
    margin-top: 10px;
  }
  .p-top-about__list {
    margin-top: 50px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 9px;
  }
  .p-top-about__item-content {
    margin-top: 32px;
  }
  .p-top-about__item-text {
    margin-top: 14px;
    width: 95%;
  }
}
@media screen and (max-width: 767px) {
  .p-top-about {
    padding: 100px 0;
  }
  .p-top-about__head {
    width: 100%;
  }
  .p-top-about__title {
    margin-top: 28px;
  }
  .p-top-about__title-ja {
    margin-top: 17px;
  }
  .p-top-about__list {
    grid-template-columns: 1fr;
    gap: 42px;
    margin-top: 42px;
  }
  .p-top-about__item-content {
    margin-top: 18px;
  }
  .p-top-about__item-text {
    margin-top: 8px;
  }
}

@media screen and (max-width: 767px) {
  html[lang=ja] .p-top-mv__button-subtitle {
    max-width: 170px;
  }
}

@media screen and (min-width: 768px) {
  html[lang=en] .p-top-access {
    min-height: 900px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  html[lang=en] .p-top-access {
    min-height: 930px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1000px) {
  html[lang=fr] .p-top-mv__button {
    --button-padding-x: 30px;
    --button-gap: 20px;
    text-align: left;
  }
  html[lang=fr] .p-top-mv__button-subtitle {
    margin-left: 20px;
    padding-right: 0;
  }
  html[lang=fr] .p-top-mv__button-subtitle::before {
    margin-right: 20px;
  }
}
@media screen and (max-width: 767px) {
  html[lang=fr] .p-top-mv__title i {
    margin-left: 0;
  }
  html[lang=fr] .p-top-mv__button-title {
    width: auto;
    padding-right: 12px;
  }
}
@media screen and (min-width: 768px) {
  html[lang=fr] .p-top-access {
    min-height: 900px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  html[lang=fr] .p-top-access {
    min-height: 980px;
  }
}