body {
  position: relative;
  margin: 0;
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: #111827;
}

header {
  position: absolute;
  width: 100%;
  padding-bottom: 32px;
  pointer-events: auto;
  top: 0;
  left: 0;
  z-index: 20;
}

main:has(.service-navigation) {
  padding-top: 73px;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

summary::-webkit-details-marker {
  display: none;
}

header > nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  width: 100%;
  min-height: 57px;
  padding: 8px 16px;
  box-shadow:
    0 20px 25px -5px rgb(0 0 0 / 0.1),
    0 8px 10px -6px rgb(0 0 0 / 0.1);
  border-bottom: 1px solid #000000;
  background-color: #111827;
  color: #ffffff;
}

.header-area {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  position: relative;
  width: 200px;
  height: 40px;
  z-index: 2;
  overflow: hidden;
}

.header-logo > img {
  position: absolute;
  top: 0;
  left: -13px;
  max-width: none;
}

.login-btn {
  border: 1px solid #ffffff;
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 12px;
  line-height: 16px;
  color: #ffffff;
}

.login-btn:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.service-navigation {
  position: sticky;
  width: 100%;
  box-sizing: border-box;
  padding-top: 16px;
  top: 0;
  left: 0;
  background-color: #ffffff;
  z-index: 5;
}

.service-navigation > ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: calc(100% - 32px);
  margin: 0 auto;
  padding: 0 6px 16px;
  gap: 6px;
  box-sizing: border-box;
  border-bottom: 2px solid #E62C84;
}

.service-navigation > ul li {
  position: relative;
  font-size: 14px;
  box-sizing: border-box;
  padding: 0 6px 6px;
  line-height: 1;
  cursor: pointer;
}

.service-navigation > ul li:not(.active):hover span {
  opacity: 0.7;
}

.service-navigation > ul li.active::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  left: 0;
  bottom: 0;
  background-color: #D1D5DC;
}

.page-title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: calc(100% - 32px);
  margin: 0 auto;
  padding: 89px 12px 16px;
  box-sizing: border-box;
  border-bottom: 2px solid #E62C84;
  font-size: 22px;
  font-weight: normal;
  line-height: 1;
}

.contents-area {
  width: 1200px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  gap: 90px;
  margin: 0 auto;
  padding-top: 48px;
  min-height: calc(100vh - 355px);
}

.contents-area:has(.kv) {
  padding-top: 30px;
}

.terms-of-service-area {
  padding-top: 117.5px;
  min-height: calc(100vh - 295.5px);
}

.page-contents {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 24px;
}

.page-contents-area {
  width: 100%;
  padding: 16px;
  box-sizing: border-box;
  border-left: 1px solid #D1D5DC;
  border-right: 1px solid #D1D5DC;
  border-bottom: 1px solid #D1D5DC;
}

.plans-list {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
}

.plans-list > h3 {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
  background-color: #6B6E76;
  line-height: 1;
  padding: 18px;
  box-sizing: border-box;
  gap: 12px;
}

.section-title {
  width: 100%;
  font-size: 26px;
  margin: 0 0 12px;
  padding: 14px 20px;
  box-sizing: border-box;
  font-weight: normal;
  color: #ffffff;
  line-height: 1.4;
  background: linear-gradient(
    to right,
    color-mix(
      in srgb,
      var(--section-title-color) 100%,
      transparent
    ) 0%,
    color-mix(
      in srgb,
      var(--section-title-color) 100%,
      transparent
    ) 30%,
    color-mix(
      in srgb,
      var(--section-title-color) 0%,
      transparent
    ) 100%
  );
}

.section-title::before,
.section-title::after {
  content: "";
  display: block;
  height: 0;
}

.section-title::before {
  margin-top: -0.15em;
}

.section-title::after {
  margin-bottom: -0.1em;
}

.terms-of-service-area .section-title {
  background: linear-gradient(to right, rgba(31, 47, 138, 1) 0%, rgba(31, 47, 138, 1) 30%, rgba(31, 47, 138, 0) 100%);
}

.contents-area > section {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
}

.contents-area > section:not(.page-contents) {
  gap: 24px;
}

.kv {
  position: relative;
  padding-top: 45%;
  overflow: hidden;
}

