@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  overflow-x: hidden;
  background: #fffcf9;
}

a {
  text-decoration: none;
  color: inherit;
}

img,
picture,
video {
  max-width: 100%;
  vertical-align: bottom;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
}

.v-lp-body {
  margin: 0 !important;
  padding: 0 !important;
  color: #1e293b !important;
}
.v-lp-body .site-header,
.v-lp-body .site-footer,
.v-lp-body #header,
.v-lp-body #footer {
  display: none !important;
}
.v-lp-body .v-lp-container {
  padding: 15px 24px !important;
  box-sizing: border-box !important;
}
.v-lp-body .v-lp-section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
@media (max-width: 640px) {
  .v-lp-body .v-lp-section-title {
    font-size: 1.5rem;
  }
}
.v-lp-body .v-lp-section-lead {
  text-align: center;
  font-size: 0.95rem;
  color: #64748b;
  font-weight: 500;
  margin-bottom: 4rem;
}
.v-lp-body .v-lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}
.v-lp-body .v-lp-btn--lg {
  padding: 18px 40px;
  font-size: 1.1rem;
}
.v-lp-body .v-lp-btn--primary {
  background: #ea7855;
  color: #ffffff !important;
  box-shadow: 0 10px 25px rgba(85, 98, 234, 0.3);
}
.v-lp-body .v-lp-btn--primary:hover {
  box-shadow: 0 15px 35px rgba(85, 98, 234, 0.4);
  transform: translateY(-3px);
}
.v-lp-body .v-lp-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 252, 249, 0.8509803922);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  z-index: 1000;
}
.v-lp-body .v-lp-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.v-lp-body .v-lp-header__logo {
  display: flex;
  align-items: baseline;
  color: #166534;
  font-weight: bold;
  cursor: pointer;
  font-size: 1.5rem;
  position: relative;
  z-index: 1010;
}
@media (max-width: 820px) {
  .v-lp-body .v-lp-header__logo {
    width: 100px;
  }
}
.v-lp-body .v-lp-header__hamburger {
  display: none;
  background: none;
  border: none;
  width: 30px;
  height: 24px;
  position: relative;
  z-index: 1010;
  cursor: pointer;
  padding: 0;
}
.v-lp-body .v-lp-header__hamburger span {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #ed9390;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, top 0.3s ease;
}
.v-lp-body .v-lp-header__hamburger span:nth-child(1) {
  top: 0;
}
.v-lp-body .v-lp-header__hamburger span:nth-child(2) {
  top: 11px;
}
.v-lp-body .v-lp-header__hamburger span:nth-child(3) {
  top: 22px;
}
.v-lp-body .v-lp-header__hamburger.is-active span:nth-child(1) {
  top: 11px;
  transform: rotate(45deg);
}
.v-lp-body .v-lp-header__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.v-lp-body .v-lp-header__hamburger.is-active span:nth-child(3) {
  top: 11px;
  transform: rotate(-45deg);
}
@media (max-width: 640px) {
  .v-lp-body .v-lp-header__hamburger {
    display: block;
  }
}
.v-lp-body .v-lp-header__nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.v-lp-body .v-lp-header__nav a {
  color: #64748b;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s, background 0.2s, transform 0.2s;
  font-size: 0.95rem;
}
.v-lp-body .v-lp-header__nav a:hover {
  color: #5562ea;
}
.v-lp-body .v-lp-header__nav a.contact-head {
  background: #ea7855;
  color: #ffffff !important;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(234, 120, 85, 0.2);
}
.v-lp-body .v-lp-header__nav a.contact-head:hover {
  background: #d66443;
  transform: translateY(-1px);
}
@media (max-width: 640px) {
  .v-lp-body .v-lp-header__nav {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100vh;
    background: #fffcf9;
    padding: 150px 24px 40px;
    gap: 1.5rem;
    z-index: 1000;
    transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .v-lp-body .v-lp-header__nav.is-active {
    left: 0;
  }
  .v-lp-body .v-lp-header__nav a {
    width: 100%;
    text-align: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
  }
  .v-lp-body .v-lp-header__nav a:hover {
    background: rgba(85, 98, 234, 0.05);
  }
  .v-lp-body .v-lp-header__nav a.contact-head {
    width: 80%;
    margin: 0 auto;
    border-bottom: none;
    padding: 14px 0;
  }
}
.v-lp-body .v-lp-hero {
  position: relative;
  padding: 180px 24px 120px;
  overflow: hidden;
  text-align: center;
  background-color: #fff6e7;
}
@media (max-width: 820px) {
  .v-lp-body .v-lp-hero {
    padding: 100px 24px 60px;
  }
}
.v-lp-body .v-lp-hero__content {
  position: relative;
  z-index: 1;
  margin: 0 auto;
}
.v-lp-body .v-lp-hero__title {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.3;
  background: linear-gradient(135deg, #f58bc6 0%, #eab155 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 640px) {
  .v-lp-body .v-lp-hero__title {
    font-size: 1.5rem;
  }
}
.v-lp-body .v-lp-hero__lead {
  font-size: 1.15rem;
  color: #475569;
  line-height: 1.8;
  margin-top: 1rem;
  margin-bottom: 3rem;
}
@media (max-width: 640px) {
  .v-lp-body .v-lp-hero__lead {
    font-size: 0.9rem;
  }
}
.v-lp-body .v-lp-problem {
  padding: 100px 0;
  border-bottom: 1px solid #000;
}
@media (max-width: 640px) {
  .v-lp-body .v-lp-problem {
    padding: 40px 0;
  }
}
.v-lp-body .v-lp-problem__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 820px) {
  .v-lp-body .v-lp-problem__grid {
    grid-template-columns: 1fr;
  }
}
.v-lp-body .v-lp-problem__card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  position: relative;
}
.v-lp-body .v-lp-problem__card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  margin: 1.5rem 0 1rem;
  line-height: 1.5;
}
.v-lp-body .v-lp-problem__card p {
  color: #64748b;
  line-height: 1.7;
  font-size: 0.95rem;
}
.v-lp-body .v-lp-problem__tag {
  display: inline-block;
  background: #dcf6ff;
  color: #475569;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
}
.v-lp-body .v-lp-problem__tag2 {
  display: inline-block;
  background: #cfffe6;
  color: #475569;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
}
.v-lp-body .v-lp-features {
  padding: 80px 0;
  border-bottom: 1px solid #000;
}
@media (max-width: 640px) {
  .v-lp-body .v-lp-features {
    padding: 40px 0;
  }
}
.v-lp-body .v-lp-features .v-lp-container {
  max-width: 1000px !important;
  margin: 0 auto !important;
  padding: 0 20px !important;
}
.v-lp-body .v-lp-features .v-lp-concept-box {
  background: #fff;
  border: 2px solid #ff4000;
  border-radius: 16px;
  padding: 40px;
  margin-bottom: 60px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(22, 101, 52, 0.05);
}
.v-lp-body .v-lp-features .v-lp-concept-box .v-lp-concept-tag {
  display: inline-block;
  background: #ff4000;
  color: #fff;
  font-weight: bold;
  font-size: 0.85rem;
  padding: 6px 16px;
  border-radius: 99px;
  margin-bottom: 20px;
}
.v-lp-body .v-lp-features .v-lp-concept-box h3 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #0f172a;
  line-height: 1.5;
  margin-bottom: 20px;
}
.v-lp-body .v-lp-features .v-lp-concept-box .v-lp-concept-text {
  font-size: 1rem;
  color: #475569;
  line-height: 1.8;
  text-align: left;
  max-width: 850px;
  margin: 0 auto;
}
.v-lp-body .v-lp-features .v-lp-concept-box .v-lp-concept-text strong {
  color: #ff4000;
}
.v-lp-body .v-lp-features .v-lp-features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .v-lp-body .v-lp-features .v-lp-features__grid {
    grid-template-columns: 1fr;
  }
}
.v-lp-body .v-lp-features .v-lp-features__card-list {
  list-style: none;
  padding-left: 0;
  margin-top: 10px;
  margin-bottom: auto;
}
.v-lp-body .v-lp-features .v-lp-features__card-list li {
  font-size: 0.95rem;
  color: #334155;
  line-height: 1.6;
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 12px;
}
.v-lp-body .v-lp-features .v-lp-features__card-list li:last-child {
  margin-bottom: 0;
}
.v-lp-body .v-lp-features .v-lp-features__card-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #166534;
  font-weight: bold;
}
.v-lp-body .v-lp-features .v-lp-features__card {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
}
.v-lp-body .v-lp-features .v-lp-features__card .v-lp-features__icon {
  font-size: 2.5rem;
  font-weight: 900;
  color: rgba(22, 101, 52, 0.15);
  position: absolute;
  top: 20px;
  line-height: 1;
  font-family: "Mochiy Pop One", sans-serif;
}
.v-lp-body .v-lp-features .v-lp-features__card h3 {
  font-size: 1.25rem;
  font-weight: bold;
  color: #0f172a;
  line-height: 1.4;
  margin-top: 30px;
  margin-bottom: 20px;
}
.v-lp-body .v-lp-features .v-lp-features__card .v-lp-features__card-small {
  display: block;
  margin-top: 15px;
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.4;
}
.v-lp-body .v-lp-features__sub-title {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 40px;
  letter-spacing: -0.01em;
}
@media (max-width: 640px) {
  .v-lp-body .v-lp-features__sub-title {
    font-size: 1.4rem;
  }
}
.v-lp-body .v-lp-features__comparison {
  margin-bottom: 80px;
}
.v-lp-body .v-lp-features__functions {
  margin-bottom: 50px;
}
.v-lp-body .v-lp-styles {
  padding: 80px 0;
  border-bottom: 1px solid #000;
}
@media (max-width: 640px) {
  .v-lp-body .v-lp-styles {
    padding: 40px 0;
  }
}
.v-lp-body .v-lp-styles__container {
  max-width: 1000px !important;
  margin: 0 auto !important;
  padding: 0 20px !important;
}
.v-lp-body .v-lp-styles__title {
  text-align: center !important;
  margin-bottom: 4rem;
  font-weight: bold !important;
  color: #1e293b !important;
}
.v-lp-body .v-lp-styles__grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}
.v-lp-body .v-lp-styles__card {
  flex: 1;
  min-width: 300px;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #eee;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.v-lp-body .v-lp-styles__card-title {
  font-size: 1.25rem;
  margin-bottom: 15px;
  font-weight: bold;
  background: #dcf6ff;
  padding: 6px 12px;
  border-radius: 30px;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 640px) {
  .v-lp-body .v-lp-styles__card-title {
    font-size: 1rem;
  }
}
.v-lp-body .v-lp-styles__card-title.freelance {
  background: #cfffe6;
}
.v-lp-body .v-lp-styles__card-desc {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.7;
}
.v-lp-body .v-lp-comparison {
  max-width: 900px;
  text-align: center;
  margin: 0 auto;
}
.v-lp-body .v-lp-comparison__title {
  margin-top: 80px;
  font-size: 1.05rem;
}
.v-lp-body .v-lp-comparison__lead {
  margin: 30px 0 15px;
  color: #444;
  font-size: 0.95rem;
  line-height: 1.6;
}
.v-lp-body .v-lp-comparison__box {
  display: block !important;
  padding: 25px !important;
  background: #fff !important;
  border-radius: 8px !important;
  border: 1px solid #eee !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.v-lp-body .v-lp-table-responsive {
  overflow-x: auto;
}
.v-lp-body .v-lp-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  text-align: center;
  min-width: 750px;
}
.v-lp-body .v-lp-table__head-tr {
  background-color: #f8f9fa;
  border-bottom: 2px solid #ddd;
}
.v-lp-body .v-lp-table__th--left {
  padding: 15px 12px;
  text-align: left;
  width: 40%;
  color: #333;
  font-weight: bold;
}
.v-lp-body .v-lp-table__th--center {
  width: 30%;
  font-weight: bold;
  font-size: 0.95rem;
  background: #dcf6ff;
}
.v-lp-body .v-lp-table__th--center.freelance {
  background: #cfffe6;
}
.v-lp-body .v-lp-table__body-tr {
  border-bottom: 1px solid #eee;
}
.v-lp-body .v-lp-table__td--left {
  padding: 14px 12px;
  text-align: left;
  color: #444;
}
.v-lp-body .v-lp-table__td--ok, .v-lp-body .v-lp-table__td--ng {
  font-weight: bold;
  font-size: 1.2rem;
  background: #dcf6ff;
}
.v-lp-body .v-lp-table__td--ok.freelance, .v-lp-body .v-lp-table__td--ng.freelance {
  background: #cfffe6;
}
.v-lp-body .v-lp-table__td--ng {
  font-size: 1.1rem;
}
.v-lp-body .v-lp-btn-center {
  text-align: center;
  margin-top: 50px;
}
.v-lp-body .v-lp-independent__table-box {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  padding: 10px;
  border: 1px solid #eee;
}
.v-lp-body .v-lp-independent__table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  font-size: 0.95rem;
  min-width: 650px;
}
.v-lp-body .v-lp-independent__th--left {
  padding: 20px 15px;
  width: 26%;
  text-align: left;
  color: #333;
  border-bottom: 2px solid #ddd;
}
.v-lp-body .v-lp-independent__th--ticket {
  padding: 20px 15px;
  width: 37%;
  color: #64748b;
  font-weight: bold;
  border-bottom: 2px solid #ddd;
}
.v-lp-body .v-lp-independent__th--pototsuku {
  padding: 20px 15px;
  width: 37%;
  color: #daa520;
  font-weight: bold;
  font-size: 1.1rem;
  border-left: 1px solid #ddd;
  border-bottom: 2px solid #ddd;
}
.v-lp-body .v-lp-independent__tr {
  border-bottom: 1px solid #eee;
}
.v-lp-body .v-lp-independent__td--left {
  padding: 20px 15px;
  text-align: left;
  font-weight: bold;
  color: #444;
}
.v-lp-body .v-lp-independent__td--ticket {
  padding: 20px 15px;
  color: #555;
}
.v-lp-body .v-lp-independent__td--pototsuku-red {
  padding: 20px 15px;
  font-weight: bold;
  color: #d63638;
  font-size: 1.2rem;
  border-left: 1px solid #ddd;
}
.v-lp-body .v-lp-independent__td--pototsuku-brown {
  padding: 20px 15px;
  font-weight: bold;
  color: #daa520;
  border-left: 1px solid #ddd;
}
.v-lp-body .v-lp-independent__note {
  margin-top: 25px;
  font-size: 0.85rem;
  color: #888;
}
.v-lp-body .v-lp-support {
  padding: 80px 0;
  border-bottom: 1px solid #000;
}
@media (max-width: 640px) {
  .v-lp-body .v-lp-support {
    padding: 40px 0;
  }
}
.v-lp-body .v-lp-support__title {
  text-align: center !important;
  margin-bottom: 10px !important;
}
.v-lp-body .v-lp-support__lead {
  text-align: center !important;
  font-size: 0.95rem;
  color: #666 !important;
  margin-bottom: 40px !important;
}
.v-lp-body .v-lp-support__grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.v-lp-body .v-lp-support__card {
  display: flex;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  overflow: hidden;
  border: 1px solid #eee;
  align-items: center;
  flex-wrap: wrap;
}
.v-lp-body .v-lp-support__card--reverse {
  flex-direction: row-reverse;
}
.v-lp-body .v-lp-support__card-body {
  flex: 1;
  min-width: 300px;
  padding: 35px;
}
.v-lp-body .v-lp-support__card-title {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #222;
  font-weight: bold;
}
.v-lp-body .v-lp-support__card-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: #555;
  margin: 0;
}
.v-lp-body .v-lp-support__badge--blue, .v-lp-body .v-lp-support__badge--green {
  font-size: 0.8rem;
  font-weight: bold;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 12px;
}
.v-lp-body .v-lp-support__image-box {
  flex: 1;
  min-width: 300px;
  max-height: 250px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fafafa;
}
.v-lp-body .v-lp-support__image-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.v-lp-body .v-lp-pricing {
  padding: 80px 0;
  border-bottom: 1px solid #000;
}
@media (max-width: 640px) {
  .v-lp-body .v-lp-pricing {
    padding: 40px 0;
  }
}
.v-lp-body .v-lp-pricing .v-lp-container {
  max-width: 1000px;
  margin: 0 auto;
}
.v-lp-body .v-lp-pricing .v-lp-section-title {
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  color: #0f172a;
}
.v-lp-body .v-lp-pricing__sub-title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  color: #0f172a;
  margin-top: 50px;
  margin-bottom: 25px;
}
.v-lp-body .v-lp-pricing__sub-title--monitor {
  color: #cd171e;
  margin-top: 70px;
}
.v-lp-body .v-lp-pricing__sub-lead {
  text-align: center;
  font-size: 0.95rem;
  color: #64748b;
  margin-bottom: 35px;
  line-height: 1.5;
}
.v-lp-body .v-lp-pricing .v-lp-pricing-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
.v-lp-body .v-lp-pricing .v-lp-card {
  flex: 1;
  min-width: 300px;
  max-width: 450px;
  padding: 40px;
  border-radius: 16px;
  border: 1px solid #eee;
  text-align: center;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  position: relative;
  transition: transform 0.3s ease;
}
.v-lp-body .v-lp-pricing .v-lp-card:hover {
  transform: translateY(-3px);
}
.v-lp-body .v-lp-pricing .v-lp-card--freelance {
  background: #dcf6ff;
}
.v-lp-body .v-lp-pricing .v-lp-card--organizer {
  background: #cfffe6;
}
.v-lp-body .v-lp-pricing .v-lp-card__header {
  margin-bottom: 20px;
}
.v-lp-body .v-lp-pricing .v-lp-card__header h3 {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 5px;
  color: #0f172a;
}
.v-lp-body .v-lp-pricing .v-lp-card__header .v-lp-card__sub {
  font-size: 0.85rem;
  color: #64748b;
}
.v-lp-body .v-lp-pricing .v-lp-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #cd171e;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 3px 16px;
  border-radius: 99px;
  box-shadow: 0 4px 10px rgba(205, 23, 30, 0.3);
}
.v-lp-body .v-lp-pricing .v-lp-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.v-lp-body .v-lp-pricing .v-lp-card .v-lp-price {
  font-size: 2.2rem;
  font-weight: 900;
  color: #cd171e;
  margin-bottom: 20px;
}
.v-lp-body .v-lp-pricing .v-lp-card .v-lp-price span {
  font-size: 1rem;
  margin-left: 5px;
  color: #334155;
}
.v-lp-body .v-lp-pricing .v-lp-card .v-lp-desc {
  font-size: 0.9rem;
  color: #475569;
  line-height: 1.7;
  text-align: left;
}
.v-lp-body .v-lp-pricing .v-lp-pricing__block {
  margin-top: 50px;
  margin-bottom: 45px;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 35px;
  border: 1px solid #eee;
}
.v-lp-body .v-lp-pricing .v-lp-pricing__block--shadow {
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.v-lp-body .v-lp-pricing .v-lp-pricing__block h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: #222;
  font-weight: bold;
}
.v-lp-body .v-lp-pricing .v-lp-table-wrapper {
  overflow-x: auto;
}
.v-lp-body .v-lp-pricing table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  min-width: 600px;
}
.v-lp-body .v-lp-pricing table th {
  padding: 16px 14px;
  text-align: left;
  font-weight: bold;
  color: #475569;
  border-bottom: 2px solid #e2e8f0;
  background: rgba(241, 245, 249, 0.5);
}
.v-lp-body .v-lp-pricing table th:nth-child(1) {
  width: 250px;
  border-right: 1px solid #eee;
}
.v-lp-body .v-lp-pricing table th:nth-child(2) {
  width: 100px;
}
.v-lp-body .v-lp-pricing table td {
  padding: 20px 14px;
  color: #334155;
  border-bottom: 1px solid #edf2f7;
  border-right: 1px solid #eee;
  font-weight: bold;
}
.v-lp-body .v-lp-pricing .v-lp-note {
  margin-bottom: 25px;
  font-size: 0.9rem;
  color: #475569;
}
.v-lp-body .v-lp-pricing .v-lp-note strong {
  color: #f44c19;
}
.v-lp-body .v-lp-faq {
  padding: 80px 0;
  border-bottom: 1px solid #000;
}
@media (max-width: 640px) {
  .v-lp-body .v-lp-faq {
    padding: 40px 0;
  }
}
.v-lp-body .v-lp-faq__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 800px;
  margin: 40px auto 0;
}
.v-lp-body .v-lp-faq__item {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #eee;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  padding: 20px 25px;
}
.v-lp-body .v-lp-faq__item[open] .v-lp-faq__question::after {
  content: "−";
}
.v-lp-body .v-lp-faq__question {
  cursor: pointer;
  font-weight: bold;
  font-size: 1rem;
  color: #222;
  list-style: none;
  position: relative;
  padding-right: 30px;
}
.v-lp-body .v-lp-faq__question::-webkit-details-marker {
  display: none;
}
.v-lp-body .v-lp-faq__question::before {
  content: "Q.";
  color: #f58bc6;
  font-weight: bold;
  margin-right: 8px;
}
.v-lp-body .v-lp-faq__question::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 0;
  font-size: 1.3rem;
  color: #f58bc6;
}
.v-lp-body .v-lp-faq__answer {
  margin-top: 12px;
  font-size: 0.9rem;
  line-height: 1.7;
  color: #555;
  padding-left: 22px;
}
.v-lp-body .v-lp-contact {
  padding: 80px 0;
}
@media (max-width: 640px) {
  .v-lp-body .v-lp-contact {
    padding: 40px 0;
  }
}
.v-lp-body .v-lp-contact .v-lp-section-title {
  text-align: center !important;
  margin-bottom: 15px !important;
  font-weight: bold !important;
}
.v-lp-body .v-lp-contact .v-lp-section-lead {
  text-align: left !important;
  font-size: 0.95rem !important;
  line-height: 1.6 !important;
  margin-bottom: 35px !important;
}
.v-lp-body .v-lp-contact__box {
  max-width: 600px !important;
  margin: 0 auto !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 12px !important;
}
.v-lp-body .v-lp-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #ffffff;
  padding: 40px;
  border-radius: 24px;
  margin-top: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
