/* コンポーネントCSS読み込み */
/* layout */
@import url("../../layout/_header.css");
@import url("../../layout/_footer.css");

/* pages */
@import url("../../pages/top/components/_mv.css");
@import url("../../pages/top/components/_about.css");
@import url("../../pages/top/components/_recommend.css");
@import url("../../pages/top/components/_charm.css");
@import url("../../pages/top/components/_works.css");
@import url("../../pages/top/components/_earn.css");
@import url("../../pages/top/components/_review.css");
@import url("../../pages/top/components/_start.css");
@import url("../../pages/top/components/_step.css");
@import url("../../pages/top/components/_faq.css");
@import url("../../pages/top/components/_cta.css");
@import url("../../pages/top/components/_sns.css");
@import url("../../pages/top/components/_gallery.css");

/* ページ固有CSS */
#main {
  background-color: var(--white);
}

/* 追加CSS */
.links-area {
  margin: 24px 0;
  padding: 0 10px;
}

.links-area h2 {
  text-align: center;
}

.links-area ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 10px;
  padding: 0;
  margin: 20px 0 20px 0;
  list-style: none;
}

.links-area li {
  position: relative;
  flex: 1 1 calc(50% - 5px);
  height: 70px;
  border-radius: 5px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.links-area li a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;
  width: 100%;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  text-decoration: none;
  position: relative;
  z-index: 1;
}

.links-area li::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 0;
}

/* @mixin tablet() */
@media screen and (min-width: 769px) {
  #main {
    max-width: 375px;
    margin-inline: auto;
  }
}
@import url("./components/_no1.css");
/* No.1エリアのスタイル */
.no1-area {
  background-color: #FFE0EE;
}

.no1-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  background-image: url("../../../images/pages/top/no1/bg_line.png");
  background-repeat: no-repeat;
  background-position: left top;
  background-size: contain;
}

.no1-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.no1-text {
  margin: 16px auto 8px;
}

.no1-main-text {
  font-size: 16px;
  font-weight: 800;
  color: #333;
  margin: 0;
  line-height: 1.6;
  letter-spacing: 0.04em;
}

.location-highlight {
  background: #009AE0;
  color: white;
  padding: 4px 16px;
  border-radius: 26px;
  font-size: 16px;
  font-weight: 800;
  display: inline-block;
  margin: 0 8px;
}

.no1-badges {
  display: flex;
  gap: 0;
  justify-content: flex-start;
  align-items: center;
  margin-left: 8px;
}

.no1-badge {
  position: relative;
}

.badge-image {
  max-width: 118px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}



.no1-people-images {
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.no1-notes {
  padding: 8px 16px 16px 16px;
  text-align: left;
  max-width: 720px;
}

.note-item {
  font-size: 8px;
  line-height: 1.5;
}

.navit-logo {
  position: absolute;
  bottom: 0;
  right: 0;
}

.navit-image {
  width: 140px;
  height: auto;
}