@charset "UTF-8";

html,
body,
p,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
li,
dl,
dt,
dd,
pre,
blockquote,
address,
hr,
figure,
figcaption {
  margin: 0;
  padding: 0;
}

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

li {
  list-style: none;
}

body {
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  max-width: 100%;
  width: 100%;
  font-size: 18px;
  color: #000;
}

.sp-only-break {
  display: none;
}

.is-sp {
  display: none;
}

h2 {
  font-size: 38px;
  font-weight: 600;
  text-align: center;
  margin-top: 200px;
}

.decoration {
  text-align: center;
  margin: 20px auto 50px;
}

.decoration img {
  width: 176px;
  height: auto;
}

h3 {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
}

.fv {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  background-image:
    url("../../images/individual/plan/vector.png"),
    url("../../images/individual/plan/fv-back.png");
  background-repeat: no-repeat, no-repeat;
  background-position:
    256% 40%,
    center;
  background-size:
    85% auto,
    cover;
  width: 100%;
  padding: 96px 0 109px;
}

.fv__inner {
  width: 100%;
}

.fv__text {
  padding-left: 100px;
  position: relative;
  z-index: 2;
  max-width: 58%;
}

.fv__subtext {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 22px;
  color: #fff;
}

.fv__subtext::before {
  content: "";
  display: block;
  width: 1px;
  height: 56px;
  background-color: #fff;
  flex-shrink: 0;
}

.fv__heading {
  font-size: 56px;
  color: #fff;
  margin-top: 20px;
}

.fv__lead {
  display: inline-block;
  background-color: #fff;
  padding: 25px;
  border-radius: 10px;
  margin-top: 15px;
  width: 79%;
}

.plan__list--text {
  text-align: center;
  margin-top: 50px;
}

.plan__list--text span {
  color: #ff0000;
  font-weight: 500;
}

.plan__list--tab {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 10px auto 20px;
  padding: 20px;
  width: fit-content;
  background-color: #f5f5f5;
  border-radius: 10px;
}

.plan__list--tab-button {
  position: relative;
  appearance: none;
  border: 0;
  border-radius: 3px;
  box-shadow: none;
  padding: 12px 20px;
  background: none;
  cursor: pointer;
  font: inherit;
  transition:
    transform 0.25s ease,
    color 0.25s ease,
    background-color 0.25s ease;
}

.plan__list--tab-button:not(.is-active):hover {
  transform: translateY(-3px);
  color: #ff3333;
}

.plan__list--tab-button.is-active {
  position: relative;
  background: #ff0000;
  color: #fff;
  transition: none;
}

.plan__list--tab-button.is-active::after {
  content: "";
  position: absolute;
  top: 90%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: #ff0000;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  transform: translateX(-50%);
}

h2.pricing__price,
h2.faq__title {
  margin-top: 0px;
}

.pricing__plans {
  display: flex;
  width: 80%;
  margin: 50px auto 0;
  gap: 24px;
}

.pricing__plan {
  overflow: hidden;
  border-radius: 20px;
  width: 50%;
}

.pricing__plan--basic {
  border: 1px solid #ff0000;
}

.pricing__plan--basic .pricing__unit,
.pricing__plan--basic .pricing__price {
  color: #000;
}

.pricing__plan--standard {
  background: url(../../images/individual/plan/standard-back.png);
}

.pricing__plan--premium {
  background: url(../../images/individual/plan/premium-back.png);
}

.pricing__plan--executive {
  background: url(../../images/individual/plan/executive-back.png);
}

.pricing__name {
  background-color: #fff;
  text-align: center;
  border-radius: 50px;
  margin: 20px auto 5px;
  padding: 4px;
  width: 85%;
}

.pricing__plan:first-child .pricing__name,
.pricing__plan:first-child .pricing__features-wrapper {
  background-color: #f5f5f5;
}

.pricing__unit {
  transform: translateY(12px);
}

.pricing__unit,
.pricing__price,
.pricing__lead {
  text-align: center;
  color: #fff;
}

.pricing__features-wrapper {
  background-color: #fff;
  border-radius: 10px;
  display: flex;
  gap: 10px;
  margin: 10px;
  padding: 17px;
}

.pricing__features {
  flex: 1;
}

.pricing__feature {
  display: flex;
  align-items: center;
  gap: 6px;
  color: inherit;
  white-space: nowrap;
}

.pricing__feature + .pricing__feature {
  margin-top: 8px;
}

.pricing__feature::before {
  content: "";
  display: block;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  border-radius: 3px;
  background-color: #ff0000;
  background-image: url("../../images/individual/plan/check-white.svg");
  background-repeat: no-repeat;
  background-position: center 60%;
  background-size: auto 12px;
}

.pricing__feature--highlight {
  color: #d2d2d2;
}