@media (max-width: 640px) {
  .v-lp-body .v-lp-form {
    padding: 24px;
  }
}
.v-lp-body .v-lp-form__group {
  margin-top: 15px;
  margin-bottom: 1.5rem;
}
.v-lp-body .v-lp-form__group input,
.v-lp-body .v-lp-form__group textarea {
  width: 100%;
  padding: 16px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  font-size: 1rem;
  color: #0f172a;
  font-family: inherit;
  transition: all 0.3s;
}
.v-lp-body .v-lp-form__group input:focus,
.v-lp-body .v-lp-form__group textarea:focus {
  outline: none;
  border-color: #5562ea;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(85, 98, 234, 0.1);
}
.v-lp-body .v-lp-form__group--custom {
  font-size: 0.88rem;
  font-weight: bold;
  color: #475569;
  margin-bottom: 8px;
  text-align: left;
}
.v-lp-body .v-lp-form__input--name, .v-lp-body .v-lp-form__input--email, .v-lp-body .v-lp-form__select, .v-lp-body .v-lp-form__input--sns {
  width: 100% !important;
  padding: 14px !important;
  border: 1px solid #000 !important;
  background: rgba(255, 255, 255, 0.05) !important;
  font-size: 0.95rem !important;
  box-sizing: border-box !important;
  color: #0f172a;
  font-family: inherit;
}
.v-lp-body .v-lp-form__input--name:focus, .v-lp-body .v-lp-form__input--email:focus, .v-lp-body .v-lp-form__select:focus, .v-lp-body .v-lp-form__input--sns:focus {
  outline: none;
  border-color: #5562ea !important;
  background: #ffffff !important;
}
.v-lp-body .v-lp-form__textarea {
  width: 100% !important;
  height: 120px !important;
  padding: 14px 12px !important;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid #000 !important;
  font-size: 0.95rem !important;
  resize: vertical !important;
  box-sizing: border-box !important;
}
.v-lp-body .v-lp-form__select {
  cursor: pointer;
  color: #475569;
}
.v-lp-body .v-lp-form__select option {
  color: #0f172a;
  background: #ffffff;
}
.v-lp-body .v-lp-footer {
  background-color: #fff6e7;
  text-align: center;
  padding: 30px;
  font-size: 0.65rem;
}

