:root {
  --font-size-l: 14px;
  --font-size-m: 12px;
  --font-size-s: 11px;
  --font-size-xl: 16px;
  --font-size-xs: 10px;
  --font-size-xxl: 20px;
  --font-size-xxs: 9px;
}

* {
  box-sizing: border-box;
}

.container-center-horizontal {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
}

.valign-text-middle {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.background {
  width: 100vw;
}

.header {
  width: 100%;
  height: 70px;
  display: flex;
  justify-content: center;
  color: var(--eerie-black);
  font-family: var(--font-family-line_seed_jp_otf-regular);
  font-size: 12px;
  font-weight: 400;
  background-color: var(--white);
  box-shadow: 0px 10px 10px -6px #00000036;
  z-index: 1000;
}

.header-link {
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 8px;
  color: var(--eerie-black) !important;
  text-decoration: none;
}

.header-spa-icon {
  width: 19px;
  height: 16px;
  margin-left: 10px;
  margin-right: 20px;
}

/* コンテンツ全体のコンテナ要素 */
.contents-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 60px;
  width: 100%;
  margin-top: 40px;
  text-align: center;
}

/* 青字のセクションテキスト */
.section-text {
  padding-left: 5px;
  color: var(--moonstone);
  font-family: var(--font-family-line_seed_jp_otf-bold);
  font-size: 20px;
  letter-spacing: 4px;
  margin: 10px 0px;
}

.sub-section-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

/* 青字のサブセクションテキスト */
.sub-section-text {
  padding-left: 10px;
  color: var(--moonstone);
  font-family: var(--font-family-line_seed_jp_otf-bold);
  font-size: 18px;
  letter-spacing: 5px;
  margin: 10px 0px;
}

.spa-icon-divider {
  width: 19px;
  height: 16px;
  margin: 10px;
}

.description-text {
  color: var(--black);
  font-family: var(--font-family-line_seed_jp_otf-regular);
  font-size: 12px;
  letter-spacing: 3px;
  line-height: 24px;
}

/* フッターのコンテナ要素 */
.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  width: 100%;
  text-align: center;
  margin-bottom: 28px;
}

/* TOPページ以外のフッターページリンクのコンテナ要素 */
.page-link-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.page-link {
  color: var(--black);
  font-family: var(--font-family-line_seed_jp_otf-regular);
  font-size: var(--font-size-xl);
  font-weight: 400;
  letter-spacing: 3px;
}

.footer-logo {
  width: 240px;
}

.footer-copyright {
  color: var(--black);
  font-family: var(--font-family-line_seed_jp_otf-regular);
  font-weight: 400;
  font-size: 12px;
  padding: 5px;
}

.footer-copyright-llss {
  font-size: 12px;
  letter-spacing: 2px;
}

.footer-copyright-yournet {
  font-size: 10px;
  letter-spacing: 3px;
}

/* ハンバーガーメニューボタン */
.hamburger {
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
}

.hamburger span {
  width: 75%;
  height: 3px;
}

.hamburger span:nth-child(1) {
  top: 8px;
}

.hamburger span:nth-child(2) {
  top: 18px;
}

.hamburger span:nth-child(3) {
  top: 28px;
}


.menu a {
  margin: 50px 0;
  font-size: 20px;
  letter-spacing: 2px;
}
