@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@400;500;700&display=swap');
:root {
  --header-height: 73px;
}
#np-lp *,
#np-lp *::before,
#np-lp *::after {
  box-sizing: border-box;
}
:focus-visible {
  outline-offset: 3px;
}
:where(#np-lp) {
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}
#np-lp ul[class],
#np-lp ol[class] {
  padding: 0;
}
#np-lp h1,
#np-lp h2,
#np-lp h3,
#np-lp h4,
#np-lp p,
#np-lp li,
#np-lp img,
#np-lp dl,
#np-lp a {
  margin: 0;
}
#np-lp ul[class],
#np-lp ol[class] {
  list-style: none;
  margin-inline: 0;
}
#np-lp img {
  display: block;
  max-width: 100%;
  height: auto;
}
body {
  margin: 0;
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  font-family: "M PLUS Rounded 1c", sans-serif;
  /* transform: rotate(0.05deg); */
  color: #333;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.8;
  --round-s: 8px;
  --round-m: 16px;
  --round-l: 24px;
  --color-primary: #01a7cb;
  --color-point: #e85471;
}
#np-lp h2,
#np-lp h3,
#np-lp h4 {
  line-height: 1.6;
}
#np-lp section,
#np-lp [class*="section-"] {
  position: relative;
  margin-bottom: 60px;
}
#np-lp section>*+*,
#np-lp [class*="section-"]>*+* {
  margin-block-start:32px;
}
#np-lp #about {
  background: #fff;
  padding: 24px;
}
#np-lp a {
  color: #222;
  outline: none;
}
#np-lp a.text-link,
#np-lp a[href*="tel:"] {
  outline: none;
  text-decoration: underline;
  text-decoration-style: dashed !important;
  text-underline-offset: .35em !important;
  text-decoration-thickness: .05em;
  transform: rotate(0.05deg);
}
@media (min-width: 768px) {
  #np-lp {
    width: 100%;
    max-width: 1234px;
    margin-inline: auto;
  }
  #np-lp section>*+*,
  #np-lp [class*="section-"]>*+* {
    margin-block-start:40px;
  }
  .sp {
    display: none;
  }
/*   #np-lp main {
    margin-top: 90px;
  } */
  #np-lp #about {
    background: #fff;
    padding: 40px;
  }
}
@media (min-width: 1400px) {
  body {
    background: rgb(204 204 204 / 30%);
    #np-lp {
      background: #fff;
    }
  }
  #np-lp section,
  #np-lp [class*="section-"] {
    box-sizing: border-box; /* ここを追加 */
  }
  #np-lp #about {
    background: #fff;
    padding: 60px 85px;
  }
}
/* メニュー */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  height: var(--header-height);
  z-index: 1000; /* ヘッダーが他の要素より前に出るように */
  background-color: #fff; /* 背景色がないと下の要素が透けて見える */
  box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* オプション：影をつけて浮かせる */
  padding: 1rem;
  box-sizing: border-box;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: .5em 1rem 0;
}
.logo img{
  height: 35px;
}
/* ハンバーガーアイコン（モバイルでのみ表示） */
.hamburger-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 25px;
  cursor: pointer;
  z-index: 1001; /* ナビゲーションより上に表示 */
}
.hamburger-icon span {
  display: block;
  height: 3px;
  background-color: #333;
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
}
/* ナビゲーションメニュー（モバイルで隠す） */
.nav {
  position: absolute;
  top: 100%; /* ヘッダーの下に表示 */
  left: 0;
  width: 100%;
  padding-inline: 24px;
  background-color: rgb(255 255 255 / 90%);
  overflow: hidden;
  max-height: 0; /* 初期状態では非表示 */
  transition: max-height 0.3s ease-in-out;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}