/* 機能ドキュメントページ専用スタイル (v-docs) */
.v-docs-wrapper {
  max-width: 1300px;
  margin: 160px auto 40px;
  padding: 0 24px;
  display: flex;
  align-items: flex-start;
  gap: 32px;
  width: 100%;
}

@media (max-width: 820px) {
  .v-docs-wrapper {
    margin-top: 110px;
  }
}
.v-docs__sidebar-cell {
  width: 280px;
  flex-shrink: 0;
  align-self: flex-start;
}

.v-docs__content-cell {
  flex: 1;
  min-width: 0;
}

.v-docs__sidebar {
  background: #ffffff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(255, 117, 140, 0.05);
  border: 1px solid #fceef0;
  position: fixed;
  top: 160px;
  max-height: calc(100vh - 180px);
  overflow-y: auto;
}
.v-docs__sidebar h3 {
  font-size: 1rem;
  color: #2d2d2d;
  margin-bottom: 16px;
  font-weight: 800;
  border-bottom: 2px solid #fceef0;
  padding-bottom: 10px;
}
.v-docs__sidebar ul {
  list-style: none;
}
.v-docs__sidebar ul li {
  margin-bottom: 8px;
}
.v-docs__sidebar a {
  color: #666;
  font-weight: 600;
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  transition: all 0.3s ease;
  font-size: 0.88rem;
  line-height: 1.4;
}
.v-docs__sidebar a:hover {
  color: #ff758c;
  background: #fff0f3;
  padding-left: 16px;
}