.kv-area-position {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.kv-area {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.kv-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(201, 201, 255, 0.4);
  z-index: 2;
}

.kv-area > h1 {
  position: absolute;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #ffffff;
  font-weight: normal;
  gap: 16px;
  z-index: 3;
  margin-top: 11.5%;
  line-height: 1;
}

.kv-area > h1 > span {
  background-color: #111827;
}

.kv-area > h1 > span:nth-of-type(1) {
  font-size: 25px;
  padding: 16px 25px;
}

.kv-area > h1 > span:nth-of-type(2) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 50px;
}

.kv-area > h1 > span:nth-of-type(2) > img {
  display: block;
}

.kv-area > img {
  position: absolute;
  display: block;
  width: 100%;
  height: auto;
}

.front-page-kv-image {
  top: var(--kv-top);
  left: var(--kv-left);
}

.catchphrase-area {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
}

.catchphrase {
  font-size: 35px;
  font-weight: bold;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 30px;
}

.catchphrase-description {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 40px;
  width: 984px;
  padding: 22px;
  box-sizing: border-box;
}

.catchphrase-description::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 2px;
  border-top: 2px solid #FAD5E6;
  border-left: 2px solid #FAD5E6;
}

.catchphrase-description::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 0;
  right: 0;
  bottom: 0;
  border-right: 2px solid #E62C84;
  border-bottom: 2px solid #E62C84;
}

.catchphrase-description > p {
  position: relative;
  z-index: 2;
}

.service-list-area {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 12px;
}

.service-list-area > section {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 32px;
  padding: 32px;
  box-sizing: border-box;
  border: 1px solid #D1D5DC;
}

.service-list-area > section > h3 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  font-size: 28px;
  font-weight: bold;
}

.service-list-area > section > h3 > img {
  display: block;
  width: auto;
  height: 64px;
}

.features-list {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: stretch;
  flex-wrap: wrap;
  gap: 32px;
}

.features-list > li {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  width: calc((100% - 32px) / 2);
  gap: 22px;
}

.features-list > li > h4 {
  font-size: 20px;
  font-weight: bold;
}

.features-list > li > p {
  line-height: 1.7;
}

.features-list > li > img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid #D1D5DC;
  box-sizing: border-box;
}

.supplement {
  display: block;
  font-size: 12px;
  padding-top: 19px;
}

.plan-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.plan-list-title {
  width: 100%;
  box-sizing: border-box;
  padding: 12px 16px;
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
  line-height: 1;
  background-color: var(--service-main-color);
}

.plan-list > ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 16px;
  box-sizing: border-box;
  border-left: 1px solid rgba(0, 0, 0, 0.25);
  border-right: 1px solid rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  background-color: #ffffff;
  padding: 16px;
}

.plan-list > ul > li {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 16px;
  padding: 16px;
  border: 1px solid rgba(0, 0, 0, 0.45);
  background-color: #FFFDF5;
  box-sizing: border-box;
}

.plan-list > ul > li > h6 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  width: 100%;
  font-size: 18px;
  font-weight: bold;
}

.free-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 0 13px 0 10px;
  height: 26.5px;
  margin-left: 13.25px;
  color: #ffffff;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
  font-size: 15px;
  line-height: 1;
  isolation: isolate;
  z-index: 0;
}

.free-icon::before {
  content: "";
  position: absolute;
  width: 26.5px;
  height: 26.5px;
  left: -13.25px;
  background-color: #E50400;
  clip-path: polygon(
    50% 0%,
    100% 50%,
    50% 100%,
    0% 50%
  );
  z-index: -1;
}

.free-icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to right,
    #E50400 0%,
    #E50400 20%,
    #ca1e21 100%
  );
  z-index: -1;
}

.plan-description {
  font-size: 13px;
  color: #54647B;
}

.plan-list > ul > li > ul {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 16px;
}

.plan-list > ul > li > ul > li {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.plan-list > ul > li > ul > li:nth-of-type(n+2) {
  padding-top: 16px;
  border-top: 1px solid #D1D5DC;
}

.price-block {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 4px;
  padding: 16px;
  border: 1px solid #D1D5DC;
  box-sizing: border-box;
  line-height: 1;
  background-color: #ffffff;
  line-height: 1;
}

.price-block > span:nth-of-type(1) {
  font-size: 18px;
  font-weight: bold;
}

.price-block > span:nth-of-type(2) {
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
  gap: 4px;
  font-size: 13px;
  color: #62748E;
}

.subscribe-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding: 8px;
  gap: 9px;
  border: 1px solid rgba(0,  0, 0, 0.45);
  color: #ffffff;
  font-size: 14px;
  background: linear-gradient(
    to bottom,
    rgba(103, 92, 255, 1) 0%,
    rgba(103, 92, 255, 1) 20%,
    rgba(90, 80, 226, 1) 100%
  );
}

