@charset "UTF-8";

/* -------------------------------------
  base
------------------------------------- */
html {
  font-size: 62.5%;
  /* iOS対策: スクロール時の背景固定 */
  height: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo,
    sans-serif;
  line-height: 1.6;
  font-weight: normal;
  font-size: 1.6rem;
  word-break: keep-all;
  color: #333;
  /* iOS対策: 背景の固定をサポート */
  min-height: 100%;
  position: relative;
  overflow-x: hidden;
}
:root {
  --bg-offset-x: 0px;
  --bg-offset-y: 0px;
}

body::before {
  content: '';
  display: block;
  position: fixed;
  /* パララックス効果の余白分を考慮して拡大 */
  top: -30px;
  left: -30px;
  right: -30px;
  bottom: -30px;
  z-index: -1;
  width: calc(100% + 60px);
  height: calc(100% + 60px);
  background-repeat: no-repeat;
  background-position: calc(50% + var(--bg-offset-x)) calc(50% + var(--bg-offset-y));
  background-image: url('../assets/images/bg.png');
  background-size: cover;
  /* iOS対策: transform3dで固定 */
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  /* スクロール時のちらつき防止 */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.is-pc {
  display: block;
}

.is-sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }

  .is-sp {
    display: block;
  }
}

img {
  display: block;
  height: auto;
}

a img {
  transition: transform 0.3s ease;
}

a:hover img {
  transform: scale(1.05);
}

button {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin: 0 auto;
}

button a {
  display: block;
  text-decoration: none;
}

button img {
  display: block;
  width: 40rem;
  height: auto;
}

.text-small {
  font-size: 3.6rem;
}

.text-medium {
  font-size: 4.5rem;
}

.text-large {
  font-size: 6rem;
}

/* -------------------------------------
  layout
------------------------------------- */
.contents {
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem;
}

/* -------------------------------------
  header
------------------------------------- */
header {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
}

header .logo img {
  width: 27rem;
}

header .nav {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  column-gap: 3rem;
}

header .nav li img {
  height: 3.2rem;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 1));
}

header .nav li.nav-faq img {
  height: 4rem;
}

/* -------------------------------------
  partner logos
------------------------------------- */
.partner-logos {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-align-content: center;
  align-content: center;
  gap: 2rem 7vw;
  margin-left: 3rem;
  padding: 4rem 0 5rem;
}

.partner-logo {
  height: 5rem;
}

.partner-logo img {
  height: 100%;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 1));
}

.partner-logo.style-cube {
  height: 3.5rem;
}

.partner-logo.elements-garden {
  margin-bottom: 1.5rem;
}

@media (max-width: 767px) {
  .partner-logos {
    gap: 2rem;
    margin: 2rem auto 0;
    padding-top: 1rem;
  }

  .partner-logo {
    height: 5rem;
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }

  .partner-logo.style-cube {
    height: 3.5rem;
  }

  .partner-logo.elements-garden {
    margin-bottom: 1.5rem;
  }

  .partner-logo img {
    margin: 0 auto;
  }
}

/* -------------------------------------
  main visual
------------------------------------- */
.mv {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4rem 0;
}

.mv .read {
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
}

.mv .read .text-large {
  padding: 4rem 0 2rem;
}

/* -------------------------------------
  message
------------------------------------- */
.message {
  font-weight: bold;
  line-height: 1.8;
  text-align: center;
}

.message .paragraph {
  margin-top: 6rem;
}

/* -------------------------------------
  description
------------------------------------- */
.description {
  padding: 10rem 0 6rem;
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
}

