/* 1. Use a more-intuitive box-sizing model */
*, *::before, *::after {
  box-sizing: border-box;
}

/* 2. Remove default margin */
*:not(dialog) {
  margin: 0;
}

/* 3. Enable keyword animations */
@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}
body {
  /* 4. Add accessible line-height */
  line-height: 1.5;
  /* 5. Improve text rendering */
  -webkit-font-smoothing: antialiased;
}

/* 6. Improve media defaults */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

/* 7. Inherit fonts for form controls */
input, button, textarea, select {
  font: inherit;
}

h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

/*
  10. Create a root stacking context
*/
#root, #__next {
  isolation: isolate;
}

/* html */
html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  overflow: hidden;
}

/* body */
body {
  margin: 0;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  font-size: 1.5rem;
  line-height: 1.7;
  color: #424242;
  background-color: #FFFFFF;
  overflow-y: scroll;
}

html, body {
  height: 100vh;
  margin: 0;
}

/* image */
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

/* link */
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* list */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* paragraph */
p {
  margin: 0;
  color: #424242;
  line-height: 1.4;
  word-break: normal;
}

/* =========================================
   Heading
   ========================================= */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 700;
  line-height: 1.4;
  color: #6A004B;
}

.container__inner {
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}

.header {
  height: -moz-fit-content;
  height: fit-content;
  max-height: 78px;
}
.header__container {
  padding: 1.6rem;
}
.header__logo {
  text-align: center;
}
.header__logo a > img {
  width: 100%;
  max-width: 150px;
  max-height: 40px;
  display: inline-block;
}

.footer {
  margin: 6rem auto 0;
}
.footer__container {
  text-align: center;
}
.footer__text {
  border-top: 1px solid #EEEEEE;
  padding: 4rem 0 6rem;
  font-weight: 500;
  font-size: 1.2rem;
  color: #616161;
  text-align: center;
}