.v-docs__category {
  margin-bottom: 40px;
  background: #ffffff;
  padding: 30px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(255, 117, 140, 0.03);
  border: 1px solid #fceef0;
}
.v-docs__category h2 {
  font-size: 1.4rem;
  color: #2d2d2d;
  margin-bottom: 32px;
  padding-bottom: 14px;
  border-bottom: 2px solid #fceef0;
  position: relative;
  font-weight: 800;
}
.v-docs__category h2::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 60px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, #ff758c, #ff7eb3);
}

.v-docs__item {
  display: table;
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px dashed #fceef0;
}
.v-docs__item:last-child {
  margin-bottom: 0;
}
.v-docs__item--seamless, .v-docs__item--cancel {
  display: flex;
  flex-direction: column;
}
.v-docs__item--seamless {
  border-radius: 24px;
  padding: 20px;
}

.v-docs__text-cell {
  display: table-cell;
  vertical-align: top;
  padding-right: 32px;
}
.v-docs__text-cell h3 {
  font-size: 1rem;
  color: #2d2d2d;
  margin-bottom: 12px;
  font-weight: 700;
  line-height: 1.5;
  border-left: 4px solid #ff7eb3;
  padding-left: 12px;
  padding-bottom: 0.1rem;
  display: inline-block;
}
.v-docs__text-cell p {
  line-height: 1.8;
  font-size: 0.95rem;
  margin-bottom: 12px;
  text-align: justify;
}
.v-docs__text-cell p:last-child {
  margin-bottom: 0;
}
.v-docs__text-cell p span {
  font-size: 0.75rem;
  display: block;
}
.v-docs__text-cell--lead {
  padding-left: 0 !important;
  margin: 12px 0 30px !important;
}
.v-docs__text-cell .feature-list {
  margin-left: 30px;
}
.v-docs__text-cell .feature-list li {
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.v-docs__image-cell {
  display: table-cell;
  width: 400px;
  vertical-align: middle;
}
.v-docs__image-cell.preview {
  width: auto;
}
.v-docs__image-cell .create-img img {
  margin-bottom: 20px;
  padding: 10px;
  border: 1px dotted #000;
  transition: all 0.6s;
  background: #fff;
}
.v-docs__image-cell .create-img img:hover {
  transform: scale(2);
}
@media (max-width: 768px) {
  .v-docs__image-cell .create-img img:hover {
    transform: scale(1.2);
  }
}

.img-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  cursor: zoom-out;
}
.img-overlay img {
  max-width: 90%;
  max-height: 90%;
  -o-object-fit: contain;
     object-fit: contain;
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.v-docs__image-box {
  text-align: center;
  font-size: 0.78rem;
  box-sizing: border-box;
}
.v-docs__image-box img {
  transition: all 0.6s;
}
.v-docs__image-box img:hover {
  transform: scale(2);
}
@media (max-width: 768px) {
  .v-docs__image-box img:hover {
    transform: scale(1.2);
  }
}

@media (max-width: 992px) {
  .v-docs-wrapper {
    display: block;
    padding: 0 16px;
  }
  .v-docs__sidebar-cell {
    display: block;
    width: 100%;
    margin-bottom: 24px;
  }
  .v-docs__sidebar {
    position: static;
  }
  .v-docs__content-cell {
    display: block;
    width: 100%;
  }
  .v-docs__item {
    display: block;
  }
  .v-docs__text-cell {
    display: block;
    padding-right: 0;
    margin-bottom: 20px;
  }
  .v-docs__image-cell {
    display: block;
    width: 100%;
  }
}
/* 特別な装飾：SNS告知用画像自動生成カード用 */
.v-docs__item--super-featured {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 28px;
  padding: 25px;
  box-shadow: 0 20px 50px rgba(255, 117, 140, 0.25);
  border: 3px solid transparent;
  background-image: linear-gradient(#ffffff, #ffffff), linear-gradient(135deg, #ff007f 0%, #ff758c 50%, #ff7eb3 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  position: relative;
  margin: 60px 0;
}
.v-docs__item--super-featured .v-docs__text-cell h3 {
  font-size: 1.45rem;
  color: #ff007f;
  border-left: none;
  padding-left: 0;
  border-bottom: 2px solid #ffe3e8;
  padding-bottom: 14px;
}
.v-docs__item--super-featured .v-docs__text-cell p {
  font-size: 1rem;
  color: #2d2d2d;
  line-height: 1.9;
}

.function {
  text-decoration: underline;
  text-underline-offset: 5px;
  color: #ea555c;
  font-weight: bold;
}

.v-docs__badge {
  margin-top: 5px;
  display: block;
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 0.8rem;
  margin-left: 10px;
  vertical-align: middle;
  width: -moz-fit-content;
  width: fit-content;
  color: #432;
  background: #f9c1c1;
}
.v-docs__badge.operation {
  background: #dcf6ff;
}
.v-docs__badge.freelance {
  background: #cfffe6;
}

.v-docs__list--unstyled {
  list-style: none;
  padding-left: 0;
  margin: 12px 0;
}

.v-docs__list-item--indent-first,
.v-docs__list-item--indent,
.v-docs__list-item--indent-only {
  padding-left: 1.5em;
}

.v-docs__list-item--indent-first {
  margin-top: 10px;
  margin-bottom: 8px;
}

.v-docs__list-item--indent {
  margin-bottom: 8px;
}

.v-docs__video {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.v-docs__text-note {
  font-size: 0.75rem;
  display: block;
}

.v-docs__trigger-video {
  cursor: pointer;
}

/* 動画モーダル（ポップアップ） */
.v-lp-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.v-lp-modal.is-open {
  display: flex;
  opacity: 1;
}
.v-lp-modal__content {
  width: 90%;
  max-width: 960px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  background-color: #000;
}
.v-lp-modal__close {
  position: absolute;
  top: 24px;
  right: 32px;
  color: #94a3b8;
  font-size: 40px;
  font-weight: 300;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s ease;
}
.v-lp-modal__close:hover {
  color: #ffffff;
}

/* トップに戻るボタン */
.v-lp-pagetop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background-color: #ea7855;
  color: #ffffff;
  border: none;
  border-radius: 50%;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.15);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background-color 0.2s;
}
.v-lp-pagetop.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.v-lp-pagetop:hover {
  background-color: #d66443;
  transform: translateY(-3px);
}
@media (max-width: 640px) {
  .v-lp-pagetop {
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
    font-size: 0.9rem;
  }
}

.v-lp-form__guide {
  background-color: #f8fafc;
  border-left: 4px solid #ea7855;
  padding: 15px 20px;
  margin-bottom: 20px;
  font-size: 0.88rem;
  line-height: 1.6;
  color: #475569;
  text-align: left;
  border-radius: 0 8px 8px 0;
  display: none;
}

.v-lp-form__options-block {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 8px;
  text-align: left;
  display: none;
}

.v-lp-form__radio-group {
  margin-bottom: 20px;
}
.v-lp-form__radio-group:last-child {
  margin-bottom: 0;
}

.v-lp-form__radio-label {
  display: block;
  font-size: 0.92rem;
  font-weight: bold;
  color: #0f172a;
  margin-bottom: 8px;
}

.v-lp-form__radio-flex {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.v-lp-form__radio-flex label {
  font-size: 0.9rem;
  color: #334155;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: bold;
}
.v-lp-form__radio-flex label input[type=radio] {
  cursor: pointer;
  width: 16px;
  height: 16px;
  accent-color: #ea7855;
}

.v-lp-form__input--custom {
  width: 100% !important;
  padding: 14px 12px !important;
  border: 1px solid #000 !important;
  background: #ffffff !important;
  font-size: 0.95rem !important;
  box-sizing: border-box !important;
  color: #0f172a;
  border-radius: 0;
  margin-bottom: 10px;
}
.v-lp-form__input--custom:focus {
  outline: none;
  border-color: #5562ea !important;
}

.v-lp-confirm {
  padding: 100px 24px;
  background: #fffcf9;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.v-lp-confirm__box {
  max-width: 600px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  width: 100%;
  border: 1px solid #eee;
}

.v-lp-confirm__title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #0f172a;
  text-align: center;
}

.v-lp-confirm__lead {
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 30px;
  text-align: center;
}

.v-lp-confirm__dl {
  margin-bottom: 30px;
  text-align: left;
}

.v-lp-confirm__dt {
  font-size: 0.85rem;
  font-weight: bold;
  color: #ea7855;
  margin-bottom: 6px;
}

.v-lp-confirm__dd {
  font-size: 1rem;
  color: #334155;
  margin-bottom: 20px;
  padding-bottom: 10px;
  word-break: break-all;
}

.v-lp-confirm__flex-btns {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.v-lp-confirm__btn-back {
  background: #cbd5e1;
  color: #334155;
  border: none;
  padding: 14px;
  width: 100%;
  font-weight: bold;
  cursor: pointer;
  text-align: center;
  font-size: 0.95rem;
  transition: background 0.2s;
}
.v-lp-confirm__btn-back:hover {
  background: #94a3b8;
}

.v-lp-confirm__btn-submit {
  background: #ea7855;
  color: #fff;
  border: none;
  padding: 14px;
  width: 100%;
  font-weight: bold;
  cursor: pointer;
  text-align: center;
  font-size: 0.95rem;
  box-shadow: 0 4px 12px rgba(234, 120, 85, 0.2);
  transition: background 0.2s;
}
.v-lp-confirm__btn-submit:hover {
  background: #d66443;
}

.v-lp-body .v-lp-columns {
  padding: 80px 0;
  border-bottom: 1px solid #000;
}
@media (max-width: 640px) {
  .v-lp-body .v-lp-columns {
    padding: 40px 0;
  }
}
.v-lp-body .v-lp-columns__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
@media (max-width: 640px) {
  .v-lp-body .v-lp-columns__grid {
    grid-template-columns: 1fr;
  }
}
.v-lp-body .v-lp-columns__card {
  display: block;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #eee;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  padding: 25px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.v-lp-body .v-lp-columns__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.v-lp-body .v-lp-columns__card h3 {
  font-size: 1rem;
  font-weight: bold;
  color: #222;
  margin-bottom: 10px;
  line-height: 1.5;
}
.v-lp-body .v-lp-columns__card p {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

.v-lp-body .v-article {
  padding: 160px 0 100px;
}
@media (max-width: 820px) {
  .v-lp-body .v-article {
    padding-top: 110px;
  }
}
@media (max-width: 640px) {
  .v-lp-body .v-article {
    padding-bottom: 60px;
  }
}
.v-lp-body .v-article__container {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 20px;
}
.v-lp-body .v-article__breadcrumb {
  font-size: 0.8rem;
  color: #888;
  margin-bottom: 24px;
}
.v-lp-body .v-article__breadcrumb a {
  color: #f58bc6;
  text-decoration: underline;
}
.v-lp-body .v-article__title {
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 16px;
  color: #222;
}
@media (max-width: 640px) {
  .v-lp-body .v-article__title {
    font-size: 1.4rem;
  }
}
.v-lp-body .v-article__lead {
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eee;
}
.v-lp-body .v-article h2 {
  font-size: 1.3rem;
  font-weight: bold;
  margin: 50px 0 20px;
  padding-left: 14px;
  border-left: 6px solid #f58bc6;
  color: #222;
}
@media (max-width: 640px) {
  .v-lp-body .v-article h2 {
    font-size: 1.1rem;
  }
}
.v-lp-body .v-article h3 {
  font-size: 1.05rem;
  font-weight: bold;
  margin: 30px 0 12px;
  color: #333;
}
.v-lp-body .v-article p {
  font-size: 0.95rem;
  line-height: 1.9;
  color: #444;
  margin-bottom: 18px;
}
.v-lp-body .v-article__list {
  list-style: none;
  margin: 0 0 20px;
}
.v-lp-body .v-article__list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #444;
}
.v-lp-body .v-article__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #f58bc6;
  font-weight: bold;
}
.v-lp-body .v-article__cta {
  margin: 60px 0;
  padding: 40px;
  background: #fff8fb;
  border-radius: 16px;
  text-align: center;
  border: 1px solid #ffe3ef;
}
.v-lp-body .v-article__cta p {
  margin-bottom: 20px;
  font-weight: bold;
  color: #222;
}
.v-lp-body .v-article__related {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid #eee;
}
.v-lp-body .v-article__related h3 {
  margin-bottom: 16px;
}
.v-lp-body .v-article__related ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.v-lp-body .v-article__related a {
  color: #f58bc6;
  text-decoration: underline;
  font-size: 0.9rem;
}

/*# sourceMappingURL=final_style5.css.map */