.nav.is-active {
  max-height: 500px;
}
.nav .menu {
  list-style: none;
  margin: 0;
  padding: 20px 0 0;
  display: flex;
  flex-direction: column; /* モバイルでは縦並び */
}
.time {
  text-align: center;
  padding: 16px;
}
.menu li {
  width: 100%;
  text-align: center;
}
.menu li a {
  display: block;
  width: 100%;
  padding: 1rem; /* メニュー項目のパディング */
  text-decoration: none;
  color: #333;
  width: 100%;
  box-sizing: border-box;
}
/* ハンバーガーアイコンのアニメーション */
.hamburger-icon.is-active span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}
.hamburger-icon.is-active span:nth-child(2) {
  opacity: 0;
}
.hamburger-icon.is-active span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}
/* コンテンツエリアのトップパディング（ヘッダーの高さに合わせる） */
.content {
  padding-top: 70px; /* ヘッダーの高さ（約57px + padding） */
}
#np-lp main {
  padding-top: var(--header-height);
}
/* --- PC用スタイル（メディアクエリ） --- */
@media screen and (min-width: 769px) {
  :root {
    --header-height: 98px;
  }
  .header {
    padding: .5rem 2rem; /* PCでのパディング */
  }

  .header-inner {
    /* PCではロゴとメニューを横並び */
    max-width: 1234px;
    margin-inline: auto;
    padding: 0 1rem .5em;
  }

  .logo {
    margin-top: 20px;
    margin-right: auto;
    margin-right: 2rem; /* ロゴとメニューの間にスペース */
    width: auto; /* ロゴの幅を自動に */
    text-align: left; /* ロゴを左寄せ */
  }
  .logo img {
    height: 50px; /* PCでのロゴサイズ */
  }

  /* ハンバーガーアイコンはPCでは非表示 */
  .hamburger-icon {
    display: none;
  }

  /* ナビゲーションメニューを横並びに */
  .nav {
    position: static; /* 固定解除 */
    margin-left: auto;
    width: auto; /* 幅を自動に */
    background-color: transparent; /* 背景色なし */
    max-height: none; /* 高さを解除 */
    overflow: visible;
    box-shadow: none;
  }
  .nav.is-active { /* PCではis-activeクラスは無効 */
    max-height: none;
  }
  .nav .menu {
    flex-direction: row; /* 横並び */
  }
  .nav .menu li {
    width: auto;
    text-align: left;
  }
  .nav .menu li a {
    padding: 0.5rem 1rem; /* PCでのメニュー項目のパディング */
  }
  .menu li.menu-contact {
    position: relative;
    margin-left: 1rem;
    padding: 0 2em 0 1em;
    background: var(--color-point);
  }
   .menu li.menu-contact a {
    position: relative;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    &::after {
      content: "";
      position: absolute;
      display: inline-block;
      width: 32px;
      height: 25px;
      margin-left: 8px;
      right: -1em;
      top: 50%;
      translate: 0 -50%;
      background: url(../images/icon-mail.png);
      background-size: contain;
    }
  }
    #np-lp main {
      padding-top: var(--header-height);
    }
}




