body {
  background: #fafbfc;
}

maruho-tour {
  --header-height: 69px;
  display: block;
  position: relative;
  color: black;
  z-index: 2;

  button {
    border: none;
    appearance: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
  }

  * {
    font-weight: inherit;
  }

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

  dialog {
    border: none;
  }

  .sp-br {
    display: none;
  }

  button:focus {
    outline: none;
  }

  img, video {
    -webkit-user-drag: none;
    -webkit-touch-callout: none;
    user-select: none;
  }
}

.safe-area {
  position: relative;
}

loading-page {
  display: flex;
  min-height: calc(100dvh - var(--header-height));
  align-items: center;
  justify-content: center;
  flex-direction: column;
  pointer-events: none;
  background: #fafbfc;
  clip-path: circle(100%);

  @media (max-width: 768px) {
    .artwork {
      height: 160px;
    }
  }
}

sky-cloud {
  position: absolute;
  inset: 0 0 auto 0;
  pointer-events: none;
  overflow: hidden;
}

car-lane {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

floating-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: 64px;
  left: 64px;
  width: 160px;
  animation: logo-appear 0.3s;

  .logo__tour-label {
    margin-top: 16px;
  }
}

@keyframes logo-appear {
  from {
    transform: translateX(calc(-64px + -160px));
  }

  to {
    transform: none;
  }
}

.selector {
  padding: 193px 0 134px;

  .tour {
    height: 403px;
    position: relative;
  }

  .tour__label {
    position: absolute;
    inset: -42px 0 auto;
    margin: auto;
    width: 160px;
  }

  .tour__artwork {
    position: relative;
    height: 100%;
    z-index: 1;
  }

  .tour__button {
    position: absolute;
    inset: auto 0 -50px;
    margin: auto;
    width: 250px;
    z-index: 2;
  }
}