.description .title {
  border-radius: 2rem;
  background: linear-gradient(to right, #ec92b6, #b7ddf5);
  color: white;
  text-align: center;
  padding: 0.05rem 20rem;
  font-size: 3.2rem;
  font-weight: bold;
  display: inline-block;
}

.description p {
  font-size: 2.4rem;
  margin-top: 4rem;
}

.description p .text-small {
  font-size: 3rem;
}

.description button {
  padding-top: 3rem;
}

/* -------------------------------------
  requirements
------------------------------------- */
.requirements {
  width: 100%;
  max-width: 900px;
  padding: 6rem 0;
  margin: 0 auto;
  font-size: 2rem;
  font-weight: bold;
}

.requirements .container {
  background-color: #fff;
  border: 3px solid #000;
  padding: 5rem 3rem 3rem;
  position: relative;
  margin-top: 3rem;
  text-align: center;
}

.requirements .title {
  background-color: #000;
  color: white;
  text-align: center;
  padding: 0.5rem 5rem;
  font-size: 3.2rem;
  font-weight: bold;
  display: inline-block;
  position: absolute;
  top: -3rem;
  left: 50%;
  transform: translateX(-50%);
}

.requirements .requirement-item {
  font-size: 2.4rem;
  font-weight: bold;
}

.requirements .period {
  background-color: #000;
  color: white;
  display: inline-block;
  border-radius: 10rem;
  padding: 1rem 6rem 1.4rem;
  margin-top: 2rem;
}

.requirements .flow li {
  position: relative;
  border: 3px solid;
  border-image: linear-gradient(to right, #ec92b6, #b7ddf5) 1;
  background-color: #fff;
  padding: 1rem 1rem 1rem 9rem;
  margin-left: 7rem;
  margin-top: 5rem;
}

.requirements .flow li:nth-of-type(2) {
  margin-top: 7rem;
}

.requirements .flow li::before {
  position: absolute;
  left: -7rem;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  width: 14rem;
  height: 14rem;
}

.requirements .flow li:nth-of-type(1):before {
  content: url('../assets/svg/icon_application_1st.svg');
}

.requirements .flow li:nth-of-type(2):before {
  content: url('../assets/svg/icon_application_2nd.svg');
}

.requirements .flow li:nth-of-type(3):before {
  content: url('../assets/svg/icon_application_3rd.svg');
}

.requirements .note {
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: normal;
  display: inline-block;
  margin-top: 0.5rem;
}

.requirements .final {
  padding: 4rem 0;
  text-align: center;
}

.requirements .final .text-medium {
  padding-bottom: 3rem;
  line-height: 1.2;
}

/* -------------------------------------
  howto
------------------------------------- */
.howto {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 6rem 0;
  font-size: 2rem;
  font-weight: bold;
}

.howto .container {
  position: relative;
  padding: 5rem 2rem 3rem 2rem;
  margin: 3rem auto 1rem;
  text-align: center;
  border-radius: 5rem;
  background: white;
}

.howto .container::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(135deg, #ec92b6, #b7ddf5);
  border-radius: 5rem;
  z-index: -1;
}

.howto .title {
  border-radius: 10rem;
  background: linear-gradient(to right, #ec92b6, #b7ddf5);
  color: white;
  text-align: center;
  padding: 0.5rem 5rem;
  font-size: 3.2rem;
  font-weight: bold;
  display: inline-block;
  position: absolute;
  top: -3rem;
  left: 50%;
  transform: translateX(-50%);
}

.howto .howto-text {
  padding-bottom: 2rem;
  font-size: 2rem;
  font-weight: bold;
}

.howto .step-container {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: stretch;
  align-items: stretch;
  -webkit-align-content: center;
  align-content: center;
  gap: 2rem;
}

.howto .step-box {
  width: calc(50% - 2rem);
  display: flex;
  align-items: center;
  background-color: white;
  border: 2px solid #ec92b6;
  border-radius: 2rem;
  overflow: hidden;
}

.howto .step-number {
  background-color: #e794b5;
  color: white;
  padding: 1rem 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.howto .step-label {
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 2px;
}

.howto .step-circle {
  width: 2.6rem;
  height: 2.6rem;
  border: 2px solid white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
}

.howto .step-content {
  padding: 1rem 2rem;
  flex: 1;
}

.howto .step-text {
  font-size: 2rem;
  font-weight: bold;
}

.howto .arrow {
  padding: 1rem 0 0;
  font-size: 3rem;
  font-weight: bold;
}

.howto .note {
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: normal;
  display: inline-block;
  margin-top: 0.5rem;
}

/* -------------------------------------
  faq
------------------------------------- */
#faq {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 6rem 0;
  font-size: 2rem;
  font-weight: bold;
}

#faq .container {
  position: relative;
  padding: 5rem 3rem 3rem;
  margin: 3rem auto 1rem;
  text-align: center;
  border-radius: 5rem;
  background: white;
}

#faq .container::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(135deg, #ec92b6, #b7ddf5);
  border-radius: 5rem;
  z-index: -1;
}

#faq .title {
  border-radius: 10rem;
  background: linear-gradient(to right, #ec92b6, #b7ddf5);
  color: white;
  text-align: center;
  padding: 0.5rem 5rem;
  font-size: 3.2rem;
  font-weight: bold;
  display: inline-block;
  position: absolute;
  top: -3rem;
  left: 50%;
  transform: translateX(-50%);
}

#faq .faq-list {
  word-break: break-all;
  text-align: left;
}

