/*========= Hero Image ===============*/
.p-top-hero {
  position: relative;
  height: 100svh;
  -webkit-clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0);
          clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0);
  background-color: transparent;
}
.p-top-hero::before {
  content: "";
  position: fixed;
  z-index: -1;
  inset: 0;
  width: 100%;
  height: 100%;
  background: url(../images/top/main@2x.png) no-repeat center bottom;
  background-size: cover;
}
.p-top-hero .figcaption {
  position: absolute;
  right: 0;
  bottom: min(4vw, 80px);
  padding-right: min(3.5vw, 80px);
  color: white;
  font-size: 10px;
  font-family: var(--font-serif);
}
.p-top-hero__box {
  position: absolute;
  left: 0;
  bottom: min(4vw, 80px);
  padding-left: min(3.5vw, 80px);
}
.p-top-hero__title {
  position: relative;
  width: 35vw;
}

/*========= Concept ===============*/
.p-top-concept {
  position: relative;
  background-color: transparent;
}
.p-top-concept__item {
  display: grid;
  grid-template: "text img"/1fr calc(55%);
  padding: min(3.15vw,60px);
  background: #897972;
}
.p-top-concept__item.-entrance {
  background: #9F9180;
}
.p-top-concept__item.-room {
  background: #888179;
}
.p-top-concept__imgBlock {
  grid-area: img;
}
.p-top-concept__textBlock {
  grid-area: text;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: min(12vw, 160px) 0;
  color: var(--white);
  background: url(../images/top/back@2x.png) no-repeat right top;
  background-size: cover;
}
.p-top-concept__textBlock-inner {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 480px;
  margin-right: 6vw;
  margin-left: 6vw;
}
.p-top-concept__img {
  position: relative;
  width: 100%;
  height: 100%;
  max-height: 1600px;
}
.p-top-concept__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-top-concept__caption {
  position: absolute;
  right: 20px;
  bottom: 20px;
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 10px;
}
.p-top-concept__title {
  margin-bottom: min(8vw, 100px);
  color: var(--white);
  opacity: 1;
}
.p-top-concept__multiText {
  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-concept__multiText-item + .p-top-concept__multiText-item {
  margin-top: min(4.7vw, 80px);
  padding-top: min(4.7vw, 80px);
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}

/*========= VR ===============*/
.p-top-vr {
  background: #2F2F2F;
  background-size: cover, auto;
}
.p-top-vr__inner {
  max-width: 1420px;
  margin: auto;
  padding: min(12vw, 180px) min(6vw, 80px);
}
.p-top-vr__title {
  margin-bottom: 60px;
  text-transform: none;
  color: var(--white);
}
.p-top-vr__links {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: min(1.3vw,20px);
}
.p-top-vr__links::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: min(30.2380952381%, 381px);
  aspect-ratio: 762/339;
  background: url("../images/top/bg_360.png") no-repeat 0 0;
  background-size: contain;
  translate: -5% -90% 0;
}
.p-top-vr__link {
  position: relative;
}
.p-top-vr__link:first-child {
  grid-row: 1/3;
  grid-column: 1/2;
}
.p-top-vr__link:nth-child(2) {
  grid-row: 1/2;
  grid-column: 2/2;
}
.p-top-vr__link:nth-child(3) {
  grid-row: 2/3;
  grid-column: 2/3;
}
.p-top-vr__link a {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 10px;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}
.p-top-vr__link a img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-top-vr__link a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0);
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 10px inset;
          box-shadow: rgba(0, 0, 0, 0.1) 0px 3px 10px inset;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.p-top-vr__link a:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.p-top-vr__link a:hover::before {
  content: "";
  z-index: 2;
  background: rgba(0, 0, 0, 0.2);
}