.pricing__feature--highlight::before {
  background-color: #d2d2d2;
  background-image: url("../../images/individual/plan/check-white.svg");
  background-repeat: no-repeat;
  background-position: center 60%;
  background-size: auto 12px;
}

.pricing__note {
  margin-left: 5px;
  color: #ff0000;
}

h2.pricing__price {
  padding: 0;
}

.pricing__price--value {
  font-size: 50px;
  font-weight: 700;
}

.comparison__text {
  text-align: center;
  margin: 20px 0;
}

.comparison__table--title {
  margin-top: 50px;
}

.comparison__table--title :nth-child(2) {
  margin-top: 100px;
}

.comparison__table-wrapper {
  width: 100%;
  box-sizing: border-box;
  padding-left: 20px;
  border-radius: 20px;
  overflow-x: auto;
}

.comparison__table {
  margin: 21px auto 0;
  min-width: 720px;
  border-collapse: collapse;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 0 1px #e0e0e0;
}

.comparison__th,
.comparison__td {
  border: 1px solid #e0e0e0;
  padding: 12px;
  text-align: center;
}
.comparison__th {
  font-weight: 500;
}

.comparison__th--empty {
  border: none;
  background-color: #d2d2d2;
  border-top-left-radius: 20px;
}

.comparison__td--label {
  width: calc(36% - 40px);
  text-align: left;
}

.comparison__col {
  width: 16%;
}

/* Modifiers: Header Colors */
.comparison__th--basic {
  background-color: #ffffff;
}
.comparison__th--standard {
  background-color: #ff7149;
  color: #fff;
}
.comparison__th--premium {
  background-color: #ff0000;
  color: #fff;
}
.comparison__th--executive {
  background-color: #cc0000;
  color: #fff;
  border-top-right-radius: 20px;
}

/* Modifiers: Column Backgrounds */
.comparison__td--bg-light-pink {
  background-color: rgba(255, 113, 73, 0.15);
}
.comparison__td--bg-pink {
  background-color: rgba(255, 0, 0, 0.15);
}

.comparison__td--bg-dark-pink {
  background-color: rgba(204, 0, 0, 0.15);
}

/* Element: Category Header Row */
.comparison__category-header {
  background-color: #888888;
  color: #ffffff;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  user-select: none;
}

.comparison__category-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.comparison__arrow {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: #fff;
  background-image: url("../../images/individual/plan/arrow-red.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 70%;
  color: transparent;
  border-radius: 3px;
  text-align: center;
  line-height: 0;
  font-size: 0;
  transform: rotate(180deg);
  transition: transform 0.2s ease;
}

/* State Modifiers: Toggle Actions */
.comparison__category-header--closed .comparison__arrow {
  transform: rotate(0deg);
}

.comparison__highlight {
  color: #ff0000;
}

/* アコーディオン要素の制御用 */
.comparison__item-row {
  overflow: hidden;
}

/* アニメーション中の崩れ防止策 */
.comparison__item-row.is-animating .comparison__td {
  border-color: transparent;
}

.faq__wrapper {
  background-color: #f5f5f5;
  margin: 200px auto 0;
  background-image: url("../../images/individual/plan/q-mark.png");
  background-image: -webkit-image-set(
    url("../../images/individual/plan/q-mark.png") 2x
  );
  background-image: image-set(
    url("../../images/individual/plan/q-mark.png") 2x
  );
  background-repeat: no-repeat;
  background-position: right top;
}

.faq {
  margin-top: 200px;
  padding: 150px 0;
  margin: 0 auto;
}

h2.faq__title {
  padding: 0;
}

.faq__item {
  background-color: #fff;
  border-radius: 10px;
  width: 52%;
  margin: 0 auto;
}

.faq__item:not(:last-child) {
  margin-bottom: 10px;
}

.faq__question .faq__label,
.faq__answer .faq__label {
  font-size: 22px;
  font-weight: bold;
  margin-right: 10px;
}

.faq__answer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 94%;
  border-top: #898989 2px dotted;
  transform: translateX(-50%);
}

.faq__question::marker {
  display: none;
}

.faq__answer,
.faq__question {
  list-style: none;
  position: relative;
  cursor: pointer;
  padding: 20px 56px 20px 20px;
  display: flex;
  align-items: baseline;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 20px;
  height: 20px;
  border-radius: 3px;
  background-color: #ff0000;
  transform: translateY(-50%);
  z-index: 0;
}

.faq__question::before {
  content: "";
  position: absolute;
  right: 30px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-60%) rotate(45deg);
  transition: transform 0.25s ease;
  z-index: 1;
}

.faq__item[open] > .faq__question::before {
  transform: translateY(-40%) rotate(-135deg);
}

.faq__answer {
  padding: 20px 56px 20px 20px;
}