.subscribe-btn::before {
  content: "";
  width: 27.5px;
  height: 20px;
  background-image: url(../img/plan-icon.svg);
  background-size: cover;
}

.subscribe-btn:hover {
  background: linear-gradient(
    to bottom,
    rgba(124, 113, 255, 1) 0%,
    rgba(124, 113, 255, 1) 20%,
    rgba(103, 92, 255, 1) 100%
  );
}

.service-subscription-area {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
}

.service-subscription,
.contact {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  gap: 32px;
  padding: 32px;
  box-sizing: border-box;
}

.service-subscription {
  background-color: var(--service-sub-color);
}

.contact {
  background-color: var(--service-main-color);
}

.service-faq-area,
.service-contact-area {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  gap: 16px;
}

.service-faq-area > p,
.service-contact-area > p {
  color: #ffffff;
  text-align: center;
  line-height: 1.6;
}

.service-faq-area {
  padding-bottom: 32px;
  border-bottom: 1px solid var(--service-sub-color);
}

.plan-check-btn,
.contact-btn,
.faq-link-btn,
.link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 0;
  line-height: 1;
  border-radius: 4px;
  box-sizing: border-box;
  gap: 9px;
  border: 1px solid rgba(17, 24, 39, 0.7);
}

.plan-check-btn,
.contact-btn,
.faq-link-btn {
  width: 320px;
}

.plan-check-btn {
  color: #ffffff;
  background-color: var(--service-main-color);
}

.plan-check-btn:hover {
  background-color: rgba(var(--service-main-color-rgb), 0.7);
}

.contact-btn,
.faq-link-btn {
  color: #111827;
  background-color: #ffffff;
}

.contact-btn::before {
  content: "";
  width: 28px;
  height: 20px;
  margin-top: 3px;
  background-color: currentColor;
  mask-image: url(../img/mail.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url(../img/mail.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}

.faq-link-btn::before {
  content: "";
  width: 20px;
  height: 20px;
  margin-top: 3px;
  background-color: currentColor;
  mask-image: url(../img/question.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url(../img/question.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}

.contact-btn:hover,
.faq-link-btn:hover {
  color: var(--service-main-color);
}

.link-btn {
  width: 370px;
  color: #ffffff;
  background-color: #6B6E76;
  font-size: 18px;
}

.link-btn:hover {
  opacity: 0.7;
}

.link-btn::before {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url(../img/arrow.svg);
  background-size: cover;
}

.faq-list {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 24px;
}

.faq-list > li {
  width: 100%;
}

.faq-list > li summary {
  position: relative;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  cursor: pointer;
  list-style: none;
  padding: 18px 56px 18px 18px;
  box-sizing: border-box;
  background-color: #DFDFDF;
  color: #2E2E2E;
}

.faq-list > li summary::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background-color: #2E2E2E;
  border-radius: 2px;
  top: 28px;
  right: 18px;
}

.faq-list > li details:not([open]) summary::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 20px;
  background-color: #2E2E2E;
  border-radius: 2px;
  top: 19px;
  right: 27px;
}

.faq-list > li summary + p {
  width: 100%;
  padding: 18px;
  box-sizing: border-box;
  background-color: #F0F0F0;
  border-top: 2px solid #BFBFBF;
}

footer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  gap: 22px;
  margin-top: 90px;
  padding: 20px 16px;
  box-sizing: border-box;
  background-color: #111827;
  font-size: 13px;
  color: #ffffff;
  line-height: 1;
}

.footer-menu-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

footer a {
  color: #ffffff;
}

footer a:hover {
  opacity: 0.6;
}

.terms-of-service-contents {
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  border: 1px solid #D1D5DC;
  margin-bottom: 66px;
}

.service-block-list {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
}

.service-block-list > li {
  width: 100%;
  padding: 16px 0;
}

.service-block-list > li > div {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  padding: 16px;
  border: 1px solid rgba(0, 0, 0, 0.25);
  box-sizing: border-box;
  color: #111827;
  gap: 12px;
  background-color: var(--service-sub-color);
}

.service-block-list > li > div > h4 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  font-size: 25px;
  font-weight: bold;
}

.service-block-list > li > div > h4 > img {
  display: block;
  width: auto;
  height: 50px;
}