#faq .faq-list .faq-q {
  font-size: 2.4rem;
}

#faq .faq-list .faq-a {
  font-size: 1.6rem;
}

#faq .faq-list .faq-a:not(:last-of-type) {
  padding-bottom: 2rem;
}

/* -------------------------------------
  terms
------------------------------------- */
.terms {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 6rem 0;
  font-size: 2rem;
  font-weight: bold;
}

.terms .container {
  word-break: break-all;
  position: relative;
  padding: 5rem 3rem 3rem;
  margin: 3rem auto 1rem;
  text-align: center;
  border-radius: 5rem;
  background: white;
}

.terms .container:first-of-type {
  margin-bottom: 6rem;
}

.terms .container::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(135deg, #ec92b6, #b7ddf5);
  border-radius: 5rem;
  z-index: -1;
}

.terms .title {
  border-radius: 10rem;
  background: linear-gradient(to right, #ec92b6, #b7ddf5);
  color: white;
  text-align: center;
  padding: 0.5rem 5rem;
  font-size: 3.2rem;
  font-weight: bold;
  display: inline-block;
  position: absolute;
  top: -3rem;
  left: 50%;
  transform: translateX(-50%);
}

.terms .terms-text {
  padding-bottom: 2rem;
  font-size: 1.2rem;
  font-weight: normal;
  text-align: left;
  max-height: 20rem;
  overflow-y: auto;
  border: 1px solid #ddd;
  padding: 1.5rem;
  background-color: #fff;
  border-radius: 5px;
}

/* スクロールバーのスタイル */
.terms .terms-text::-webkit-scrollbar {
  width: 8px;
}

.terms .terms-text::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.terms .terms-text::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}

.terms .terms-text::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.terms .terms-text a {
  text-decoration: underline;
}

.terms .contact {
  margin-top: 2rem;
}