#np-lp h1 {
  margin-bottom: 20px;
}
#np-lp .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
#np-lp .breadcrumbs-list {
  margin: 0 auto 60px;
  padding-inline: 8px;
  width: fit-content;
}
#np-lp .breadcrumb {
  display: flex;
  margin-inline: 8px;
}
#np-lp .breadcrumb li {
  font-weight: 400;
  font-size: clamp(0.75rem, 0.704rem + 0.2vw, 0.875rem);
}
#np-lp .breadcrumb li:not(:last-of-type)::after {
  content: "›";
  margin: 0 .6em;
  color: #777;
}
@media screen and (min-width: 769px) {
  #np-lp .breadcrumb {
    justify-content: center;
  }
}
#np-lp .hd-section {
  position: relative;
  margin-bottom: 32px;
  font-size: clamp(1.25rem, 1.021rem + 0.98vw, 1.875rem);
  text-align: center;
  &::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 8px;
    bottom: -16px;
    left: 50%;
    translate: -50%;
    border-radius: 50vh;
    background: var(--color-point);
  }
}
#np-lp .container-col-3,
#np-lp .container-col-2 {
  display: flex;
  gap: 8px;
  padding: 24px;
}
#np-lp .container-col-2 > * {
  width: 48%;
}
#np-lp .anchor-link {
  display: flex;
  flex-direction: column;
}
#np-lp .anchor-link li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  padding: 0.5em;
  line-height: 1.6;
  text-decoration: none;
  &::after {
    content: '';
    width: 8px;
    height: 8px;
    border-top: 2px solid #222;
    border-right: 2px solid #222;
    transform: rotate(135deg);
  }
}
#np-lp .anchor-link li {
  border-bottom: 1px solid rgb(1 167 203 / 50%);
}
@media screen and (min-width: 768px) {
  #np-lp main {
  background-color: #fff;
}
  #np-lp .anchor-link {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  #np-lp .anchor-link li {
    position: relative;
    border-bottom: none; /* スマホ用の下線をリセット */
  }
  #np-lp .anchor-link li a {
    display: block;
    padding: 1.5em 2em;
    font-size: 16px;
    white-space: nowrap; /* テキストの折り返しを防ぐ */
  }
  #np-lp .anchor-link li:not(:first-child)::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 2px;
    height: 60%;
    background-color: rgb(1 167 203 / 50%);
    transform: translateY(-50%) rotate(45deg);
    transform-origin: center;
  }
  #np-lp .anchor-link li a::after {
    display: none; /* スマホ用の矢印を非表示 */
  }
}
#np-lp .lead {
  width: 90%;
  margin-inline: auto;
  font-weight: 700;
  font-size: clamp(1rem, 0.909rem + 0.39vw, 1.25rem);
  transform: rotate(0.05deg);
}
#np-lp .beige {
  margin-bottom: 0;
  position: relative;
  background: #f7f4e5;
}
#np-lp .white {
  position: relative;
  margin-bottom: 0;
  background: #fff;
}
#np-lp .curve {
  display:block;
  width:100%;
  line-height:0; /* 空白削除 */
  overflow:hidden;
}
#np-lp .curve svg {
  display:block;
  width:100%;
  height: 56px;
}
#np-lp .curve--up{
  margin-top: -1px;
}
#np-lp .curve--up svg {
  transform:translateY(-1px);
}
#np-lp .curve--down {
  margin-bottom: -1px;
}
#np-lp .curve--down svg {
  transform:translateY(1px);
}
#np-lp .content {
  padding: 24px;
}
#np-lp .content > * + * {
  margin-top: 40px;
}
#np-lp .rcm-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  justify-items: center;
}
#np-lp .rcm {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 120px;
  background-color: #01a7cb;
  background-image: linear-gradient(90deg, #ffffff26 1px, transparent 1px), linear-gradient(#ffffff26 1px, transparent 1px);
  background-position: 10px 10px;
  background-size: 16px 16px;
  border-radius: 50%;
  color: #fff;
  font-size: clamp(1.25rem, 0.884rem + 1.56vw, 2.25rem);
  text-align: center;
  line-height: 1.6;
}
#np-lp .event-wrap {
  position: relative;
  margin-bottom: 60px;
  padding: 24px;
  background: #fff;
  &::after {
    content: "";
    position: absolute;
    width: 60px;
    height: 120px;
    right: -18px;
    bottom: -20px;
    background: url(../images/nurse-illust.png) no-repeat;
    background-size: contain;
  }
}
#np-lp .hd-overview {
  margin-bottom: 32px;
  font-size: clamp(1.125rem, 0.851rem + 1.17vw, 1.875rem);
}
#np-lp .overview dt {
  padding: 2px 8px;
  width: 35%;
  background: var(--color-primary);
  border-radius: 50vh;
  color: #fff;
  font-size: clamp(1.125rem, 1.079rem + 0.2vw, 1.25rem);
  text-align: center;
}
#np-lp .overview dd {
  margin-bottom: 16px;
  margin-inline-start: 1em;
  font-size: clamp(1.125rem, 1.079rem + 0.2vw, 1.25rem);
  transform: rotate(0.05deg);
}
#np-lp .lead-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
#np-lp .event-lead {
  margin-inline: auto;
  font-size: clamp(1.125rem, 0.988rem + 0.59vw, 1.5rem);
}
#np-lp .marker {
  background: linear-gradient(transparent 60%, #fff757 60%);
}
#np-lp .present {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 180px;
  background: #fff;
  border-radius: 50%;
}
#np-lp .present img {
  margin-top: -20px;
  margin-left: 12px;
}
#np-lp .btn-entry {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1em;
  width: 100%;
  margin-inline: auto;
  border-radius: 50vh;
  background: var(--color-point);
  color: #fff;
  font-size: clamp(1.125rem, 0.988rem + 0.59vw, 1.5rem);
  text-decoration: none;
  &::after {
    content: "";
    position: absolute;
    display: inline-block;
    width: 32px;
    height: 32px;
    right: .8em;
    background: url(../images/arrow.png) no-repeat;
    background-size: contain;
  }
}
#np-lp .about-entry {
  padding-bottom: 40px;
  border-bottom: 1px solid #222;
}
#np-lp .hd-about {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  &::after {
  content: '';
  height: 1px;
  background-color: #222;
  flex-grow: 1;
  }
 span {
    background: #fff;
    border: 1px solid #222;
    border-radius: var(--round-s);
    padding: 4px 16px;
      font-size: clamp(1.125rem, 1.034rem + 0.39vw, 1.375rem);
  }
}
#np-lp .about-text {
  transform: rotate(0.05deg);
}
#np-lp .bullet {
  margin-right: 5px;
  color: var(--color-primary);
}
#np-lp .title-wrap {
  position: relative;
}
#np-lp .balloon-yellow {
  position: absolute;
  width: 120px;
  top: -70px;
  right: 0;
}
#np-lp .session-wrap {
  margin-bottom: 0;
}
#np-lp .session-img img {
  border-top-left-radius: var(--round-m);
  border-top-right-radius: initilal;
}
#np-lp .session-content {
  padding: 24px;
  background: #f7f4e5;
}
#np-lp .session-text {
  margin-bottom: 8px;
  font-weight: 700;
  transform: rotate(0.05deg);
}
#np-lp .session-text:not([class]) {
  font-weight: 400;
  font-size: 16px;
  transform: rotate(0.05deg);
}
#np-lp .session-list {
  margin-top: 24px;
  padding: 24px 0;
  border-top: 1px solid #222;
}
#np-lp .list-title {
  margin-top: 0;
  font-size: 18px;
  transform: rotate(0.05deg);
}
#np-lp .btn-session {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1em;
  width: 90%;
  margin-inline: auto;
  border-radius: 50vh;
  background: var(--color-primary);
  color: #fff;
  font-size: clamp(1.125rem, 0.988rem + 0.59vw, 1.5rem);
  text-decoration: none;
  &::after {
    content: "";
    position: absolute;
    display: inline-block;
    width: 24px;
    height: 24px;
    right: .8em;
    background: url(../images/arrow02.png) no-repeat;
    background-size: contain;
  }
}
#np-lp .btn-session + .btn-session {
  margin-top: 24px;
}
#np-lp .session-contact {
  padding: 24px;
  background: #fdf981;
}
#np-lp .contact {
  text-align: center;
  font-weight: 500;
  font-size: clamp(1rem, 0.909rem + 0.39vw, 1.25rem);
}
#np-lp .contact:not(.session-contact > .contact) {
  padding-bottom: 20px;
}
#np-lp .session-contact > .contact {
  padding-bottom: 0
}
#np-lp .contact + .contact {
  margin-top: 24px;
}
#np-lp .tel-num {
  font-size: clamp(1.375rem, 1.192rem + 0.78vw, 1.875rem);
}
#np-lp a[href*="tel:"] {
  pointer-events: auto;
  cursor: pointer;
}
#np-lp .session-wrap + .session-contact {
  margin-top: 0;
}
#np-lp .practical-skills {
  margin: 24px;
}
#np-lp .practical-skills dt {
  position: relative;
  display: block;
  padding: 16px;
  background: #fef882;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.6;
  transform: rotate(0.05deg);
}
#np-lp .practical-skills dd {
  margin-bottom: 16px;
  margin-inline-start: 0;
  padding: 16px;
  background: #fff;
  font-weight: 500;
  font-size: 16px;
  transform: rotate(0.05deg);
}
#np-lp .balloon-white::before {
  content: "";
  display: block;
  position: absolute;
  width: 120px;
  height: 66px;
  right: -10px;
  top: -20px;
  background: url(../images/balloon-white.png) no-repeat;
  background-size: contain;
}
#np-lp .balloon-corner01::before {
  right: -10px;
  top: -40px;
}
#np-lp .balloon-corner02::before {
  right: -50px;
  top: -58px;
}
#np-lp .col-2 {
  display: flex;
  flex-direction: column-reverse;
  gap: 24px;
}
#np-lp .col-2 img {
  width: 90%;
  margin-inline: auto;
}
#np-lp .corner-info {
  position: relative;
  padding: 24px;
  background: #f7f4e6;
}
#np-lp .info-list dt {
  position: relative;
  font-weight: 700;
  font-size: clamp(1.125rem, 1.034rem + 0.39vw, 1.375rem);
  color: var(--color-primary);
  transform: rotate(0.05deg);
}
#np-lp .info-list dd {
  position: relative;
  margin-inline-start: 0;
  font-weight: 700;
  font-size: clamp(1rem, 0.954rem + 0.2vw, 1.125rem);
  z-index: 1;
  transform: rotate(0.05deg);

}
#np-lp .info-list dd:not(:last-of-type) {
  margin-bottom: 16px;
}
#np-lp .hd-accsess {
  margin-bottom: 24px;
  text-align: center;
  transform: rotate(0.05deg);
}
/* #np-lp .map {
  border: 5px solid #fff;
} */
#np-lp .map iframe{
  aspect-ratio: 16 / 9;
  width: 100%;
  height: auto;
}
#np-lp .np-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#np-lp .np {
  font-size: 18px;
  color: #ff9933;
}
#np-lp .np-text-wrap p {
  font-weight: 400;
  font-size: 16px;
  transform: rotate(0.05deg);
}
#np-lp .np-text-wrap li + li {
  margin-top: 16px;
}
#np-lp .tk-logo {
  width: 120px;
}
#np-lp .kango-logo {
  width: 185px;
}
#np-lp .sns-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
#np-lp .x,
#np-lp .facebook,
#np-lp .line {
  width: 40px;
  height: 40px;
}
@media (min-width: 400px){
  #np-lp .balloon-corner02::before {
    right: -54px;
    top: -33px;
  }
}
@media (min-width: 601px) {
  #np-lp a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
@media screen and (min-width: 768px){
  #np-lp .rcm-list {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (min-width: 1024px) {
  #np-lp .col-2 {
    flex-direction: row;
    padding: 0 85px;
  }
  #np-lp .corner-info {
    flex-grow: 1;
  }
  #np-lp .session-wrap {
    display: flex;
    flex-direction: row;
  }
  #np-lp .session-wrap > * {
    width: 50%;
    gap: 0;
  }
  #np-lp .session-img {
    background: #f7f4e6;
    border-top-right-radius: initial;
  }
  #np-lp .session-content {
    border-top-right-radius: var(--round-m);
  }
}
@media screen and (min-width: 1400px) {
  #np-lp .content {
    padding: 60px 85px 120px;
  }
  #np-lp .hd-section {
    margin-bottom: 40px;
  }
  #np-lp .container-col-3, #np-lp .container-col-2 {
    gap: 24px;
    padding: 40px 85px;
  }
  #np-lp .rcm {
    width: 200px;
    height: 200px;
    line-height: 1.44;
  }
  #np-lp .hd-overview {
    text-align: center;
  }
  #np-lp .overview {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px 24px;
  }
  #np-lp .overview dt {
    width: 15%;
    padding: .5em;
    line-height: 1;
  }
  #np-lp .overview dd {
    margin-bottom: 0;
    width: 75%;
  }
  #np-lp .event-wrap {
    padding: 40px;
  }
  #np-lp .event-wrap::after {
    width: 140px;
    height: 220px;
  }
  #np-lp .lead-wrap {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  #np-lp .btn-entry {
    width: 80%;
    margin-inline: auto;
  }
  #np-lp .session-wrap {
    display: flex;
    flex-direction: row;
  }
  #np-lp .session-wrap > * {
    width: 50%;
    gap: 0;
  }
  #np-lp .session-img {
    background: #f7f4e6;
    border-top-right-radius: initial;
  }
  #np-lp .session-content {
    border-top-right-radius: var(--round-m);
  }
  #np-lp .time {
    font-size: 22px;
    text-align: center;
  }
  #np-lp .practical-skills  {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 40px 85px;
  }
  #np-lp .practical-skills dt {
    margin-bottom: 0;
    width: 40%;
    font-size: 18px;
  }
  #np-lp .practical-skills dd {
    margin-bottom: 0;
    width: 50%;
    font-size: 18px;
    flex-grow: 1;
  }
  #np-lp .balloon-white::before {
    width: 150px;
    height: 86px;
    right: -10px;
    top: -40px;
  }
  #np-lp .balloon-corner01::before {
    right: -40px;
    top: -60px;
  }
  #np-lp .balloon-corner02::before {
    right: -110px;
  }
  #np-lp .col-2 {
    flex-direction: row;
    padding: 0 85px;
  }
  #np-lp .corner-info {
    flex-grow: 1;
  }
  #np-lp .np-text-wrap {
    flex-direction: row;
    align-items: center;
    margin-bottom: 16px;
    column-gap: 40px;
  }
  #np-lp .np {
    font-size: 22px;
  }
  #np-lp .sns-list {
    gap: 24px;
  }
  #np-lp .x, #np-lp .facebook, #np-lp .line {
    width: 60px;
    height: 60px;
  }
  #np-lp .curve {
    position: absolute; /* 親要素のセクションを基準に配置 */
    bottom: 0;
    left: 0;
    z-index: 1;
  }
  #np-lp .contact:not(.session-contact > .contact) {
    padding-bottom: 100px;
    text-align: center;
  }
  #np-lp .session-contact .contact {
    margin-bottom: 0;
  }
  #np-lp .balloon-yellow {
    width: 200px;
    right: 60px;
  }
  #np-lp .contact + .contact {
    margin-top: 0;
  }
  #np-lp .session-contact > .contact {
    padding-bottom: 0;
  }
}

#np-lp .note {
  display: block;
  margin-top: 8px;
  padding-left: 1em;
  text-indent: -1em;
  font-weight: 400;
  font-size: 14px;
  transform: rotate(0.05deg);
}
#np-lp .round-s {
  border-radius: var(--round-s);
}
#np-lp .round-m {
  border-radius: var(--round-m);
}
#np-lp .round-l {
  border-radius: var(--round-l);
}
#np-lp .pc {
  display: none;
}
#np-lp .point-color {
  color: var(--color-point);
}
.text {
  transform: rotate(0.05deg);
}