.circle {
  position: absolute;
  padding-top: 40px;
  width: 976px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

@keyframes slide-in-from-left {
  0% {
    transform: translateX(-500px);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes slide-out-to-left {
  0% {
    transform: translateX(0);
    opacity: 1;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(-500px);
  }
}

@keyframes slide-in-from-right {
  0% {
    transform: translateX(500px);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: translateX(0);
  }
}

@keyframes slide-out-to-right {
  0% {
    transform: translateX(0);
    opacity: 1;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(500px);
  }
}

@keyframes slide-in-from-top {
  0% {
    transform: translateX(calc(-50% - 56px)) translateY(-500px);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: translateX(calc(-50% - 56px)) translateY(0);
  }
}

@keyframes slide-out-to-top {
  0% {
    transform: translateX(calc(-50% - 56px)) translateY(0);
    opacity: 1;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(calc(-50% - 56px)) translateY(-500px);
  }
}

@keyframes slide-in-from-bottom {
  0% {
    transform: translateY(500px);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes slide-out-to-bottom {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateY(500px);
  }
}

@keyframes object-pin {
  0% {
    transform: translateY(-100px);
  }

  25% {
    opacity: 1;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes popup-balloon {
  0% {
    transform: scale(0);
  }

  25% {
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

role-selector-page {
  display: block;
  padding: 60px 0 130px;
  min-height: calc(100dvh - var(--header-height));
  box-sizing: border-box;
  position: relative;
  z-index: 0;

  .role-selector-page__title {
    margin-bottom: 48px;
    color: #0242a3;
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    line-height: 2;
    transition: opacity 0.1s;
  }

  .role-selector-page__title[data-exit] {
    opacity: 0;
  }

  .role-panel-anchor {
    position: relative;
    width: 686px;
    margin: auto;
  }

  .role-artwork {
    position: absolute;
    inset: 41.1px auto auto -152.7px;
    animation: slide-in-from-left 0.25s ease-out;
    z-index: 1;
  }

  .role-panel-anchor[data-exit] {
    .role-artwork {
      animation: slide-out-to-left 0.1s ease-out forwards;
    }

    .role-panel {
      animation: slide-out-to-right 0.1s ease-out forwards;
    }
  }

  .role-artwork__person {
    animation: 0.2s 0.3s object-pin ease-in forwards;
    opacity: 0;
  }

  .role-artwork__person:nth-of-type(2) {
    animation-delay: 0.35s;
  }

  .role-artwork__person:nth-of-type(3) {
    animation-delay: 0.4s;
  }

  .role-artwork__person:nth-of-type(4) {
    animation-delay: 0.45s;
  }

  .role-artwork__balloon {
    animation: 0.5s 0.5s popup-balloon forwards;
    opacity: 0;
    transform-box: fill-box;
    transform-origin: bottom;
  }

  .role-panel {
    border-radius: 20px;
    background: #edeff2;
    border: 1px solid black;
    padding: 35px 30px 35px 190px;
    animation: slide-in-from-right 0.25s ease-out;
    transform: translateZ(0);

    .role-panel__separator {
      margin: 20px 0;
      background: #b4bccb;
    }

    .role-panel__layout {
      display: flex;
      gap: 10px;
    }

    .role-panel__layout-head {
      width: 117px;
      font-size: 18px;
      font-weight: bold;
      text-align: left;
    }

    .role-panel__layout-body {
      flex: 1;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }
  }
}

role-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  height: 54px;
  font-weight: bold;
  border-radius: 4px;
  border: 1px solid black;
  background: white;
  cursor: pointer;
  white-space: pre-wrap;

  &.role-button__text-s {
    font-size: 12px;
  }

  p {
    line-height: 1.2;
  }
}

@keyframes tour-page-appear {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes map-appear {
  from {
    transform: translateY(100vh);
  }

  to {
    transform: none;
  }
}

tour-page {
  .map {
    height: calc(800px - var(--header-height));
    padding-bottom: 36px;
    position: relative;
    overflow: hidden;

    .container {
      animation: map-appear 1s cubic-bezier(0.33, 1, 0.68, 1);
    }
  }

  .toggle-navigation {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1;
  }

  .tour-article-dialog {
    margin: 0;
    padding: 0;
    max-width: none;
    max-height: none;
    background: transparent;
    width: 100%;
    height: 100dvh;
    overflow: hidden;
    transform: translateX(-100vw);
    transition: display 0.4s allow-discrete, overlay 0.4s allow-discrete,
      transform 0.4s;
  }

  .tour-article-dialog[open] {
    transform: translateX(0);
  }

  @starting-style {
    .tour-article-dialog[open] {
      transform: translateX(-100vw);
    }
  }

  .tour-article-dialog::backdrop {
    background-color: rgba(0, 0, 0, 0.6);
    height: 100dvh;
  }

  .intro-dialog {
    margin: auto;
    padding: 0;
    max-width: none;
    max-height: none;
    background: transparent;
  }

  .intro-dialog::backdrop {
    background-color: rgba(0, 0, 0, 0.6);
    height: 100dvh;
  }
}

tour-map {
  display: flex;
  touch-action: pan-y;
  align-items: center;
  justify-content: center;
  height: 800px;
  position: absolute;
  inset: calc(-1 * var(--header-height)) 0 auto;

  .artboard {
    display: block;
  }

  .pins {
    position: absolute;
    inset: 0 0 auto;
  }

  .tour-map__pan-guide {
    position: absolute;
    top: 240px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s;
    z-index: 1;
  }

  .tour-map__map-pin {
    cursor: pointer;

    text {
      font-weight: bold;
    }

    & > g > g {
      transition: transform 0.3s;
    }

    &:hover > g > g {
      transform: scale(1.2);
    }
  }
}

tour-menu-dropdown {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;

  .menu-button {
    position: absolute;
    inset: 30px 30px auto auto;
    z-index: 1;

    line {
      transform-origin: center;
      transition: transform 0.25s;
    }

    line:nth-of-type(1) {
      transform: translateY(-5px);
    }

    line:nth-of-type(2) {
      transform: translateY(5px);
    }

    &[data-open] {
      line:nth-of-type(1) {
        transform: translateY(0) rotate(45deg);
      }

      line:nth-of-type(2) {
        transform: translateY(0) rotate(-45deg);
      }
    }
  }
}

tour-menu {
  box-sizing: border-box;
  display: block;
  background: #003b8f;
  padding: 40px 36px;
  font-size: 14px;
  font-weight: bold;
  color: white;
  text-align: left;
  width: 216px;
  position: absolute;
  right: 50px;
  top: 45px;
  border-radius: 10px;
  border: 1px solid black;
  transform-origin: top right;
  transform: scale(0);
  transition: transform 0.25s;

  &[data-open] {
    transform: scale(1);
  }

  .menu__logo {
    display: block;
    margin-inline: auto;
    margin-bottom: 24px;
    width: 110px;
  }

  hr {
    background: white;
    margin: 0;
  }

  .menu__top-line {
    margin: 12px 0;
  }

  .menu__middle-padding {
    padding: 20px 0;
  }

  .menu__middle-gap {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .menu__tour-label {
    display: inline-flex;
    height: 23px;
    border-radius: 13px;
    border: 1px solid white;
    padding-inline: 15px;
    align-items: center;
  }

  .menu__bottom-line {
    margin-top: 12px;
  }
}

tour-menu-link {
  display: contents;

  a,
  button {
    color: white;
  }
}

list-view {
  .section-flow {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 140px 80px 140px;
    max-width: 1000px;
    margin: auto;
  }

  .map__note {
    position: absolute;
    top: -60px;
    font-weight: bold;
  }

  .marker-section {
    box-sizing: border-box;
    border: 1px solid black;
    border-radius: 6px;
    background: #edeff2;
    width: 100%;
    margin: auto;
    padding: 40px 60px;
  }

  .marker-section__title {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 39px;
    line-height: 1.25;
  }

  .marker-section__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    gap: 16px 28px;
  }
}

marker-tile {
  position: relative;

  .marker-tile__marker-icon {
    position: absolute;
    top: -12.5px;
    left: -16px;
    pointer-events: none;
  }

  .marker-tile__button {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    gap: 18.8px;
    width: 100%;
    background: white;
    border: 1px solid black;
    border-radius: 10px;
  }

  .marker-tile__title {
    font-size: 18px;
    font-weight: bold;
    color: #003b8f;
    text-align: left;
  }

  .marker-tile__icon {
    height: 70px;
    border-radius: 50%;
    border: 1px solid #707070;
  }
}

marker-icon {
  .marker-icon__text {
    font-size: 16px;
    font-weight: bold;
  }
}

banner-section {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  gap: 17px;
  flex-wrap: wrap;
  width: 100%;
  padding: 60px 140px;
  background-color: #003b8f;

  .banner-section__banner {
    width: 100%;
    max-width: 322px;
  }
}

toggle-navigation {
  .toggle-navigation__inner {
    display: flex;
    gap: 4px;
    padding: 2px;
    background-color: white;
    border-radius: 25px;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
  }

  .toggle-navigation__button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 6px 18px;
    width: 102px;
    color: black;
    border-radius: 25px;
  }

  .toggle-navigation__button[selected] {
    color: white;
    background-color: #0043a5;
  }

  .toggle-navigation__map-icon {
    fill: black;
    stroke: black;
  }

  .toggle-navigation__button[selected] > .toggle-navigation__map-icon {
    fill: #0043a5;
    stroke: white;
  }

  .toggle-navigation__list-icon {
    fill: black;
    stroke: black;
  }

  .toggle-navigation__button[selected] > .toggle-navigation__list-icon {
    fill: white;
    stroke: white;
  }
}

tour-article-screen {
  position: relative;
  display: block;
  margin-top: 67px;
  width: 720px;
  height: calc(100dvh - 67px);

  .tour-article-screen__chip-wrapper {
    position: absolute;
    top: -20px;
    left: 50px;
    z-index: 1;
  }

  .tour-article-screen__close-button {
    position: absolute;
    top: -30px;
    right: -30px;
    z-index: 1;
  }

  .tour-article-screen__close-icon {
    width: 60px;
    height: 60px;
  }

  .tour-article-screen__inner {
    position: relative;
    overflow-y: scroll;
    overscroll-behavior: none;
    height: 100%;
    scrollbar-width: none; /* Firefox */
  }

  .tour-article-screen__inner::-webkit-scrollbar {
    display: none; /* Chrome, Safari, iOS Safari */
  }

  .tour-article-screen__bg {
    background: #fafbfc;
  }

  .tour-article-screen__scroll-track {
    box-sizing: border-box;
    position: absolute;
    top: 40px;
    right: 1px;
    width: 12px;
    height: calc(100% - 40px);
    background-color: #fafbfc;
    border-top: 1px solid #d6dae2;
    border-left: 1px solid #d6dae2;
  }

  .tour-article-screen__scrollbar {
    position: absolute;
    top: 0;
    right: 3px;
    width: 7px;
    background: #b6bcc7;
    border-radius: 6px;
    touch-action: none;
  }
}

tour-article-chip {
  display: block;
  padding: 8px 20px;
  background-color: #f7592a;
  border-radius: 20px;
  border: 1px solid black;

  .tour-article-chip__number {
    color: white;
    font-size: 14px;
    font-weight: bold;
  }
}

tour-article-overview {
  .tour-article-overview__inner {
    padding: 50px;
    border: 1px solid black;
    border-bottom: none;
  }

  .tour-article-overview__header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
  }

  .tour-article-overview__icon-box {
    position: relative;
    flex-shrink: 0;
  }

  .tour-article-overview__icon {
    width: 145px;
  }

  .tour-article-overview__marker {
    position: absolute;
    top: 16px;
    left: 0;
  }

  .tour-article-overview__header-right {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .tour-article-overview__point {
    padding: 6px 10px;
    width: fit-content;
    color: #003b8f;
    font-weight: bold;
    background: #edeff2;
    border-radius: 4px;
  }

  .tour-article-overview__title {
    color: #003b8f;
    font-size: 26.5px;
    font-weight: bold;
    letter-spacing: -0.01em;
    white-space: pre-wrap;
  }

  .tour-article-overview__body {
    text-align: left;
    line-height: 1.7;
  }

  .tour-article-overview__body-note {
    margin-top: 10px;
    font-size: 12px;
  }

  figure {
    max-width: 380px;
    margin: 0 auto;
  }

  .tour-article-overview__images {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
  }

  .tour-article-overview__image-caption {
    font-size: 12px;
  }

  .tour-article-overview__video {
    display: block;
    margin: 40px auto 0;
    width: 100%;
    max-width: 380px;
    border-radius: 10px;
    object-fit: cover;
  }
}

tour-article-link-panel {
  box-sizing: border-box;
  display: block;
  padding: 16px;
  width: 100%;
  background-color: white;
  border-radius: 10px;

  ul {
    li {
      margin-bottom: 4px;
      text-align: left;

      a,
      button {
        color: #003b8f;
        text-align: left;
        font-size: 14px;
        text-decoration: underline;
      }

      a:hover,
      button:hover {
        text-decoration: none;
      }
    }
  }

  .tour-article-link-panel__heading {
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: bold;
  }
}

tour-article-link {
  & > button {
    color: #003b8f;
    font-size: 15px;
    text-decoration: underline;
  }

  & > button:hover {
    text-decoration: none;
  }
}

tour-article-detail {
  .tour-article-detail__inner {
    padding: 50px;
    background-color: #ecf0f3;
    border: 1px solid black;
    border-bottom: none;
  }

  .tour-article-detail__paragraph {
    margin-bottom: 40px;

    & > *:last-child {
      margin-bottom: 0;
    }
  }

  .tour-article-detail__two-columns {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;

    & > *:last-child {
      margin-bottom: 0;
    }
  }

  .tour-article-detail__interview {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;

    & > *:last-child {
      margin-bottom: 0;
    }
  }

  .tour-article-detail__headline-2 {
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: bold;
  }

  .tour-article-detail__headline-3 {
    margin-bottom: 30px;
    color: #013b8f;
    font-size: 26px;
    font-weight: bold;
  }

  .tour-article-detail__headline-4 {
    margin-bottom: 20px;
    padding-left: 16px;
    font-weight: bold;
    border-left: 2px solid black;
  }

  .tour-article-detail__text-body {
    margin-bottom: 20px;
  }

  .tour-article-detail__text-body__s {
    font-size: 12px;
  }

  .tour-article-detail__text-body-note {
    margin-top: -20px;
    margin-bottom: 30px;
    font-size: 12px;
  }

  .tour-article-detail__text-speaker {
    color: #013b8f;
    font-weight: bold;
    flex-shrink: 0;
  }

  .tour-article-detail__link-panel {
    margin-bottom: 20px;
  }

  .tour-article-detail__profile-panel {
    box-sizing: border-box;
    display: flex;
    gap: 16px;
    padding: 20px;
    width: 100%;
    background-color: white;
    border-radius: 10px;
  }

  .tour-article-detail__profile-icon {
    width: 60px;
    height: 60px;
  }

  .tour-article-detail__profile-name {
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: bold;
  }

  .tour-article-detail__profile-bio {
    font-size: 12px;
  }

  *:last-child {
    margin-bottom: 0;
  }

  tour-article-image {
    margin-bottom: 40px;
  }
}

tour-article-detail-heading {
  position: relative;
  display: flex;
  align-items: center;
  padding: 28px 50px 28px 165px;
  background-color: #013b8f;
  border: 1px solid black;
  border-bottom: none;

  .tour-article-detail-heading__tag {
    position: absolute;
    top: -8px;
    left: 50px;
  }

  .tour-article-detail-heading__note {
    position: absolute;
    top: -8px;
    left: 50px;
    width: 88px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .tour-article-detail-heading__note-bg {
    position: absolute;
    display: block;
    width: 100%;
    height: 100px;
  }

  .tour-article-detail-heading__note-text {
    position: relative;
    color: white;
    font-size: 14px;
    text-align: center;
    line-height: 1.25;
  }

  .tour-article-detail-heading__title {
    color: white;
    font-size: 24px;
    font-weight: bold;
  }
}

tour-article-image {
  display: block;
  margin: 0 auto;

  figure {
    margin: 0 auto;
  }

  .tour-article-image__image-s {
    max-width: 380px;
  }

  .tour-article-image__image-l {
    max-width: 620px;
  }

  .tour-article-image__caption {
    margin: 8px auto 0;
    max-width: 380px;
    font-size: 12px;
    text-align: center;
    white-space: pre-wrap;
  }

  .tour-article-image__caption-l {
    display: block;
    margin-top: 8px;
    text-align: left;
  }
}

tour-article-footer {
  display: flex;
  height: 80px;
  border: 1px solid black;

  .tour-article-footer__button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex: 1;
    height: 100%;
    color: #ee7700;
    font-size: 14px;
    font-weight: bold;
    background-color: white;
  }

  .tour-article-footer__arrow {
    width: 10px;
    height: 20px;
  }

  .tour-article-footer__button-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  }

  .tour-article-footer__close-button {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    gap: 10px;
    height: 100%;
    color: white;
    font-size: 20px;
    font-weight: bold;
    background-color: black;
  }

  .tour-article-footer__close-icon {
    width: 19px;
    height: 19px;
  }
}

intro-dialog-screen {
  display: block;
  padding: 60px 60px 50px 60px;
  width: 400px;
  background: white;
  border: 1px solid black;
  border-radius: 10px;

  .intro-dialog-screen__image {
    margin-bottom: 20px;
  }

  .intro-dialog-screen__text {
    font-size: 19px;
    margin-bottom: 20px;
  }

  .intro-dialog-screen__button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    padding: 13px 15px 13px 40px;
    width: 250px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    background-color: black;
    border-radius: 48px;
  }
}

@media (max-width: 768px) {
  maruho-tour {
    .sp-br {
      display: block;
    }
  }

  floating-logo {
    top: 26px;
    left: 24px;
    width: 96px;

    .logo__tour-label {
      margin-top: 16px;
    }
  }

  role-selector-page {
    padding: 120px 20px 40px;

    .role-selector-page__title {
      margin-bottom: 140px;
      font-size: 18px;
    }

    .role-panel-anchor {
      width: 100%;
    }

    .role-artwork {
      top: -166px;
      left: 50%;
      transform: translateX(calc(-50% - 56px));
      scale: 0.65;
      animation: slide-in-from-top 0.25s ease-out;
    }

    .role-panel {
      border-radius: 10px;
      padding: 80px 20px 20px;
      animation: slide-in-from-bottom 0.25s ease-out;

      .role-panel__separator {
        margin: 16px 0;
      }

      .role-panel__layout {
        flex-direction: column;
        gap: 16px;
      }

      .role-panel__layout-head {
        width: 100%;
        font-size: 15px;
      }

      .role-panel__layout-body {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
      }
    }

    .role-panel-anchor[data-exit] {
      .role-artwork {
        animation: slide-out-to-top 0.1s ease-out forwards;
      }

      .role-panel {
        animation: slide-out-to-bottom 0.1s ease-out forwards;
      }
    }
  }

  role-button {
    height: 47px;
    font-size: 13px;

    &.role-button__text-s {
      font-size: 10px;
    }
  }

  tour-page {
    .map {
      height: calc(526px - var(--header-height));
    }

    .intro-dialog {
      padding: 0 20px;
    }

    .toggle-navigation {
      right: 50%;
      transform: translateX(50%);
      bottom: 20px;
      z-index: 1;
    }
  }

  tour-menu-dropdown {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;

    .menu-button {
      inset: 10px 10px auto auto;
      width: 42px;
      height: 42px;
    }
  }

  tour-map {
    height: 445.28px;
    inset: auto 0 40px;

    .tour-map__pan-guide[visible] {
      opacity: 1;
    }
  }

  tour-menu {
    right: 24px;
    top: 24px;
  }

  list-view {
    .section-flow {
      gap: 16px;
      padding: 0 20px 40px 20px;
    }

    .map__note {
      font-size: 12px;
    }

    .marker-section {
      padding: 24px 20px;
    }

    .marker-section__title {
      font-size: 20px;
      margin-bottom: 20px;
    }

    .marker-section__grid {
      grid-template-columns: 1fr;
      gap: 16px 28px;
    }
  }

  marker-tile {
    .marker-tile__marker {
      position: absolute;
      inset: -12.5px 0 0 -16px;
    }

    .marker-tile__button {
      padding: 12px;
      gap: 8px;
    }

    .marker-tile__title {
      font-size: 14px;
    }

    .marker-tile__icon {
      height: 46px;
    }
  }

  marker-icon {
    scale: 0.85;
  }

  tour-article-screen {
    margin-top: 0;
    width: calc(100vw - 30px);
    height: 100%;

    .tour-article-screen__chip-wrapper {
      left: 18px;
    }

    .tour-article-screen__close-button {
      top: -21px;
      right: -21px;
    }

    .tour-article-screen__close-icon {
      width: 42px;
      height: 42px;
    }

    .tour-article-screen__inner {
      margin-top: 21px;
      height: calc(100dvh - 21px);
    }
  }

  tour-article-chip {
    padding: 10px 16px;
    border-radius: 20px;

    .tour-article-chip__number {
      font-size: 12px;
    }
  }

  tour-article-overview {
    .tour-article-overview__inner {
      padding: 32px 20px 45px;
    }

    .tour-article-overview__header {
      flex-direction: column;
      gap: 30px;
      margin-bottom: 20px;
    }

    .tour-article-overview__header-right {
      align-self: flex-start;
      gap: 6px;
    }

    .tour-article-overview__point {
      padding: 4px 10px;
      font-size: 12px;
    }

    .tour-article-overview__title {
      font-size: 18px;
    }

    .tour-article-overview__body {
      font-size: 14px;
      margin-bottom: 30px;
    }

    .tour-article-overview__body-note {
      margin-top: 8px;
    }

    .tour-article-overview__image {
      width: 100%;
      max-width: none;
    }
  }

  tour-article-link {
    & > button {
      font-size: 14px;
    }
  }

  tour-article-detail {
    .tour-article-detail__inner {
      padding: 30px 20px 40px;
    }

    .tour-article-detail__two-columns {
      gap: 10px;
      flex-direction: column;
    }

    .tour-article-detail__headline-2 {
      margin-bottom: 14px;
      font-size: 16px;
    }

    .tour-article-detail__headline-3 {
      margin-bottom: 20px;
      font-size: 18px;
    }

    .tour-article-detail__headline-4 {
      margin-bottom: 10px;
      padding-left: 12px;
      font-size: 14px;
    }

    .tour-article-detail__text-body {
      margin-bottom: 30px;
      font-size: 14px;
    }

    .tour-article-detail__text-body__s {
      font-size: 12px;
    }

    .tour-article-detail__text-speaker {
      font-size: 14px;
    }

    & > *:last-child {
      margin-bottom: 0;
    }

    tour-article-image {
      margin-bottom: 30px;
      width: 100%;
      max-width: none;
    }
  }

  tour-article-detail-heading {
    padding: 14px 20px 14px 102px;
    min-height: 86px;
    box-sizing: border-box;

    .tour-article-detail-heading__tag {
      position: absolute;
      top: -8px;
      left: 20px;
    }

    .tour-article-detail-heading__note {
      position: absolute;
      top: -10px;
      left: 20px;
      width: 65px;
      height: 78px;
    }

    .tour-article-detail-heading__sp-br {
      display: block;
    }

    .tour-article-detail-heading__note-text {
      font-size: 12px;
    }

    .tour-article-detail-heading__title {
      font-size: 16px;
    }
  }

  tour-article-image {
    .tour-article-image__image-s {
      width: 100%;
      max-width: none;
    }

    .tour-article-image__image-l {
      width: 100%;
      max-width: none;
    }
  }

  tour-article-footer {
    height: 76px;

    .tour-article-footer__button {
      gap: 16px;
      font-size: 14px;
    }

    .tour-article-footer__arrow {
      width: 6px;
      height: 12px;
    }

    .tour-article-footer__button-inner {
      flex-direction: column;
      gap: 0;
    }

    .tour-article-footer__button-inner--next {
      flex-direction: column-reverse;
    }

    .tour-article-footer__marker-icon {
      scale: 0.7;
    }

    .tour-article-footer__button-text {
      margin-top: -8px;
      font-size: 12px;
      text-align: center;
      line-height: 1.1;
    }

    .tour-article-footer__close-button {
      gap: 6px;
    }

    .tour-article-footer__close-icon {
      width: 12px;
      height: 12px;
    }
  }

  banner-section {
    gap: 14px;
    padding: 40px 50px;
  }

  intro-dialog-screen {
    box-sizing: border-box;
    padding: 35px 30px;
    width: 100%;

    .intro-dialog-screen__image {
      margin-bottom: 16px;
    }

    .intro-dialog-screen__text {
      font-size: 15px;
      margin-bottom: 16px;
    }

    .intro-dialog-screen__button {
      padding: 16px 16px 16px 28px;
      width: 100%;
    }
  }
}