/* -------------------------------------
  hamburger menu
------------------------------------- */
.hamburger-menu {
  display: none;
  position: fixed;
  top: 2rem;
  right: 2rem;
  width: 4rem;
  height: 3rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger-line {
  display: block;
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #ec92b6;
  border-radius: 2px;
  left: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger-line:nth-child(1) {
  top: 0;
}

.hamburger-line:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.hamburger-line:nth-child(3) {
  bottom: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(1) {
  background-color: #fff;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.hamburger-menu.active .hamburger-line:nth-child(2) {
  background-color: #fff;
  opacity: 0;
}

.hamburger-menu.active .hamburger-line:nth-child(3) {
  background-color: #fff;
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}

/* -------------------------------------
  mobile navigation modal
------------------------------------- */
.mobile-nav-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  pointer-events: none;
}

.mobile-nav-modal.active {
  pointer-events: auto;
}

.mobile-nav-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(5px);
}

.mobile-nav-modal.active .mobile-nav-overlay {
  opacity: 1;
}

.mobile-nav-content {
  position: absolute;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100%;
  background: linear-gradient(135deg, #ec92b6 0%, #b7ddf5 100%);
  box-shadow: -2px 0 20px rgba(0, 0, 0, 0.3);
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  padding: 80px 30px 30px;
}

.mobile-nav-modal.active .mobile-nav-content {
  right: 0;
}

.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-list li {
  margin-bottom: 30px;
}

.mobile-nav-list a {
  display: block;
  color: #fff;
  font-size: 4rem;
  font-weight: bold;
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.mobile-nav-list a:hover,
.mobile-nav-list a:focus {
  border-bottom-color: #fff;
}

/* -------------------------------------
  sticky sidebar
------------------------------------- */
.sticky-sidebar {
  position: fixed;
  top: 5%;
  left: 4rem;
  transform: translateY(-5%);
  width: 16rem;
  background-color: #fff;
  border-radius: 5rem;
  box-shadow: 0 0 20px rgba(236, 146, 182, 1);
  padding: 3rem 1rem 1.5rem;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  text-align: center;
  font-weight: bold;
}

.sticky-sidebar.active {
  opacity: 1;
  visibility: visible;
}

.sticky-sidebar .sticky-logo {
  width: 80%;
  margin: 0 auto;
}

.sticky-sidebar .sticky-content .text-small {
  font-size: 1rem;
  margin: 1.5rem 0 1rem;
}

.sticky-sidebar .sticky-content .text-medium {
  font-size: 1.2rem;
}

.sticky-sidebar button img {
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.8));
  transition: transform 0.3s ease;
}

/* -------------------------------------
  footer
------------------------------------- */
footer {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.4rem;
}

/* =====================================
  モバイル対応スタイル
===================================== */
@media screen and (max-width: 767px) {
  /* -------------------------------------
    基本設定
  ------------------------------------- */
  html {
    font-size: 50%;
  }

  body {
    font-size: 1.4rem;
    line-height: 1.7;
  }
  body::before {
    background-position: center center;
    background-image: url('../assets/images/bg_sp.png');
    /* iOS Safari対策 */
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    /* より強力な固定 */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    will-change: transform;
  }

  .text-small {
    font-size: 2.4rem;
  }

  .text-medium {
    font-size: 3rem;
  }

  .text-large {
    font-size: 3.6rem;
  }

  .contents {
    padding: 4rem 1.5rem 1.5rem;
  }

  /* -------------------------------------
    ヘッダー
  ------------------------------------- */
  header {
    display: block;
    text-align: center;
    padding-bottom: 2rem;
  }

  header .logo img {
    width: 20rem;
    margin: 0 auto;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 1));
  }

  header .nav {
    display: none;
  }

  .hamburger-menu {
    display: block;
  }

  .mobile-nav-modal {
    display: block;
  }

  /* -------------------------------------
    メインビジュアル
  ------------------------------------- */
  .mv {
    padding: 5rem 0;
  }

  .mv .read {
    padding: 0 1rem;
  }

  .mv .read .text-large {
    padding: 2rem 0 1rem;
  }

  button img {
    width: 100%;
    max-width: 80%;
    margin: 0 auto;
  }

  /* -------------------------------------
    メッセージ
  ------------------------------------- */
  .message {
    padding: 0 1.5rem;
  }

  .message .paragraph {
    margin-top: 3rem;
  }

  .message .text-medium {
    font-size: 2.8rem;
  }

  .message .text-small {
    font-size: 2rem;
  }

  /* -------------------------------------
    説明
  ------------------------------------- */
  .description {
    padding: 5rem 1.5rem 3rem;
  }

  .description .title {
    width: 70%;
    border-radius: 1.5rem;
    padding: 0.5rem 0;
    margin: 2rem auto 2rem;
    font-size: 2.4rem;
    font-weight: bold;
    display: inline-block;
  }

  .description p {
    font-size: 1.8rem;
    margin-top: 2rem;
  }

  .description p .text-small {
    font-size: 2.2rem;
  }

  /* -------------------------------------
    募集要項
  ------------------------------------- */
  .requirements {
    padding: 3rem 0;
  }

  .requirements .container {
    margin: 2rem 0;
    padding: 4rem 1.5rem 2rem;
  }

  .requirements .title {
    width: 70%;
    font-size: 2.4rem;
    padding: 0.5rem 5rem;
    top: -2.6rem;
  }

  .requirements .requirement-item {
    font-size: 1.8rem;
  }

  .requirements .period {
    width: 90%;
    font-size: 1.6rem;
    padding: 0.8rem 3rem 1rem;
    border-radius: 5rem;
  }

  .requirements .flow {
    padding: 0;
  }

  .requirements .flow li {
    font-size: 2rem;
    margin-left: 3.5rem;
    margin-top: 3rem;
    padding: 0.8rem 0.8rem 0.8rem 5rem;
  }

  .requirements .flow li::before {
    width: 8rem;
    height: 8rem;
    left: -4rem;
  }

  .requirements .flow li:nth-of-type(2) {
    margin-top: 3rem;
  }

  .requirements .note {
    text-align: left;
    font-size: 1.3rem;
  }

  .requirements .final {
    padding: 2rem 0;
  }

  .requirements .final .text-medium {
    font-size: 2.6rem;
    padding-top: 1rem;
    padding-bottom: 1.5rem;
  }

  /* -------------------------------------
    応募方法
  ------------------------------------- */
  .howto {
    padding: 3rem 0;
  }

  .howto .container {
    margin: 2rem 0;
    padding: 4rem 2rem 2rem;
    border-radius: 3rem;
  }

  .howto .container::before {
    border-radius: 3rem;
  }

  .howto .title {
    width: 70%;
    font-size: 2.4rem;
    padding: 0.5rem 5rem;
    top: -2.6rem;
  }

  .howto .howto-text {
    font-size: 1.6rem;
    padding-bottom: 1rem;
  }

  .howto .step-container {
    flex-direction: column;
    gap: 1.5rem;
  }

  .howto .step-box {
    width: 100%;
  }

  .howto .step-number {
    padding: 1rem 1.5rem 1.5rem;
  }

  .howto .step-label {
    font-size: 1.8rem;
  }

  .howto .step-circle {
    width: 2rem;
    height: 2rem;
    font-size: 1.6rem;
  }

  .howto .step-content {
    padding: 0.8rem 1.5rem;
  }

  .howto .step-text {
    font-size: 1.6rem;
  }

  .howto .arrow {
    font-size: 2.4rem;
    padding: 0.5rem 0;
  }

  .howto .note {
    font-size: 1.3rem;
    padding: 0 1rem;
  }

  /* -------------------------------------
    FAQ
  ------------------------------------- */
  #faq {
    padding: 3rem 0;
  }

  #faq .container {
    margin: 2rem 0;
    padding: 4rem 1.5rem 2rem;
    border-radius: 3rem;
  }

  #faq .container::before {
    border-radius: 3rem;
  }

  #faq .title {
    width: 70%;
    font-size: 2.4rem;
    padding: 0.5rem 5rem;
    top: -2.6rem;
  }

  #faq .faq-list {
    padding: 0 0.5rem;
  }

  #faq .faq-list .faq-q {
    font-size: 1.8rem;
    line-height: 1.5;
  }

  #faq .faq-list .faq-a {
    font-size: 1.4rem;
    line-height: 1.6;
  }

  /* -------------------------------------
    利用規約
  ------------------------------------- */
  .terms {
    padding: 3rem 0 0;
  }

  .terms .container {
    margin: 2rem 0;
    padding: 4rem 1.5rem 2rem;
    border-radius: 3rem;
  }

  .terms .container::before {
    border-radius: 3rem;
  }

  .terms .container:first-of-type {
    margin-bottom: 6rem;
  }

  .terms .title {
    width: 70%;
    font-size: 2.4rem;
    padding: 0.5rem 3rem;
    top: -2.6rem;
  }

  .terms .terms-text {
    font-size: 1.1rem;
    padding-bottom: 1rem;
    max-height: 20rem;
    padding: 1rem;
  }

  .terms .contact {
    margin: 2rem 0 0 1.5rem;
    line-height: 1.4;
  }

  /* -------------------------------------
    フッター
  ------------------------------------- */
  footer {
    padding: 2rem 1.5rem;
    font-size: 1.2rem;
    text-align: left;
  }

  footer .note {
    font-size: 1.1rem;
    line-height: 1.5;
  }

  .sticky-sidebar {
    display: none;
  }
}