.service-block-list > li > div > p {
  font-size: 13px;
  color: #54647B;
  line-height: 1.6;
}

.last-updated-date {
  width: 100%;
  font-size: 12px;
  line-height: 1;
  text-align: right;
  margin-bottom: 12px;
}

.terms-of-service,
.policy-list-block {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  padding: 12px;
  box-sizing: border-box;
  border: 1px solid #c0c0c0;
  background-color: #f3f4f6;
  gap: 24px;
  counter-reset: terms-section;
}

.terms-of-service > section,
.policy-list-block > section {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 12px;
}

.terms-of-service > section > h3,
.policy-list-block > section > h3 {
  width: 100%;
  font-size: 14px;
  font-weight: bold;
  color: #ffffff;
  background-color: #111827;
  padding: 8px;
  box-sizing: border-box;
  line-height: 20px;
  counter-increment: terms-section;
}

.terms-of-service > section > h3::before {
  content: "第"  counter(terms-section) "条　";
}

.policy-list-block > section > h3::before {
  content: counter(terms-section) ". ";
}

.policy-list-block a:hover {
  text-decoration: underline;
}

.terms-of-service > section > ul,
.terms-of-service > section > ul > li > div > ul {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}

.terms-of-service > section > p + ul {
  padding-top: 12px;
  border-top: 1px solid #e3e3e3;
}