.faq__answer .faq__label {
  color: #ff0000;
}

.faq__text--break {
  margin-top: 1.5em;
}

.document-cta {
  background: linear-gradient(145deg, #ff0000, #ff8a6a);
}

.document-cta__button::after {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 3px;
  background-color: #ff0000;
  background-image: url("../../images/individual/plan/right.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 10px;
  flex-shrink: 0;
}

.document-cta__image {
  width: 46%;
  flex-shrink: 0;
  height: auto;
  max-width: 100%;
}

.document-cta__title,
.document-cta__lead {
  color: #fff;
}

.document-cta__lead {
  margin-top: 20px;
}

.other-industry__links {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.other-industry__button {
  margin-top: 0;
  width: min(320px, 100%);
  position: relative;
  justify-content: center;
  text-align: center;
}

.other-industry__button::after {
  position: absolute;
  right: 20px;
}

.connection {
  margin: 200px auto 0;
  width: 80%;
  box-sizing: border-box;
}

.connection__subtitle {
  text-align: center;
}

h2.connection__title {
  margin-top: 0;
}

.connection__article--wrapper {
  display: flex;
  max-width: 100%;
  width: 100%;
  gap: 24px;
  border-radius: 17px;
  justify-content: center;
}

.connection__article {
  width: 30%;
  max-width: 100%;
  border: #ff0000 1px solid;
  border-radius: 17px;
  overflow: hidden;
}

.connection__article img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.connection__article--text {
  padding: 16px 20px;
}

.connection__article--highlight {
  color: #ff0000;
  font-size: 14px;
  font-weight: bold;
}

.more__btn {
  color: #fff;
  background-color: #f00;
  border-radius: 50px;
  margin: 100px auto 200px;
  padding: 15px 24px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 382px;
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.25);
}

.foot_contact h2 {
  margin-top: 0;
}

.gnav-item--hasSub {
  position: relative;
}
.gnav-subMenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 160px;
  margin: 0;
  padding: 8px 0;
  background: #fff;
  border: 1px solid #e7e9ee;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(18, 21, 27, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease,
    visibility 0.2s ease;
  pointer-events: none;
}
.gnav-item--hasSub:hover .gnav-subMenu,
.gnav-item--hasSub:focus-within .gnav-subMenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.gnav-subMenu__title {
  margin: 0;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  color: #8a8f99;
  white-space: nowrap;
}
.gnav-subMenu__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.gnav-subMenu__link {
  display: block;
  padding: 10px 16px;
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}
.gnav-subMenu__link:hover {
  background: #fff2f4;
}

@media (min-width: 1680px) {
  .fv__inner {
    display: flex;
    align-items: center;
    height: 100%;
  }

  .fv__text {
    padding-left: 200px;
  }

  .plan__list--tab {
    width: 20%;
  }

  .faq__wrapper {
    background-position: 80% top;
  }

  .faq__item {
    width: 38%;
    margin: 0 auto;
  }
}

@media (max-width: 1500px) {
  .fv__heading {
    font-size: 36px;
  }
}

@media (max-width: 1400px) {
  .pricing__plans {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing__plan {
    width: auto;
  }
}

@media (max-width: 1024px) {
  body {
    font-size: 16px;
  }

  h2 {
    font-size: 32px;
  }

  .fv {
    width: 100%;
    height: auto;
    min-height: 480px;
  }

  .fv__heading {
    font-size: 44px;
  }

  .fv__lead {
    padding: 20px 40px 20px 20px;
  }

  .faq,
  .document-cta__inner {
    width: 88%;
  }

  .case__item {
    flex: 0 0 72vw;
    width: 72vw;
  }

  .pricing__features-wrapper {
    padding: 20px;
  }

  .faq__wrapper {
    background-size: 38vw auto;
  }

  .document-cta__inner {
    gap: 28px;
  }

  .document-cta__image {
    width: 42%;
  }
}

@media (max-width: 900px) {
  .comparison__table--title {
    margin-bottom: 21px;
  }

  .comparison__table-wrapper {
    margin: 0 auto;
    width: 92%;
    max-width: 100%;
    min-width: 0;
    padding-left: 0;
    border-radius: 20px; /* 明示しておく */
    box-shadow: 0 0 0 1px #e0e0e0; /* ← ここに移動(枠線担当はwrapperのみ) */
    overflow-x: auto;
    overflow-y: hidden; /* sticky-x の妨げにはならない */
  }

  .comparison__table {
    width: 100%;
    max-width: none;
    min-width: 600px;
    table-layout: fixed;
    overflow: visible; /* stickyのためそのままでOK */
    border-radius: 0; /* 不要なので明示的に外す */
    box-shadow: none; /* ← table側からは完全に外す */
    margin: 0 auto;
  }

  .comparison__td {
    width: auto;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .comparison__th--empty,
  .comparison__td--label {
    position: sticky;
    left: 0;
    z-index: 2;
    background-color: #fff;
  }

  .comparison__th--empty {
    background-color: #d2d2d2;
  }

  /* カテゴリー見出し行はテーブル幅に関わらず画面幅内に収める */
  .comparison__category-header .comparison__td {
    position: sticky;
    left: 0;
    padding: 0;
  }

  .comparison__category-title {
    position: sticky;
    left: 0;
    width: 92vw;
    box-sizing: border-box;
    padding: 12px;
  }

  .sp-only-break {
    display: block;
  }

  body {
    font-size: 15px;
  }

  h2 {
    font-size: 28px;
  }

  .decoration {
    margin: 16px auto 32px;
  }

  .inner {
    width: 90%;
  }

  .fv {
    width: 100%;
    min-height: auto;
    border-radius: 0;
    background-position:
      110% top,
      center;
    background-size:
      140% auto,
      cover;
    flex-direction: column;
    padding: 60px 0 0 0;
  }

  .fv__text {
    max-width: 100%;
    margin: 42px auto 0;
  }

  .fv__subtext {
    font-size: 16px;
    gap: 12px;
  }

  .fv__subtext::before {
    height: 42px;
  }

  .fv__heading {
    font-size: 34px;
    line-height: 1.35;
  }

  .fv__lead {
    margin: 24px 0;
    padding: 16px 18px;
    font-size: 14px;
    line-height: 1.8;
    display: block;
  }

  .plan__list {
    width: 90%;
    margin: 0 auto;
  }

  .pricing__plan {
    width: 100%;
  }

  .pricing__name {
    width: 70%;
    margin-top: 24px;
  }

  .pricing__unit {
    transform: none;
    margin-top: 10px;
  }

  .pricing__price--value {
    font-size: 48px;
  }

  .pricing__feature {
    padding-left: 0;
  }

  .faq__wrapper {
    margin-top: 120px;
    background-size: 45vw auto;
    background-position: right 12px top 12px;
  }

  .faq {
    width: 90%;
    padding: 84px 0 96px;
  }

  .faq__item {
    width: 90%;
  }

  .faq__question,
  .faq__answer {
    font-size: 15px;
    line-height: 1.8;
  }

  .faq__question span,
  .faq__answer span {
    font-size: inherit;
  }

  .faq__question {
    padding: 16px 52px 16px 16px;
  }

  .faq__answer {
    padding: 16px;
  }

  .faq__question::after {
    right: 16px;
  }

  .faq__question::before {
    right: 22px;
  }

  .document-cta__inner {
    width: 90%;
    padding: 84px 0;
    flex-direction: column;
    gap: 28px;
  }

  h2.document-cta__title {
    text-align: center;
  }

  .document-cta__lead {
    text-align: center;
    margin-top: 14px;
  }

  .document-cta__button {
    justify-content: space-between;
    margin-top: 24px;
  }

  .other-industry__button {
    margin-top: 0;
  }

  .document-cta__image {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
  }
}

@media (max-width: 740px) {
  .pricing__plans {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .is-sp {
    display: block;
  }

  body {
    font-size: 14px;
  }

  h2 {
    font-size: 24px;
    margin-top: 100px;
  }

  h3 {
    font-size: 18px;
  }

  .fv__heading {
    font-size: 28px;
  }

  .fv__lead {
    width: 90%;
    margin: 24px auto;
  }

  .fv__text {
    padding-left: 0;
    width: 90%;
  }

  .decoration img {
    width: 120px;
  }

  .plan__list--tab-button {
    width: fit-content;
    padding: 10px 5px;
    color: #000;
  }

  .pricing__plans,
  .faq,
  .document-cta__inner {
    width: 100%;
    margin: 0 auto;
  }

  h2.pricing__price {
    margin-top: 0;
  }

  .pricing__price--value {
    font-size: 40px;
  }

  .comparison__text {
    width: 90%;
    margin: 0 auto;
  }

  .faq__wrapper {
    margin-top: 96px;
    background-size: 52vw auto;
  }

  h2.faq__title {
    width: 90%;
    margin: 0 auto;
  }

  .faq {
    padding: 64px 0 72px;
  }

  .document-cta__inner {
    padding: 64px 0;
  }

  h2.document-cta__title {
    margin-top: 0;
  }

  .document-cta__button {
    padding: 13px 14px;
    font-size: 13px;
  }

  .other-industry__links {
    gap: 30px;
  }

  .connection {
    margin: 120px auto 0;
    width: 90%;
  }

  .connection__article--wrapper {
    flex-direction: column;
    gap: 46px;
  }

  .connection__article {
    width: 100%;
  }

  .more__btn {
    width: auto;
  }
}