.layout__side--left {
  display: flex !important;
  background-image: linear-gradient(to right, #f8e5f2 0%, #fbf5f9 300%);
}
.layout__side--left > img {
  width: 80%;
  max-width: 280px;
}
.layout__side--right {
  position: relative;
  background-image: linear-gradient(to right, #f8e5f2 -200%, #fbf5f9 100%);
}
.layout__side--right-max-w {
  width: 100%;
  height: 100vh;
  max-width: 360px;
  margin: 0 auto 0 0;
  position: relative;
}
.layout__side--right-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 150px;
}
.layout__side--right-content > img {
  width: 100%;
}
.layout__side--peach-container {
  position: absolute;
  bottom: 0;
  left: 0;
  mix-blend-mode: multiply;
}
.layout__side--peach-container img:first-child {
  position: relative;
  max-height: 220px;
  left: -5%;
}
.layout__side--peach-container img:last-child {
  max-width: 280px;
  position: relative;
  left: 30%;
}
.layout__side--flex-text {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 0 0 1.5rem;
}
.layout__side--flex-text > p {
  color: #6A004B;
  font-weight: 700;
  margin: 0 0.4rem 0 0;
}

.layout {
  display: flex;
}
.layout__main {
  position: relative;
  z-index: 200;
  width: 100%;
  margin: 0 auto;
  background: #fff;
  -webkit-overflow-scrolling: touch;
  overflow: hidden;
}
.layout__side {
  display: none;
  flex: 1;
}
.layout__side--left {
  align-items: center;
  justify-content: center;
}
@media (min-width: 1024px) {
  .layout__side {
    display: block;
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
  }
  .layout__main {
    width: 540px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
  }
}

section {
  margin: 6rem 0 0;
}

.bg-pink {
  background-image: linear-gradient(to right, #f8e5f2 0%, #fbf5f9 100%);
  padding: 6rem 0;
  margin: 0 auto;
}

.content__title {
  margin: 0 0 3rem;
}
.content__title--en {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.4;
  color: #6A004B;
  font-family: "Century Gothic Pro", "Century Gothic", sans-serif;
  display: block;
  text-align: center;
}
.content__title--ja {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.4;
  color: #6A004B;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  display: block;
  text-align: center;
}

.common__para {
  font-size: 1.5rem;
  color: #212121;
  font-weight: medium;
}

.paragraph__center {
  text-align: center;
}
.paragraph__center--large {
  text-align: center;
  font-size: 1.8rem;
  color: #424242;
  font-weight: 700;
}

.display__mobile--sm {
  display: inline-block;
}
@media (min-width: 400px) {
  .display__mobile--sm {
    display: none;
  }
}
.display__mobile--sm-none {
  display: none;
}
@media (min-width: 400px) {
  .display__mobile--sm-none {
    display: inline-block;
  }
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  padding: 1rem 1.5rem;
  border-radius: 0.4rem;
  margin: 2.5rem 0 0;
  font-weight: 700;
}
.btn__primary {
  background-color: #B50080;
  color: #fff;
  border: none;
}
.btn__primary--100 {
  width: 100%;
}
.btn__access {
  border: 1px solid #BDBDBD;
  background-color: #FFFFFF;
  color: #424242;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}

.noniwa-no {
  font-size: 22px;
}

.hero {
  margin: 0;
}
.hero__wrapper {
  position: relative;
  width: 100%;
  padding-top: 100%;
  background-image: url("../../assets/images/hero_hatiouji_main.png");
  background-size: cover;
  background-position: center;
}
.hero__container {
  position: absolute;
  left: 50%;
  top: 5%;
  transform: translate(-50%, 0);
  text-align: center;
  width: 100%;
}
.hero__title {
  font-size: 4.2rem;
  color: #FFFFFF;
  font-family: "Toppan Bunkyu Midashi Gothic", "Noto Sans CJK JP", sans-serif;
  margin: 0 0 1rem;
  display: flex;
  flex-direction: column;
  font-weight: 800;
}
.hero__title--base {
  margin: 0 0 -1rem;
  font-size: 4rem;
  display: inline-block;
}
.hero__title--block {
  display: inline-block;
}
.hero__title--lg {
  display: inline-block;
  font-size: 6rem;
}
.hero__subtitle {
  display: inline-block;
  color: #FFFFFF;
  font-size: 2.8rem;
  line-height: 1;
}
.hero__subtitle--lg {
  font-size: 2.6rem;
  display: inline-block;
  position: relative;
  top: 0.05rem;
}
.hero__subtitle--mid {
  font-size: 2.4rem;
  display: inline-block;
  position: relative;
  top: -0.05rem;
  margin: 0 0 0 -0.4rem;
}
.hero__subtitle--small {
  display: inline-block;
  font-size: 1.8rem;
  position: relative;
}
.hero__subtitle--ml-sm {
  top: -0.05rem;
  left: -0.4rem;
}
.hero__subtitle--text-flex {
  display: flex;
  gap: -1rem;
  align-items: end;
}
.hero__subtitle--ribbon {
  position: relative;
  padding: 0.6rem 3rem 0.8rem;
  background-color: #e34393;
  display: inline-block;
  clip-path: polygon(0% 0%, 100% 0%, calc(100% - 18px) 50%, 100% 100%, 0% 100%, 18px 50%);
}

.info {
  margin-bottom: 6rem;
}
.info__item--h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #212121;
  margin-bottom: 1rem;
}
.info__item > hr {
  margin: 0 0 3rem;
  background-color: #e0e0e0;
  height: 1px;
  width: auto;
  border: none;
}
.info__item > p {
  font-size: 1.8rem;
  font-weight: 500;
  color: #212121;
  word-break: normal;
}
.info__item--image {
  margin: 1.5rem 0;
}
.info__item--image-container {
  position: relative;
}
.info__item--image-container > p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  font-weight: 700;
  width: 100%;
  text-align: center;
  padding: 3rem 0;
  background-color: rgba(255, 255, 255, 0.8);
}
.info__item--image-container > p span {
  background: linear-gradient(90deg, #b50080, #da80bf);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.info__shop-list {
  margin: 2rem 0 0;
}
.info__shop-item {
  padding: 0.8rem 0;
  display: flex;
  align-items: center;
  flex-direction: row;
  border-bottom: 1px dotted #e0e0e0;
}
.info__shop-item-column {
  display: flex;
  flex-direction: column;
  padding-left: 0.8rem;
  border-left: 1px solid #e0e0e0;
}
.info__shop-item-column > .info__shop-name {
  border: none;
  padding-left: 0;
}
.info__floor-code {
  font-size: 1.2rem;
  color: #9e9e9e;
  margin-right: 1rem;
  font-weight: 500;
}
@media (min-width: 400px) {
  .info__floor-code {
    font-size: 14px;
  }
}
.info__floor-code > span {
  width: 20px;
  height: 20px;
  line-height: 18px;
  vertical-align: middle;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border: 1px solid #bdbdbd;
  border-radius: 50%;
  display: inline-block;
}
@media (min-width: 400px) {
  .info__floor-code > span {
    width: 24px;
    height: 24px;
    line-height: 22px;
  }
}
.info__paragraph {
  font-size: 1.5rem;
  font-weight: 500;
  color: #212121;
  margin: auto 0 3rem;
  text-align: center;
}
.info__shop-annotation {
  font-size: 1.2rem;
  line-height: 1;
}
.info__shop-name {
  flex: 2;
  font-size: 1.5rem;
  display: flex;
  padding-left: 0.8rem;
  border-left: 1px solid #e0e0e0;
  align-items: center;
  font-weight: 500;
}
@media (min-width: 400px) {
  .info__shop-name {
    font-size: 1.8rem;
  }
}
.info__shop-category {
  font-size: 10px;
  color: #9e9e9e;
  margin-left: 0.5rem;
  width: -moz-fit-content;
  width: fit-content;
}
@media (min-width: 400px) {
  .info__shop-category {
    font-size: 1.2rem;
  }
}

.info__item:first-of-type .info__shop-list {
  margin-bottom: 4rem;
}

.concept {
  position: relative;
}
.concept__paragraph--large {
  text-align: center;
  font-size: 1.8rem;
  color: #212121;
  font-weight: bold;
  line-height: 2;
  margin: 2rem 0 0;
}
.concept__bg--left {
  position: absolute;
  bottom: 7%;
  left: 0;
  width: 50%;
  max-width: 160px;
}
.concept__bg--right {
  position: absolute;
  bottom: 7%;
  right: 0;
  width: 50%;
  max-width: 160px;
}
.concept__title {
  margin: 0 0 3rem;
}
.concept__title--en {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.4;
  color: #6A004B;
  font-family: "Century Gothic Pro", "Century Gothic", sans-serif;
  display: block;
  text-align: center;
}
.concept__title--ja {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.4;
  color: #6A004B;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  display: block;
  text-align: center;
}
.concept__item--bunner_link {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 1.6rem auto;
  overflow: hidden;
  border-bottom: 1px solid #bfbfbf;
}
.concept__item--bunner_link img {
  margin: 0 auto;
}
.concept__item--image-container {
  position: relative;
  border-radius: 0.8rem;
  overflow: hidden;
  margin: 0 0 2rem;
}
.concept__item--image-container > p {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  font-size: 2.5rem;
  font-weight: 700;
  width: 100%;
  text-align: center;
  padding: 2rem 0;
  background-color: rgba(255, 255, 255, 0.75);
}
.concept__item--image-container > p span {
  color: #B50080;
}
.concept__desc--left {
  font-weight: 500;
  text-align: left;
  font-size: 1.8rem;
  color: #212121;
}
.concept__desc--center {
  font-weight: 700;
  text-align: center;
  font-size: 1.8rem;
  color: #212121;
  position: relative;
  z-index: 10;
}

.shop-news__btn-wrapper {
  width: 100%;
  position: relative;
  z-index: 10;
}

.topics {
  margin-bottom: 6rem;
}
.topics__item--h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #212121;
  margin-bottom: 1rem;
}
.topics__item > hr {
  margin: 0 0 3rem;
}
.topics__item > p {
  font-size: 1.8rem;
  font-weight: 500;
  color: #212121;
  word-break: normal;
}
.topics__item--image {
  margin: 1.5rem 0;
}
.topics__item--image-container {
  position: relative;
}
.topics__item--image-container > p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  font-weight: 700;
  width: 100%;
  text-align: center;
  padding: 3rem 0;
  background-color: rgba(255, 255, 255, 0.8);
}
.topics__item--image-container > p span {
  background: linear-gradient(90deg, #b50080, #da80bf);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.topics__shop-list {
  margin: 2rem 0 0;
}
.topics__shop-item {
  padding: 0.8rem 0;
  display: flex;
  align-items: center;
  flex-direction: row;
  border-bottom: 1px dotted #BDBDBD;
}
.topics__floor-code {
  font-size: 1.3rem;
  color: #9e9e9e;
  padding-right: 0.8rem;
  border-right: 1px solid #9e9e9e;
  margin-right: 1rem;
  font-weight: 500;
}
@media (min-width: 400px) {
  .topics__floor-code {
    font-size: 14px;
  }
}
.topics__shop-name {
  flex: 2;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  font-weight: 500;
}
@media (min-width: 400px) {
  .topics__shop-name {
    font-size: 1.8rem;
  }
}
.topics__shop-category {
  font-size: 10px;
  color: #9e9e9e;
  margin-left: 0.5rem;
  width: -moz-fit-content;
  width: fit-content;
}
@media (min-width: 400px) {
  .topics__shop-category {
    font-size: 1.2rem;
  }
}

.info__item:first-of-type .info__shop-list {
  margin-bottom: 4rem;
}

.topics__item--image-container:first-of-type {
  margin-bottom: 3rem;
}

.recruit__title {
  margin: 0 0 3rem;
}
.recruit__title--en {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.4;
  color: #6A004B;
  font-family: "Century Gothic Pro", "Century Gothic", sans-serif;
  display: block;
  text-align: center;
}
.recruit__title--ja {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.4;
  color: #6A004B;
  font-family: "Noto Sans CJK JP", "Noto Sans JP", sans-serif;
  display: block;
  text-align: center;
}
.recruit__item--bunner_link {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 1.6rem auto;
  overflow: hidden;
  border-bottom: 1px solid #bfbfbf;
}
.recruit__item--bunner_link img {
  margin: 0 auto;
}
.recruit__item--image-container {
  position: relative;
  border-radius: 0.8rem;
  overflow: hidden;
  margin: 0 0 2rem;
}
.recruit__item--image-container > p {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
  font-size: 2.5rem;
  font-weight: 700;
  width: 100%;
  text-align: center;
  padding: 2rem 0;
  background-color: rgba(255, 255, 255, 0.75);
}
.recruit__item--image-container > p span {
  color: #B50080;
}
.recruit__desc--left {
  font-weight: 500;
  text-align: left;
  font-size: 1.8rem;
  color: #212121;
}
.recruit__desc--center {
  font-weight: 700;
  text-align: center;
  font-size: 1.8rem;
  color: #212121;
}

.tenants {
  padding-bottom: 6rem;
}
.tenants__item--card {
  border: 1px solid #bdbdbd;
  margin-bottom: 3rem;
}
.tenants__item--card-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 1.2rem;
  border-bottom: 1px solid #bdbdbd;
  background-color: #f8e5f2;
}
.tenants__item--card-header:hover h2,
.tenants__item--card-header:hover img,
.tenants__item--card-header:hover span {
  opacity: 0.7;
}
.tenants__item--card-header h2 {
  font-size: 1.5rem;
  color: #212121;
  font-weight: bold;
  display: inline-block;
}
@media (min-width: 400px) {
  .tenants__item--card-header h2 {
    font-size: 1.8rem;
  }
}
.tenants__item--card-header h2 > a {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.tenants__item--card-header img {
  width: 18px;
  height: 18px;
  margin-left: 0.5rem;
}
.tenants__item--card-header > span {
  font-size: 1.3rem;
  color: #757575;
  font-weight: 500;
  margin-left: 1rem;
}
.tenants__item--card-body {
  padding: 0 1.2rem;
}
.tenants__item--card-body > a {
  font-size: 1.5rem;
  color: #B50080;
  font-weight: 500;
  word-break: break-all;
  display: inline-block;
  padding: 1.2rem 0;
  line-height: 1.25;
}
.tenants__item--card-body > p {
  padding: 1.2rem 0;
  font-size: 1.3rem;
  color: #757575;
  font-weight: 500;
}

.access__item--image-map-wrapper {
  margin: auto 0 3rem;
  text-align: center;
}
.access__item--map-wrapper {
  position: relative;
  width: 100%;
  padding-top: 100%;
  overflow: hidden;
}
.access__item--map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.access__item--address {
  font-style: normal;
  text-align: center;
  margin: 3rem 0 2rem;
  font-weight: 500;
  font-size: 1.8rem;
}
.access__item--btn-wrap {
  text-align: center;
}
.access__item--btn {
  border: 1px solid #BDBDBD;
  border-radius: 0.4rem;
  padding: 1rem 1.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  align-items: center;
  margin: 0 auto;
}

.share__item {
  display: flex;
  justify-content: center;
  gap: 3rem;
}
.share__item > a {
  width: 44px;
  height: 44px;
  display: inline-block;
  box-sizing: border-box;
}
.share__item > a > img {
  width: 100%;
  height: auto;
  display: block;
}
.share__item--x {
  background-color: #000000;
  padding: 1rem;
  border-radius: 0.6rem;
}/*# sourceMappingURL=style.css.map */