.terms-of-service > section > ul > li,
.terms-of-service > section > ul > li > div > ul > li {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.terms-of-service > section > ul > li > div {
  flex: 1;
}

.terms-of-service > section > ul > li:nth-of-type(n+2),
.terms-of-service > section > ul > li > div > ul > li {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #e3e3e3;
}

/* 通常階層の連番を初期化 */
.terms-of-service > section > ul {
  counter-reset: terms-item;
}

/* 通常階層の連番を進める */
.terms-of-service > section > ul > li {
  counter-increment: terms-item;
}

/* 通常表記 */
.terms-of-service > section > ul > li::before {
  content: counter(terms-item) ".";
}

/* カッコ付き */
.terms-of-service > section > ul > li.parenthesized-item::before {
  content: "(" counter(terms-item) ")";
}

/* 一段下げ側の連番を初期化 */
.terms-of-service .parenthesized-numbers {
  counter-reset: terms-child-item;
}

/* 一段下げ側の連番を進める */
.terms-of-service .parenthesized-numbers > li {
  counter-increment: terms-child-item;
}

/* 一段下げ側の通常表記 */
.terms-of-service .parenthesized-numbers > li::before {
  content: counter(terms-child-item) ".";
}

/* 一段下げ側のカッコ付き */
.terms-of-service .parenthesized-numbers > li.parenthesized-item::before {
  content: "(" counter(terms-child-item) ")";
}

.supplementary-provisions {
  width: 100%;
  padding: 16px 0;
  text-align: center;
}

.supplementary-provisions + p {
  width: 100%;
  text-align: left;
}

.middle-display,
.sp-display {
  display: none;
}

.middle-break {
  display: inline;
}

.form-area {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 16px;
  width: 600px;
  padding: 30px;
  box-sizing: border-box;
  background-color: #fafafa;
  border: 1px solid #e3e3e3;
}

.form-area > p {
  font-size: 14px;
  line-height: 1.8;
}

.form-area > p:nth-of-type(1) {
  font-weight: bold;
}

.form-area > p:nth-of-type(2) {
  font-size: 11px;
}

.form-input-area {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
  margin-top: 4px;
}

.contact-field {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
}

.contact-field[hidden] {
	display: none !important;
}

.contact-field > dt {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
}

.contact-field > dd {
  width: 100%;
  margin: 0;
}

.contact-field > dd span {
  display: block;
  width: 100%;
}

.contact-field > dd span input {
  width: 100%;
  padding: 6px;
  box-sizing: border-box;
}

.contact-field > dd span select {
  padding: 6px;
  box-sizing: border-box;
}

.contact-field > dd span textarea {
  width: 100%;
  padding: 6px;
  box-sizing: border-box;
  resize: none;
}

.p-required {
  font-size: 10px;
  padding: 4px 6px;
  background-color: red;
  color: #ffffff;
}

.p-radio__spdeco > span > span {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 4px;
}

.p-radio__spdeco .wpcf7-list-item {
  width: auto;
  margin: 0;
}

.p-radio__spdeco .wpcf7-list-item > label {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
  cursor: pointer;
}

.p-radio__spdeco .wpcf7-list-item > label input {
  width: auto;
  margin: 0;
}

.p-agreeCheck {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-agreeCheck .wpcf7-list-item {
  margin: 0;
}

.p-agreeCheck .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.p-agreeCheck .wpcf7-list-item label input {
  margin: 2px 6px 0 0;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.contact-field .wpcf7-not-valid-tip {
  font-size: 14px;
  margin-top: 6px;
  padding-top: 0;
}



.p-agreeSend {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 16px;
  gap: 12px;
}

.p-agreeSend input {
  width: 150px;
  height: 35px;
  background-color: #3333ff;
  color: #ffffff;
  border: 1px solid #330099;
  cursor: pointer;
}

.p-agreeSend input:hover {
	background-color: #4d4dff;
	border-color: #4d1ab3;
}

.p-agreeSend input:disabled {
  background-color: #e6e6f2;
  color: #999999;
  border: 1px solid #ccccd9;
}

.p-agreeSend .wpcf7-spinner {
	display: none;
}

.wpcf7 form.submitting .p-agreeSend .wpcf7-spinner {
	display: inline-block;
}

.ssl-seal {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.ssl-label {
  display: inline-block;
  background-color: #cce5ff;
  color: #004085;
  font-size: 0.85rem;
  padding: 4px 8px;
  border-radius: 5px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.ssl-tooltip {
  visibility: hidden;
  width: 220px;
  background-color: #004085;
  color: #fff;
  text-align: left;
  padding: 8px;
  border-radius: 4px;
  position: absolute;
  z-index: 100;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 12px;
}

.ssl-seal:hover .ssl-tooltip {
	visibility: visible;
	opacity: 1;
}

@media screen and (max-width: 1215px) {
  
  .contents-area {
    width: 90%;
  }

  .kv-area > h1 {
    gap: 12px;
  }

  .kv-area > h1 > span:nth-of-type(1) {
    font-size: 20px;
  }

  .kv-area > h1 > span:nth-of-type(2) {
    padding: 8px 10%;
  }

  .kv-area > h1 > span:nth-of-type(2) > img {
    width: 80%;
    height: auto;
  }

  .front-page-kv-image {
    top: var(--kv-1215-top);
    left: var(--kv-1215-left);
  }

  .catchphrase-description {
    width: 100%;
  }

}

@media screen and (max-width: 995px) {

  .middle-display,
  .middle-break {
    display: block;
  }

  .front-page-kv-image {
    top: var(--kv-995-top);
    left: var(--kv-995-left);
  }

}

@media screen and (max-width: 755px) {

  .sp-display {
    display: block;
  }

  h2 {
    font-size: 22px;
  }

  .contents-area {
    gap: 60px;
  }

  .kv {
    padding-top: 56.25%;
  }

  .kv-area > h1 {
    gap: 8px;
  }

  .kv-area > h1 > span:nth-of-type(1) {
    font-size: 16px;
    padding: 12px 20px;
  }

  .kv-area > h1 > span:nth-of-type(2) {
    padding: 8px 10vw;
  }

  .kv-area > h1 > span:nth-of-type(2) > img {
    width: 50vw;
  }

  .front-page-kv-image {
    top: var(--kv-755-top);
    left: var(--kv-755-left);
  }

  .section-title {
    padding-right: 35%;
    background: linear-gradient(
      to right,
      color-mix(
        in srgb,
        var(--section-title-color) 100%,
        transparent
      ) 0%,
      color-mix(
        in srgb,
        var(--section-title-color) 100%,
        transparent
      ) 50%,
      color-mix(
        in srgb,
        var(--section-title-color) 25%,
        transparent
      ) 100%
    );
  }

  .terms-of-service-area .section-title {
    background: linear-gradient(
      to right,
      rgba(31, 47, 138, 1) 0%,
      rgba(31, 47, 138, 1) 50%,
      rgba(31, 47, 138, 0.25) 100%
    );
  }

  .catchphrase {
    font-size: 4.6vw;
  }

  .service-list-area > section {
    padding: 16px;
  }

  .features-list > li {
    width: 100%;
  }

  .plan-list > ul > li > ul > li {
    flex-direction: column;
    justify-content: center;
    gap: 16px;
  }

  .price-block {
    width: 100%;
    text-align: center;
  }

  .subscribe-btn {
    width: 100%;
  }

  .form-area {
    width: 100%;
    padding: 16px;
  }

}