/*========= Access ===============*/
.p-top-access {
  background: #f8f8f8;
}
.p-top-access__header {
  position: relative;
  margin-bottom: 80px;
  padding-top: min(9vw, 140px);
}
.p-top-access__header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: min(6vw,100px);
  max-width: 1420px;
  margin: auto;
  padding: 0 min(6vw, 80px);
}
.p-top-access__header-text {
  -webkit-box-flex: 410;
      -ms-flex: 410;
          flex: 410;
  margin: auto;
}
.p-top-access__header-routeMap {
  -webkit-box-flex: 752;
      -ms-flex: 752;
          flex: 752;
}
.p-top-access__header-routeMap img {
  border: 1px solid #CCC;
}
.p-top-access__title {
  margin-bottom: min(8vw, 100px);
  opacity: 1;
}
.p-top-access__catch {
  max-width: 900px;
}
.p-top-access__catchMain {
  margin-bottom: min(2.6vw, 40px);
}
.p-top-access__catchSub {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-top: 5px;
  line-height: 2.1;
}
.p-top-access__body-inner {
  max-width: 1420px;
  margin: auto;
  padding: 0 min(6vw, 80px) clamp(160px, 9.4vw, 220px);
}
.p-top-access__station {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: min(2.5vw,40px);
  padding-top: 60px;
  border-top: 1px dashed #000;
}
.p-top-access__station-item.-notes {
  -webkit-box-flex: 0.1;
      -ms-flex-positive: 0.1;
          flex-grow: 0.1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.p-top-access__station-photo {
  margin-bottom: 20px;
}
.p-top-access__station-notes {
  width: min(86.4583%, 610px);
}
.p-top-access__station-notesLine {
  margin-bottom: 20px;
}
.p-top-access__station-notesList {
  letter-spacing: 0.035em;
}
.p-top-access__notes {
  margin-top: clamp(40px, 7.8125%, 60px);
  padding-top: 20px;
  border-top: 1px dashed #000;
}
.p-top-access__notes-notesList li {
  display: inline;
}

/**************** SP ****************/
@media screen and (max-width: 1024px) {
  .p-top-hero {
    width: 100%;
    height: auto;
    aspect-ratio: 768/1080;
    background: url(../images/top/main_sp@2x.png) no-repeat center bottom/cover;
    -webkit-clip-path: none;
            clip-path: none;
  }
  .p-top-hero::before {
    content: none;
  }
  .p-top-hero .figcaption {
    bottom: 30px;
    padding-right: 30px;
  }
  .p-top-hero__box {
    width: 100%;
    height: auto;
    padding: 0 40px;
    top: min(32.6vw, 340px);
    left: 0;
    bottom: auto;
    text-align: center;
  }
  .p-top-hero__title {
    max-width: 100%;
    width: auto;
    padding: 0 40px;
  }
  .p-top-concept__item {
    display: grid;
    grid-template: "text" auto "img" 1fr/1fr;
    padding: 0;
  }
  .p-top-concept__item.-reverse {
    grid-template: "text" auto "img" 1fr/1fr;
  }
  .p-top-concept__item.-reverse .p-top-concept__textBlock-inner {
    padding-right: 0;
    padding-left: 0;
  }
  .p-top-concept__item.-reverse .p-top-concept__caption {
    right: clamp(15px, 2.31vw + 6.4px, 30px);
    left: auto;
  }
  .p-top-concept__item.-concept .p-top-concept__textBlock-inner {
    display: block;
  }
  .p-top-concept__item.-entrance {
    padding-bottom: 0;
  }
  .p-top-concept__item.-entrance .p-top-concept__caption {
    right: 30px;
  }
  .p-top-concept__item.-room {
    padding: 0;
  }
  .p-top-concept__item.-room .p-top-concept__imgBlock {
    display: none;
  }
  .p-top-concept__textBlock {
    padding: min(9.765625%, 90px) clamp(40px, 7.8125%, 80px);
  }
  .p-top-concept__textBlock-inner {
    display: grid;
    grid-template-columns: 1.09fr 2fr;
    max-width: none;
    margin: auto;
    padding-right: 0;
    padding-left: 0;
  }
  .p-top-concept__caption {
    right: clamp(15px, 2.31vw + 6.4px, 30px);
    bottom: clamp(15px, 2.31vw + 6.4px, 30px);
  }
  .p-top-concept__title {
    grid-row: 1/3;
    grid-column: 1/2;
    margin-bottom: min(7.7720207254%, 60px);
    color: var(--white);
  }
  .p-top-concept__head {
    grid-row: 1/2;
    grid-column: 2/3;
  }
  .p-top-concept__head-period {
    letter-spacing: -1em;
  }
  .p-top-concept__text {
    grid-row: 2/3;
    grid-column: 2/3;
  }
  .p-top-concept__multiText {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 44px;
  }
  .p-top-concept__multiText-item + .p-top-concept__multiText-item {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
  }
  .p-top-vr__inner {
    padding: min(9.765625%, 90px) clamp(40px, 7.8125%, 80px);
  }
  .p-top-vr__title {
    margin-bottom: min(7.7720207254%, 60px);
  }
  .p-top-vr__links {
    gap: 16px;
  }
  .p-top-vr__links::before {
    width: min(27.4611398964%, 212px);
  }
  .p-top-vr__link:first-child {
    grid-row: 1/1;
    grid-column: 1/3;
  }
  .p-top-vr__link:nth-child(2) {
    grid-row: 2/2;
    grid-column: 1/2;
  }
  .p-top-vr__link:nth-child(3) {
    grid-row: 2/2;
    grid-column: 2/3;
  }
  .p-top-access__header {
    margin-bottom: 0;
  }
  .p-top-access__header-inner {
    display: block;
    padding: 0 clamp(40px, 7.8125%, 80px);
  }
  .p-top-access__header-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: min(10vw,70px)
  }
  .p-top-access__title {
    -webkit-box-flex: 1.09;
        -ms-flex: 1.09;
            flex: 1.09;
  }
  .p-top-access__catch {
    -webkit-box-flex: 2;
        -ms-flex: 2;
            flex: 2;
  }
  .p-top-access__catchMain {
    margin-bottom: 20px;
  }
  .p-top-access__body-inner {
    padding: clamp(40px, 7.8125%, 80px) clamp(40px, 7.8125%, 80px) clamp(80px, 12.9533678756%, 100px);
  }
  .p-top-access__routeMap {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
  }
  .p-top-access__routeMap-textBlock {
    grid-area: 1/1;
  }
  .p-top-access__routeMap-imgBlock {
    grid-area: 2/1;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    min-height: auto;
    margin-top: clamp(50px, 10.3626943005%, 80px);
  }
  .p-top-access__routeMap-imgBlock img {
    width: 100vw;
    max-width: 100%;
  }
  .p-top-access__station {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px min(2.5vw,40px);
    padding-top: 0;
    border-top: 0;
  }
  .p-top-access__station-item.-notes {
    max-width: none;
  }
  .p-top-access__station-notes {
    width: 100%;
  }
}
@media screen and (max-width: 576px) {
  .p-top-hero {
    aspect-ratio: 365/650;
    background-position: right top;
  }
  .p-top-hero .figcaption {
    bottom: 20px;
    padding-right: 24px;
  }
  .p-top-hero__box {
    top: min(43.6vw, 230px);
    padding: 0;
  }
  .p-top-hero__title {
    width: auto;
    margin: auto;
  }
  .p-top-concept__title {
    margin-bottom: min(12.8205128205%, 50px);
    font-size: 40px;
  }
  .p-top-concept__textBlock {
    padding: 80px 0;
  }
  .p-top-concept__textBlock-inner {
    display: block;
    width: min(87.6923076923%, 544px);
  }
  .p-top-concept__multiText {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 60px;
  }
  .p-top-concept__multiText-item {
    width: 100% !important;
  }
  .p-top-vr__inner {
    width: min(87.6923076923%, 544px);
    padding: 80px 0;
  }
  .p-top-vr__title {
    margin-bottom: min(12.8205128205%, 50px);
  }
  .p-top-vr__links {
    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-vr__links::before {
    content: none;
  }
  .p-top-vr__link:first-child {
    grid-area: 1/1;
  }
  .p-top-vr__link:first-child a {
    aspect-ratio: 1040/720;
  }
  .p-top-vr__link:first-child a img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .p-top-access__img img {
    width: 140%;
  }
  .p-top-access__header {
    padding-top: 60px;
  }
  .p-top-access__header-inner {
    display: block;
    width: min(87.6923076923%, 544px);
    padding: 0;
  }
  .p-top-access__header-text {
    display: block;
  }
  .p-top-access__title {
    margin-bottom: min(12.8205128205%, 50px);
  }
  .p-top-access__catch .p-top-concept__head {
    font-size: clamp(10px, 5.641025641vw, 22px);
  }
  .p-top-access__body-inner {
    width: min(87.6923076923%, 544px);
    padding: clamp(40px, 7.8125%, 80px) 0 80px;
  }
  .p-top-access__station {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 21px 14px;
  }
  .p-top-access__station-photo {
    margin-bottom: 11px;
  }
  .p-top-access__station-item {
    width: 100%;
    max-width: 282px;
  }
  .p-top-access__routeMap {
    padding-bottom: 50px;
  }
}