@charset "UTF-8";
/*==================================================	
/ CSS Reset
/=================================================*/
/* html5doctor.com Reset v1.6.1 (http://html5doctor.com/html-5-reset-stylesheet/) - http://cssreset.com */
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #1a1a1a;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
}

a {
  color: #1a6fd4;
  text-decoration: none;
  text-decoration-skip-ink: none;
}
a:hover {
  color: #1558b0;
}

input,
select {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

.fs-xs {
  font-size: 0.75rem;
}

.fs-sm {
  font-size: 0.875rem;
}

.fs-base {
  font-size: 1rem;
}

.fs-lg {
  font-size: 1.25rem;
}

.fs-xl {
  font-size: 1.5rem;
}

.fs-xxl {
  font-size: 2rem;
}

.fw-bold {
  font-weight: 700;
}

.small {
  font-size: 0.75rem;
}

.d-block {
  display: block;
}

.lh-1 {
  line-height: 1;
}

.lh-sm {
  line-height: 1.25;
}

.lh-md {
  line-height: 1.5;
}

.lh-lg {
  line-height: 2;
}

.text-center {
  text-align: center;
}

.text-right,
.text-end {
  text-align: right;
}

.text-left,
.text-start {
  text-align: left;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-wrap {
  white-space: wrap !important;
}

.hidden {
  display: none !important;
}

.text-danger {
  color: #dc2626;
}

.pc-only {
  display: inline-block;
}
@media (max-width: 768px) {
  .pc-only {
    display: none;
  }
}

.sp-only {
  display: none;
}
@media (max-width: 768px) {
  .sp-only {
    display: inline-block;
  }
}

.l-container {
  display: flex;
  align-items: start;
  gap: 2rem;
  max-width: 1100px;
  margin-inline: auto;
  padding: 5rem 0;
}
.l-container__main {
  flex: 1;
}
.l-container__side {
  width: 300px;
}

@media (max-width: 768px) {
  .l-container {
    flex-direction: column;
    max-width: 100%;
    padding: 2rem 1rem;
  }
  .l-container__main {
    flex: auto;
  }
  .l-container__side {
    width: 100%;
    border-top: 1px solid #ccc;
    padding-top: 2rem;
  }
}
.l-footer {
  position: relative;
  background: #f4f4f4;
  color: #1a1a2e;
  width: 100%;
  padding: 2rem 0;
}
@media (max-width: 768px) {
  .l-footer {
    padding: 1rem 0;
  }
}
.l-footer__inner {
  width: 1100px;
  margin: 0 auto;
  padding: 1rem 0;
}
@media (max-width: 768px) {
  .l-footer__inner {
    width: 100%;
  }
}
.l-footer__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .l-footer__container {
    flex-direction: column;
  }
}
.l-footer__main {
  flex: 1;
}
.l-footer__side {
  display: flex;
  gap: 3rem;
}
@media (max-width: 768px) {
  .l-footer__side {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
  }
}
.l-footer__about {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  border-top: 1px solid #1a1a2e;
  border-bottom: 1px solid #1a1a2e;
  padding: 1rem 0;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .l-footer__about {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
  }
}

.footer-logo {
  display: block;
  margin-bottom: 1rem;
}
.footer-logo img {
  height: 32px;
}

.footer-message {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 768px) {
  .footer-nav {
    align-items: center;
  }
}
.footer-nav__title {
  font-weight: 700;
}
.footer-nav__link {
  display: block;
  color: #1a1a2e;
  font-size: 0.875rem;
}
.footer-nav__link:hover {
  color: #1a1a2e;
  text-decoration: underline;
}
.footer-nav__link::before {
  content: "・";
  margin-right: 2px;
}
@media (max-width: 768px) {
  .footer-nav__link::before {
    content: "";
  }
}

.footer-about-menu {
  display: flex;
  gap: 1rem;
}
@media (max-width: 768px) {
  .footer-about-menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0 1rem;
  }
}
.footer-about-menu__item {
  font-size: 0.875rem;
  padding-right: 1rem;
  border-right: 1px solid #1a1a2e;
}
@media (max-width: 768px) {
  .footer-about-menu__item {
    padding-right: 0;
    border-right: 0;
    text-align: center;
  }
}
.footer-about-menu__item a {
  color: #1a1a2e;
}
.footer-about-menu__item a:hover {
  text-decoration: underline;
}

.footer-social-icons {
  display: flex;
  gap: 1.5rem;
}
.footer-social-icons__link {
  color: #1a1a2e;
  font-size: 1.5rem;
}
.footer-social-icons__link:hover {
  color: #1a1a2e;
}

.copyright {
  font-size: 0.875rem;
  text-align: center;
}

.btn, .download-list__btn, .demo-card__btn, .price-plan__apply, .service-action__demo, .service-action__material, .hero__cta, .form__submit, .header-buttons__material, .header-buttons__contact, .header-buttons__btn {
  background: transparent;
  box-sizing: border-box;
  border: none;
  color: inherit;
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  position: relative;
  line-height: normal;
  overflow: hidden;
  text-align: center;
  text-decoration: none;
  transition: 0.3s;
  white-space: nowrap;
  z-index: 1;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  cursor: pointer;
}
.btn:disabled, .download-list__btn:disabled, .demo-card__btn:disabled, .price-plan__apply:disabled, .service-action__demo:disabled, .service-action__material:disabled, .hero__cta:disabled, .form__submit:disabled, .header-buttons__material:disabled, .header-buttons__contact:disabled, .header-buttons__btn:disabled,
.btn [disabled],
.download-list__btn [disabled],
.demo-card__btn [disabled],
.price-plan__apply [disabled],
.service-action__demo [disabled],
.service-action__material [disabled],
.hero__cta [disabled],
.form__submit [disabled],
.header-buttons__material [disabled],
.header-buttons__contact [disabled],
.header-buttons__btn [disabled] {
  cursor: not-allowed;
  opacity: 0.6;
  pointer-events: none;
}
.btn i, .download-list__btn i, .demo-card__btn i, .price-plan__apply i, .service-action__demo i, .service-action__material i, .hero__cta i, .form__submit i, .header-buttons__material i, .header-buttons__contact i, .header-buttons__btn i {
  margin-right: 0.25rem;
}
.btn:hover, .download-list__btn:hover, .demo-card__btn:hover, .price-plan__apply:hover, .service-action__demo:hover, .service-action__material:hover, .hero__cta:hover, .form__submit:hover, .header-buttons__material:hover, .header-buttons__contact:hover, .header-buttons__btn:hover {
  color: inherit;
}

.btn-primary, .download-list__btn, .hero__cta, .form__submit, .header-buttons__contact {
  background: #1a6fd4;
  border-radius: 8px;
  color: #ffffff;
}
.btn-primary:hover, .download-list__btn:hover, .hero__cta:hover, .form__submit:hover, .header-buttons__contact:hover {
  background: color-mix(in srgb, #1a6fd4 80%, white);
  color: #ffffff;
}

.btn-outline-primary, .demo-card__btn, .btn-more {
  background: #ffffff;
  border: 1px solid #1a6fd4;
  border-radius: 8px;
  color: #1a6fd4;
}
.btn-outline-primary:hover, .demo-card__btn:hover, .btn-more:hover {
  background: #1a6fd4;
  color: #ffffff;
}

.btn-secondary, .header-buttons__btn {
  background: #a1a9b3;
  border-radius: 8px;
  color: #ffffff;
}
.btn-secondary:hover, .header-buttons__btn:hover {
  background: color-mix(in srgb, #a1a9b3 80%, white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  color: #ffffff;
}

.btn-outline-secondary, .service-action__material, .header-buttons__material {
  background: #ffffff;
  border: 1px solid #a1a9b3;
  border-radius: 8px;
  color: color-mix(in srgb, #a1a9b3 80%, black);
}
.btn-outline-secondary:hover, .service-action__material:hover, .header-buttons__material:hover {
  background: #a1a9b3;
  color: #ffffff;
}

.btn-danger {
  background: #dc2626;
  border-radius: 8px;
  color: #ffffff;
}
.btn-danger:hover {
  background: color-mix(in srgb, #dc2626 80%, white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  color: #ffffff;
}

.btn-outline-danger {
  background: #ffffff;
  border: 1px solid #dc2626;
  border-radius: 8px;
  color: #dc2626;
}
.btn-outline-danger:hover {
  background: #dc2626;
  color: #ffffff;
}

.btn-accent, .price-plan__apply, .service-action__demo {
  background: #f59e0b;
  border-radius: 8px;
  color: #ffffff;
}
.btn-accent:hover, .price-plan__apply:hover, .service-action__demo:hover {
  background: color-mix(in srgb, #f59e0b 80%, white);
  color: #ffffff;
}

.btn-more {
  border-radius: 9999px;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  width: 300px;
}
@media (max-width: 768px) {
  .btn-more {
    width: 100%;
  }
}

.btn-sm {
  padding: 0.25rem 0.5rem;
}

.btn-lg, .price-plan__apply, .form__submit {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}

.l-header {
  position: absolute;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  width: 100%;
  z-index: 100;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.l-header.is-sticky {
  position: fixed;
}
.l-header__inner {
  width: 1100px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
}
@media (max-width: 1024px) {
  .l-header__inner {
    width: 100%;
    padding: 1rem;
  }
}
.l-header__main {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 2rem;
}
.l-header .logo img {
  height: 40px;
}

.header-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.l-main {
  position: relative;
}
.l-main__inner {
  max-width: 1100px;
  margin-inline: auto;
  padding: 5rem 0;
}
@media (max-width: 768px) {
  .l-main__inner {
    max-width: 100%;
    padding: 2rem 1rem;
  }
}

.alert {
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  position: relative;
  padding: 1rem 1.25rem;
}
.alert-success {
  background-color: color-mix(in srgb, #fff 75%, #16a34a);
  border-color: #16a34a;
  color: color-mix(in srgb, #000 50%, #16a34a);
}
.alert-success .alert-message__item {
  color: #16a34a;
}
.alert-danger {
  background-color: color-mix(in srgb, #fff 75%, #dc2626);
  border-color: #dc2626;
  color: color-mix(in srgb, #000 50%, #dc2626);
}
.alert-danger .alert-message__item {
  color: #dc2626;
}
.alert-warning {
  background-color: color-mix(in srgb, #fff 75%, #d97706);
  border-color: #d97706;
  color: color-mix(in srgb, #000 50%, #d97706);
}
.alert-warning .alert-message__item {
  color: #d97706;
}
.alert.alert-dismissible {
  padding-right: 3.5rem;
}
.alert.alert-dismissible .btn-close {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  padding: 0;
  background: none;
  border: none;
  font-size: 1.25rem;
  line-height: 1;
  color: inherit;
  opacity: 0.6;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.alert.alert-dismissible .btn-close:hover {
  opacity: 1;
}

.alert-message {
  margin: 0;
  padding-left: 1.25rem;
  list-style-type: disc;
}
.alert-message__item {
  color: #1a1a1a;
  margin-bottom: 0.25rem;
  line-height: 1.7;
}

.author-card {
  border: 1px solid #ccc;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.author-card--wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.author-card__avatar {
  display: block;
}
.author-card__avatar img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 80px;
}
.author-card__body {
  flex: 1;
}
.author-card__title {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}
.author-card__title a {
  color: #1a1a1a;
}
.author-card__title a:hover {
  color: #1558b0;
}
.author-card__description {
  font-size: 0.875rem;
  line-height: 1.7;
}

.article-card {
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 1rem;
}
.article-card:hover figure {
  overflow: hidden;
  position: relative;
}
.article-card:hover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.article-card:hover:hover img {
  transform: scale(1.1);
}
.article-card:hover .article-card__title {
  color: #1558b0;
}
.article-card__figure {
  margin-bottom: 1rem;
  border-radius: 8px;
}
.article-card__figure img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}
.article-card__title {
  display: block;
  line-height: 1.7;
  color: #1a1a1a;
  font-weight: 500;
}

.article-card-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 768px) {
  .article-card-wrap {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.blog-card {
  border: 1px solid #ccc;
  overflow: hidden;
  margin: 2rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
}
.blog-card:hover {
  box-shadow: none;
}
.blog-card a {
  color: inherit;
  display: block;
  text-decoration: none !important;
  padding: 1rem !important;
  position: relative;
}
.blog-card__inner {
  display: flex;
  align-items: start;
  gap: 1rem;
}
.blog-card__figure {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  overflow: hidden;
  border-radius: 4px;
  margin: 0 !important;
}
.blog-card__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card__title {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 !important;
  line-height: 1.5;
}
.blog-card__description {
  font-size: 0.875rem;
  color: var(--text-color);
  margin: 0 !important;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card__url {
  font-size: 0.75rem;
  color: #808080;
  margin-top: 1rem;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .blog-card__inner {
    flex-direction: column;
  }
  .blog-card__figure {
    width: 100%;
    height: 200px;
  }
}
.breadcrumb-wrap {
  min-width: 0;
}

.breadcrumb {
  max-width: 1100px;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .breadcrumb {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    overflow: hidden;
    white-space: nowrap;
    max-width: 100%;
  }
}
.breadcrumb__item {
  display: inline-block;
  letter-spacing: normal;
  font-size: 0.875rem;
}
@media (max-width: 768px) {
  .breadcrumb__item {
    display: flex;
    align-items: center;
    min-width: 0;
    flex: 0 0 auto;
    font-size: 0.75rem;
  }
}
.breadcrumb__item:not(:first-child) a {
  text-decoration: underline;
}
.breadcrumb__item:not(:first-child) a span {
  text-decoration: underline;
}
.breadcrumb__item:not(:first-child) a:hover {
  text-decoration: none;
}
.breadcrumb__item:not(:first-child) a:hover span {
  text-decoration: none;
}
@media (max-width: 768px) {
  .breadcrumb__item a {
    display: block;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    white-space: nowrap;
  }
}
@media (max-width: 768px) {
  .breadcrumb__item span {
    display: block;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
.breadcrumb__item:after {
  font-family: "Font Awesome 7 Free";
  font-weight: 700;
  content: "\f105";
  margin: 0 0.5rem;
}
@media (max-width: 768px) {
  .breadcrumb__item:after {
    flex: 0 0 auto;
  }
}
@media (max-width: 768px) {
  .breadcrumb__item:last-child {
    flex: 0 1 auto;
    min-width: 0;
  }
}
.breadcrumb__item:last-child:after {
  content: "";
  margin: 0;
}

.category-list {
  border: 1px solid #ccc;
  border-radius: 4px;
  list-style: none;
}
.category-list__item {
  border-bottom: 1px solid #ccc;
}
.category-list__item:last-child {
  border-bottom: none;
}
.category-list__link {
  color: #1a1a1a;
  display: block;
  padding: 1rem;
}
.category-list__link:hover {
  color: #1558b0;
}

.description, .contact-page__description {
  font-size: 1rem;
  line-height: 1.7;
}

.form {
  width: 100%;
}
.form__row {
  display: flex;
}
.form__row--end {
  border-bottom: 1px solid #ccc;
}
.form__col {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 1rem;
}
.form__col:first-child {
  background: #eee;
  border-left: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-top: 1px solid #ccc;
  width: 250px;
  flex-shrink: 0;
}
.form__col:last-child {
  background: #fff;
  border-right: 1px solid #ccc;
  border-top: 1px solid #ccc;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
}
.form__input, .form__select, .form__textarea {
  border: 1px solid #ccc;
  padding: 0.75rem;
  box-sizing: border-box;
  border-radius: 4px;
  font-size: 1rem;
  width: 100%;
}
.form__textarea {
  line-height: 1.5;
}
.form__label {
  font-size: 1rem;
  font-weight: 500;
  position: relative;
  width: 100%;
}
.form__label--required::after {
  content: "必須";
  color: #fff;
  background: #dc2626;
  border-radius: 4px;
  font-size: 0.875rem;
  padding: 0.25rem 0.5rem;
  position: absolute;
  right: 0;
}
.form__label--any::after {
  content: "任意";
  color: #fff;
  background: #16a34a;
  border-radius: 4px;
  font-size: 0.875rem;
  padding: 0.25rem 0.5rem;
  position: absolute;
  right: 0;
}
.form__checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  cursor: pointer;
}
.form__checkbox {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  cursor: pointer;
}
.form__action {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
.form__submit {
  width: 300px;
}

@media (max-width: 768px) {
  .form__row {
    display: block;
  }
  .form__col:first-child {
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    border-top: 1px solid #ccc;
    width: 100%;
  }
  .form__col:last-child {
    border-left: 1px solid #ccc;
  }
  .form__action {
    margin-top: 1rem;
  }
  .form__submit {
    width: 100%;
  }
}
.general-block {
  display: flex;
  align-items: start;
  gap: 2rem;
}
.general-block:last-child {
  margin-bottom: 0;
}
.general-block:not(:has(.general-block__figure)) .general-block__body {
  width: 100%;
}
.general-block:not(:has(.general-block__figure)) .general-block__title {
  text-align: center;
}
.general-block__figure {
  width: 400px;
}
.general-block__figure img {
  width: 100%;
}
.general-block__movie {
  width: 400px;
}
.general-block__movie video {
  width: 100%;
  height: auto;
}
.general-block__body {
  flex: 1;
}
.general-block__title {
  font-size: 1.5rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  text-align: left !important;
}
.general-block__content {
  line-height: 1.7;
}
.general-block__content p {
  margin-bottom: 2rem;
}
.general-block__content p:last-child {
  margin-bottom: 0;
}
.general-block__action {
  margin-top: 2rem;
}
.general-block--reverse {
  flex-direction: row-reverse;
}

.general-block-wrap {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

@media (max-width: 768px) {
  .general-block {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .general-block__figure {
    margin-right: 0;
    width: 100%;
    order: 1;
  }
  .general-block__body {
    order: 2;
  }
  .general-block__title {
    text-align: center;
    margin-bottom: 1rem;
  }
}
.gnav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.gnav__link {
  color: #1a1a1a;
  display: block;
  font-size: 1rem;
  font-weight: 500;
  white-space: nowrap;
  background-image: linear-gradient(#1558b0, #1558b0);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 0 1px;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  transition: background-size 0.3s;
}
.gnav__link:hover {
  background-position: bottom left;
  background-size: 100% 2px;
}
.gnav__item {
  position: relative;
  display: flex;
  align-items: center;
}
.gnav__item--has-sub > .gnav__link {
  position: relative;
  padding-right: 1.1rem;
}
.gnav__item--has-sub > .gnav__link::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform 0.2s ease;
}
.gnav__item--has-sub:hover > .gnav-list, .gnav__item--has-sub:focus-within > .gnav-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.gnav__item--has-sub:hover > .gnav__link::after, .gnav__item--has-sub:focus-within > .gnav__link::after {
  transform: translateY(-50%) rotate(180deg);
}
.gnav__toggle {
  display: none;
}

.gnav-list {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  list-style: none;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border: 1px solid #ccc;
  padding: 0.5rem 0;
  min-width: 180px;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}
.gnav-list__link {
  display: block;
  padding: 0.6rem 1.5rem;
  font-size: 0.875rem;
  color: #1a1a1a;
  white-space: nowrap;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.gnav-list__link:hover {
  background-color: #f2f7fd;
  color: #1a6fd4;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 1024px) {
  .header-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100dvh;
    width: 280px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 5rem 2rem 2rem;
    background: #ffffff;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.12);
    gap: 2rem;
    z-index: 150;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.3s ease, visibility 0.3s ease;
  }
  .header-nav.is-open {
    transform: translateX(0);
    visibility: visible;
  }
  .header-nav .gnav {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
  }
  .header-nav .gnav__link {
    padding: 1rem 0;
    white-space: normal;
    width: 100%;
  }
  .header-nav .gnav__item {
    flex-wrap: wrap;
    width: 100%;
    border-bottom: 1px solid #ccc;
  }
  .header-nav .gnav__item--has-sub > .gnav__link {
    flex: 1;
    padding-right: 0;
  }
  .header-nav .gnav__item--has-sub > .gnav__link::after {
    display: none;
  }
  .header-nav .gnav__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    color: #1a1a1a;
    flex-shrink: 0;
  }
  .header-nav .gnav__toggle::after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translate(-2px, -2px);
    transition: transform 0.25s ease;
  }
  .header-nav .gnav__item--has-sub.is-open > .gnav__toggle::after {
    transform: rotate(-135deg) translate(-2px, -2px);
  }
  .header-nav .gnav__item--has-sub.is-open > .gnav-list {
    max-height: 300px;
  }
  .header-nav .gnav-list {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 0;
    min-width: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .header-nav .gnav-list__link {
    padding: 1rem 1rem;
    font-size: 0.875rem;
    border-bottom: 1px solid #ccc;
    white-space: normal;
  }
  .header-nav .gnav-list__link:hover {
    background-color: transparent;
    color: #1a6fd4;
  }
  .header-nav .header-buttons {
    flex-direction: column;
    width: 100%;
  }
  .header-nav .header-buttons > * {
    width: 100%;
    text-align: center;
  }
}

.hamburger {
  display: none;
}
@media (max-width: 1024px) {
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 40px;
    height: 40px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    position: relative;
    z-index: 200;
  }
}
.hamburger__line {
  display: block;
  width: 100%;
  height: 2px;
  background: #1a1a1a;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.hamburger[aria-expanded=true] .hamburger__line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger[aria-expanded=true] .hamburger__line:nth-child(2) {
  opacity: 0;
}
.hamburger[aria-expanded=true] .hamburger__line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hamburger-backdrop {
  display: none;
}
@media (max-width: 1024px) {
  .hamburger-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 140;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .hamburger-backdrop.is-open {
    opacity: 1;
    visibility: visible;
  }
}

.maker-yellow {
  background-color: #FFF0B3 !important;
}

.line-maker-yellow {
  background-image: linear-gradient(to bottom, transparent 60%, #FFF0B3 60%);
}

.maker-pink {
  background-color: #FFE0E8 !important;
}

.line-maker-pink {
  background-image: linear-gradient(to bottom, transparent 60%, #FFE0E8 60%);
}

.maker-green {
  background-color: #C8E6D3 !important;
}

.line-maker-green {
  background-image: linear-gradient(to bottom, transparent 60%, #C8E6D3 60%);
}

.maker-blue {
  background-color: #D0E8F5 !important;
}

.line-maker-blue {
  background-image: linear-gradient(to bottom, transparent 60%, #D0E8F5 60%);
}

.maker-gray {
  background-color: #F2F2F2 !important;
}

.line-maker-gray {
  background-image: linear-gradient(to bottom, transparent 60%, #F2F2F2 60%);
}

.media {
  list-style: none;
}
.media__item {
  border-bottom: 1px solid #ccc;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
}
.media__item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.media__link figure {
  overflow: hidden;
  position: relative;
  width: 80px;
  height: 80px;
}
.media__link img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.media__link:hover img {
  transform: scale(1.1);
}
.media__link {
  color: var(--text-color);
  display: flex;
  align-items: center;
  gap: 1rem;
}
.media__figure {
  border-radius: 4px;
}
.media__title {
  font-size: 0.875rem;
  line-height: 1.7;
  flex: 1;
}

.outline {
  background: #f4f4f4;
  border: 4px double #ccc;
  padding: 1rem;
  margin-bottom: 2rem;
}
.outline-header {
  display: flex;
  justify-content: center;
  cursor: pointer;
  user-select: none;
  margin: 0 !important;
}
.outline-header__title {
  font-size: 1rem;
  font-weight: bold;
  margin-right: 10px;
}
@media (max-width: 768px) {
  .outline-header__title {
    margin-bottom: 2rem;
  }
}
.outline-header__hide, .outline-header__show {
  font-size: 0.875rem;
  cursor: pointer;
  color: var(--link-color);
  transition: opacity 0.2s ease;
}
.outline-header__hide:hover, .outline-header__show:hover {
  color: #1558b0;
}
.outline-list {
  margin: 0 !important;
  overflow: hidden;
  opacity: 1;
  max-height: 1000px;
  transition: max-height 0.4s ease, opacity 0.3s ease, margin-top 0.4s ease;
}
.outline-list.is-hidden {
  max-height: 0 !important;
  opacity: 0;
  margin-top: 0 !important;
}
.outline-list li {
  font-size: 0.875rem;
  line-height: 1.7;
  margin: 0 !important;
}
.outline-list li > a {
  color: #1a6fd4;
  text-decoration: none;
}
.outline-list li > a:hover {
  text-decoration: underline;
}
.outline-list li > a::before {
  margin-right: 0.4em;
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
  font-size: 0.75em;
  color: #1a6fd4;
}
.outline-list .outline-list {
  padding-left: 1.25rem;
}
.outline .outline-list {
  list-style: none;
}
.outline > .outline-list > li > a::before {
  content: "\f0da";
}
.outline > .outline-list .outline-list > li > a::before {
  content: "\f105";
}
.outline > .outline-list .outline-list .outline-list > li > a::before {
  content: "\f111";
  font-size: 0.4em;
  vertical-align: middle;
}
.outline a + ul {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.outline.is-collapsible:not(.is-expanded) > .outline-list {
  max-height: 15rem;
  -webkit-mask-image: linear-gradient(to bottom, #000 60%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 60%, transparent 100%);
}
.outline__more {
  display: none;
  width: 100%;
  margin-top: 0.5rem;
  padding: 0.5rem;
  background: none;
  border: none;
  color: #1a6fd4;
  font-size: 0.875rem;
  font-weight: bold;
  cursor: pointer;
  text-align: center;
  transition: color 0.2s ease;
}
.outline__more:hover {
  color: #1558b0;
  text-decoration: underline;
}
.outline.is-collapsible .outline__more {
  display: block;
}
.outline .outline-list.is-hidden ~ .outline__more {
  display: none !important;
}

.page-hero {
  background: linear-gradient(135deg, #198cd4, color-mix(in srgb, #198cd4 80%, white));
  color: #ffffff;
  padding-top: calc(5.5rem + 1rem);
  padding-bottom: 2rem;
}
.page-hero--short {
  padding-top: calc(5.5rem + 1rem);
  padding-bottom: 1rem;
}
.page-hero--short .page-hero__breadcrumb {
  margin: 0;
}
.page-hero__inner {
  max-width: 1100px;
  width: 100%;
  margin-inline: auto;
  position: relative;
}
.page-hero__breadcrumb {
  display: flex;
  margin-bottom: 2rem;
}
.page-hero__breadcrumb a {
  color: #ffffff;
}
.page-hero__heading {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 1rem;
}
.page-hero__eyebrow {
  letter-spacing: 0.1em;
  display: block;
  padding-left: 0.25rem;
  font-family: "Roboto", sans-serif;
  text-transform: capitalize;
}
.page-hero__title {
  color: #ffffff;
  font-size: 2.5rem;
}
.page-hero__lead {
  margin-top: 1rem;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .page-hero {
    padding-top: calc(4.5rem);
    padding-bottom: 1rem;
  }
  .page-hero--short {
    padding-bottom: 0;
  }
  .page-hero__inner {
    max-width: auto;
    padding: 1rem;
  }
  .page-hero__breadcrumb {
    margin-bottom: 1rem;
  }
  .page-hero__heading {
    gap: 0.5rem;
  }
  .page-hero__title {
    font-size: 2rem;
    line-height: 1.5;
  }
  .page-hero__lead {
    line-height: 1.7;
  }
}
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 2rem 0 0 0;
}
.pagination .page-numbers {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  color: #1a1a1a;
  background-color: #f2f7fd;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}
.pagination .page-numbers:hover {
  background: color-mix(in srgb, #f2f7fd 70%, #1558b0);
}
.pagination .page-numbers.current {
  background: #1558b0;
  color: #ffffff;
  pointer-events: none;
}
.pagination .page-numbers.dots {
  background: none;
  color: #999;
  cursor: default;
}
.pagination .page-numbers.prev, .pagination .page-numbers.next {
  font-weight: bold;
}

.hero {
  background: #f2f7fd;
  position: relative;
  overflow: hidden;
  padding-top: 88px;
  margin-bottom: -4rem;
}
.hero__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  width: 100%;
  margin-inline: auto;
  padding: 5rem 0;
  position: relative;
  gap: 4rem;
}
.hero__wave {
  background-color: #f2f7fd;
  width: 100%;
  height: 100px;
  position: relative;
}
.hero__wave svg {
  width: 100%;
  height: 200px;
  position: absolute;
  left: 0;
  bottom: 0;
  fill: #ffffff;
}
.hero__figure {
  flex: 1;
  z-index: 10;
}
.hero__body {
  flex: 1;
  z-index: 10;
}
.hero__catchcopy {
  font-size: 2.5rem;
  margin-bottom: 2rem;
}
.hero__lead {
  font-size: 1.25rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.hero__benefits {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
.hero__benefit {
  display: block;
  padding: 0.875rem 0;
  border-radius: 4px;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
}
.hero__benefit:nth-child(1) {
  border: 1px solid #198cd4;
  background: color-mix(in srgb, #198cd4 10%, white);
  color: #198cd4;
}
.hero__benefit:nth-child(2) {
  border: 1px solid #16a34a;
  background: color-mix(in srgb, #16a34a 10%, white);
  color: #16a34a;
}
.hero__benefit:nth-child(3) {
  border: 1px solid #d97706;
  background: color-mix(in srgb, #d97706 10%, white);
  color: #d97706;
}
.hero__benefit:nth-child(4) {
  border: 1px solid #dc2626;
  background: color-mix(in srgb, #dc2626 10%, white);
  color: #dc2626;
}
.hero__benefit i {
  margin-right: 0.25rem;
}
.hero__cta {
  border-radius: 9999px;
  min-width: 100%;
  padding: 0.75rem 0;
  font-size: 1.25rem;
}
.hero__cta i {
  margin-right: 0.5rem;
}

@media (max-width: 768px) {
  .hero {
    margin-bottom: 0;
  }
  .hero__inner {
    flex-direction: column;
    padding: 2rem 1rem;
    gap: 2rem;
  }
  .hero__wave {
    display: none;
  }
  .hero__figure {
    display: none;
  }
  .hero__catchcopy {
    font-size: 2rem;
    text-align: center;
  }
  .hero__lead {
    font-size: 1rem;
    text-align: center;
  }
  .hero__benefits {
    width: 100%;
  }
  .hero__cta {
    min-width: 0;
    width: 100%;
  }
}
.hero__news {
  position: absolute;
  right: 0;
  bottom: -48px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  padding: 1.5rem;
  z-index: 100;
  min-width: 400px;
}
@media (max-width: 768px) {
  .hero__news {
    width: 100%;
    padding: 1rem;
    position: relative;
    right: auto;
    bottom: 0;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  }
}
.hero__news-date {
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}
.hero__news-title {
  font-size: 0.875rem;
}

.review-card-wrap {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .review-card-wrap {
    grid-template-columns: repeat(3, 1fr);
  }
}

.review-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  padding: 2rem;
  padding-top: 3.25rem;
}
.review-card::before {
  content: "“";
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 1;
  color: #1a6fd4;
  opacity: 0.15;
  position: absolute;
  top: 0.5rem;
  left: 1.25rem;
  pointer-events: none;
}
.review-card__comment {
  font-size: 0.875rem;
  line-height: 2;
  color: #1a1a1a;
  flex: 1;
  margin-bottom: 1.5rem;
}
.review-card__footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #ccc;
  margin-top: auto;
}
.review-card__figure {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 9999px;
  overflow: hidden;
}
.review-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.review-card__customer {
  font-size: 0.875rem;
  font-weight: 500;
  color: #1a1a1a;
}

.search-form {
  border: 1px solid #ccc;
  border-radius: 4px;
  backface-visibility: hidden;
  position: relative;
}
.search-form__input {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  color: var(--text-color);
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  appearance: none;
  box-sizing: border-box;
}
.search-form__input:focus {
  border-color: #ccc;
  outline: none;
}
.search-form__button {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: #808080;
  cursor: pointer;
  font-size: 1rem;
  padding: 0;
  line-height: 1;
}
.search-form__button i {
  pointer-events: none;
}

.section--highlight {
  background: #f2f7fd;
}
.section--separator {
  border-top: 1px solid #ccc;
}
.section__inner {
  max-width: 1100px;
  padding: 5rem 0;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .section__inner {
    padding: 2rem 1rem;
  }
}
.section__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3rem;
  gap: 3rem;
}
@media (max-width: 768px) {
  .section__heading {
    margin-bottom: 2rem;
    gap: 2rem;
  }
}
.section__title {
  font-size: 2.5rem;
}
@media (max-width: 768px) {
  .section__title {
    font-size: 2rem;
    line-height: 1.5;
    text-align: center;
  }
}
.section__lead {
  color: #808080;
  font-size: 1.25rem;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .section__lead {
    font-size: 1rem;
  }
}
.section__footer {
  margin-top: 3rem;
  text-align: center;
}
@media (max-width: 768px) {
  .section__footer {
    margin-top: 2rem;
  }
}

.cta-section {
  background-image: linear-gradient(90deg, rgb(31, 169, 255), rgb(25, 140, 212));
}
.cta-section__inner {
  max-width: 1100px;
  width: 100%;
  padding: 3rem 0;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .cta-section__inner {
    padding: 2rem 1rem;
  }
}
.cta-section__title {
  color: #ffffff;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .cta-section__title {
    font-size: 1.5rem;
    line-height: 1.5;
    margin-bottom: 2rem;
  }
}

.table, .requirement-table, .function-tables table {
  width: 100%;
  min-width: 600px;
  color: #1a1a1a;
  border-collapse: collapse;
  background: #ffffff;
}
.table th, .requirement-table th, .function-tables table th,
.table td,
.requirement-table td,
.function-tables table td {
  padding: 1rem !important;
  border-top: 1px solid #ccc;
  vertical-align: middle;
}
.table thead th, .requirement-table thead th, .function-tables table thead th {
  vertical-align: bottom;
  border-bottom: 1px solid #ccc;
  background-color: #eee;
  color: var(--color-text);
}
.table tbody + tbody, .requirement-table tbody + tbody, .function-tables table tbody + tbody {
  border-top: 1px solid #ccc;
}
.table.table-striped tbody tr:nth-of-type(odd), .table-striped.requirement-table tbody tr:nth-of-type(odd), .function-tables table.table-striped tbody tr:nth-of-type(odd) {
  background-color: #eee;
}
.table.table-hover tbody tr:hover, .table-hover.requirement-table tbody tr:hover, .function-tables table.table-hover tbody tr:hover {
  background-color: #eee;
}
.table.table-bordered, .table-bordered.requirement-table, .function-tables table.table-bordered {
  border: 1px solid #ccc;
}
.table.table-bordered th, .table-bordered.requirement-table th, .function-tables table.table-bordered th,
.table.table-bordered td,
.table-bordered.requirement-table td,
.function-tables table.table-bordered td {
  border: 1px solid #ccc;
}
.table.table-bordered thead th, .table-bordered.requirement-table thead th, .function-tables table.table-bordered thead th {
  border-bottom-width: 2px;
}
.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media screen and (max-width: 768px) {
  .table-responsive .table td, .table-responsive .requirement-table td, .table-responsive .function-tables table td, .function-tables .table-responsive table td {
    white-space: nowrap;
  }
}
.table--vertical, .requirement-table {
  width: 100%;
  overflow-x: visible;
  border: 1px solid #ccc;
}
.table--vertical th, .requirement-table th {
  width: 25%;
  text-align: left;
  vertical-align: top;
  background-color: #eee;
  color: #1a1a1a;
  padding: 0.75rem;
  border-right: 1px solid #ccc;
  white-space: normal;
  word-break: break-word;
}
.table--vertical td, .requirement-table td {
  width: 75%;
  vertical-align: top;
  padding: 0.75rem;
}

@media screen and (max-width: 768px) {
  .table--vertical, .requirement-table {
    min-width: 100%;
  }
  .table--vertical tr, .requirement-table tr {
    display: block;
  }
  .table--vertical tr:first-child th, .requirement-table tr:first-child th {
    border-top: none !important;
  }
  .table--vertical th, .requirement-table th,
  .table--vertical td,
  .requirement-table td {
    display: block;
    width: 100%;
    border: none;
    padding: 0.5rem 1rem;
    box-sizing: border-box;
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
  }
  .table--vertical th, .requirement-table th {
    border-top: 1px solid #ccc !important;
    border-bottom: 1px solid #ccc !important;
    text-align: center;
  }
  .table--vertical td, .requirement-table td {
    background-color: #ffffff;
  }
}
.table-heading {
  border-left: 4px solid #1a6fd4;
  font-size: 1.5rem;
  padding-left: 1rem;
  margin-bottom: 2rem;
}

.widget__title {
  font-size: 1.25rem;
  border-bottom: 2px solid #1a1a1a;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.l-container__side .widget {
  margin-bottom: 2rem;
}
.l-container__side .widget:last-child {
  margin-bottom: 0;
}

.service-features-wrap {
  display: flex;
  gap: 2rem;
}
@media (max-width: 768px) {
  .service-features-wrap {
    flex-direction: column;
  }
}

.service-features {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.service-features__figure {
  margin-inline: auto;
}
.service-features__figure img {
  height: 150px;
  display: block;
}
.service-features__title {
  font-size: 1.25rem;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}
@media (max-width: 768px) {
  .service-features__title {
    font-size: 1rem;
  }
}
.service-features__desc {
  font-size: 0.875rem;
  line-height: 1.7;
}

.problem-solution {
  margin-inline: auto;
}
.problem-solution__rows {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (max-width: 768px) {
  .problem-solution__rows {
    gap: 1rem;
  }
}
.problem-solution__row {
  padding: 1.5rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid #ccc;
}
@media (max-width: 768px) {
  .problem-solution__row {
    padding: 1rem;
  }
}
.problem-solution__comparison {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: stretch;
}
@media (max-width: 768px) {
  .problem-solution__comparison {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.problem-solution__panel {
  border-radius: 12px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
}
.problem-solution__panel--before {
  background: color-mix(in srgb, #dc2626 8%, white);
  border: 1px solid color-mix(in srgb, #dc2626 40%, white);
}
.problem-solution__panel--after {
  background: color-mix(in srgb, #1a6fd4 8%, white);
  border: 1px solid color-mix(in srgb, #1a6fd4 40%, white);
}
.problem-solution__label {
  display: inline-flex;
  align-self: flex-start;
  border-radius: 9999px;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.problem-solution__panel--before .problem-solution__label {
  background: color-mix(in srgb, #dc2626 18%, white);
  color: #dc2626;
}
.problem-solution__panel--after .problem-solution__label {
  background: rgba(26, 111, 212, 0.12);
  color: #1a6fd4;
}
.problem-solution__panel-title {
  font-size: 1.5rem;
  line-height: 1.5;
}
.problem-solution__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 1rem;
  line-height: 1.5;
}
.problem-solution__list li {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}
.problem-solution__list li::before {
  margin-top: 2px;
  font-weight: 700;
  line-height: 1;
}
.problem-solution__list--before li::before {
  content: "×";
  color: #dc2626;
}
.problem-solution__list--after li::before {
  content: "✓";
  color: #16a34a;
}
.problem-solution__transition {
  align-self: center;
  justify-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 1;
}
@media (max-width: 768px) {
  .problem-solution__transition {
    display: none;
  }
}
.problem-solution__transition-arrow {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(26, 111, 212, 0.35);
  color: #1a6fd4;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}
.problem-solution__result {
  margin: 1.5rem 0 0;
  border-radius: 12px;
  background: linear-gradient(90deg, #1a6fd4 0%, #1558b0 100%);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  padding: 1rem 1.25rem;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}
.problem-solution__desc {
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
}

.function-card {
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 1rem;
}
.function-card__head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.function-card__image {
  display: block;
  height: 80px;
}
.function-card__title {
  font-size: 1.25rem;
}
.function-card__desc {
  line-height: 1.7;
}

.function-card-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 768px) {
  .function-card-wrap {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

.price-comparison {
  border-top: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-collapse: collapse;
  box-sizing: border-box;
  width: 100%;
}
.price-comparison th, .price-comparison td {
  border-left: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  padding: 1rem;
}
.price-comparison th {
  background-color: #eee;
}
.price-comparison td {
  font-size: 1.25rem;
}
.price-comparison thead th {
  font-size: 1.25rem;
}
.price-comparison thead th:nth-child(2) {
  background: #1a6fd4;
  color: #ffffff;
}
.price-comparison tbody th {
  font-size: 1.25rem;
  font-weight: normal;
  text-align: left;
}
.price-comparison tbody td {
  text-align: center;
}
.price-comparison tbody td:nth-child(2) {
  background: color-mix(in srgb, #f59e0b 7%, white);
}
.price-comparison__note {
  font-size: 0.875rem;
  line-height: 1.7;
  margin-top: 2rem;
}
.price-comparison__note a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .price-comparison td {
    font-size: 1rem;
  }
  .price-comparison thead th {
    font-size: 1.25rem;
  }
  .price-comparison tbody th {
    font-size: 1rem;
  }
}
@media screen and (max-width: 576px) {
  .price-comparison {
    border: none;
  }
  .price-comparison thead {
    display: none;
  }
  .price-comparison tr {
    border-top: 1px solid #ccc;
    display: block;
    margin-bottom: 1rem;
  }
  .price-comparison tr:last-child {
    margin-bottom: 0;
  }
  .price-comparison tbody th {
    font-size: 1rem;
    display: block;
    border-right: 1px solid #ccc;
    text-align: center;
  }
  .price-comparison tbody td {
    font-size: 1rem;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    display: block;
    padding: 1rem;
    text-align: right;
  }
  .price-comparison tbody td:before {
    content: attr(data-label);
    float: left;
    font-weight: bold;
  }
}
.support-card-wrap {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}
@media (max-width: 768px) {
  .support-card-wrap {
    flex-direction: column;
    gap: 1rem;
  }
}
.support-card__item {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  padding: 2rem;
  gap: 2rem;
}
@media (max-width: 768px) {
  .support-card__item {
    width: 100% !important;
    height: auto;
    flex-direction: row;
    justify-content: start;
    border-radius: 8px;
    gap: 1rem;
  }
}
.support-card__image {
  text-align: center;
}
.support-card__image svg {
  color: #1a6fd4;
  width: 80px;
  height: 80px;
  display: inline-block;
}
.support-card__title {
  font-size: 1.25rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .support-card__title {
    font-size: 1rem;
  }
}

.service-action {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
@media (max-width: 768px) {
  .service-action {
    flex-direction: column;
  }
}
.service-action__demo, .service-action__material {
  font-size: 1rem;
  font-weight: 700;
  padding: 1rem 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.service-action__demo i, .service-action__material i {
  margin-right: 0.5rem;
}
.service-contact {
  display: flex;
  justify-content: center;
  color: #ffffff;
}
@media (max-width: 768px) {
  .service-contact {
    flex-direction: column;
    gap: 2rem;
  }
}
.service-contact__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  border-right: 1px solid #ffffff;
  padding-right: 5rem;
  margin-right: 5rem;
}
@media (max-width: 768px) {
  .service-contact__item {
    border-right: 0;
    padding-right: 0;
    margin-right: 0;
    border-bottom: 1px solid #ffffff;
    padding-bottom: 2rem;
  }
}
.service-contact__item:last-child {
  border-right: none;
  padding-right: 0;
  margin-right: 0;
}
@media (max-width: 768px) {
  .service-contact__item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }
}
.service-contact__title {
  font-size: 1.5rem;
  font-weight: 500;
}
.service-contact__tel {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}
.service-contact__tel i {
  font-size: 1.25rem;
  margin-right: 0.5rem;
}
.service-contact__note {
  font-size: 0.875rem;
}
.service-contact__mail a {
  font-size: 1rem;
}

.faq-card {
  background: #ffffff;
  border-bottom: 1px solid #ccc;
}
.faq-card__title {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 1.5rem 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  color: #1a1a1a;
  line-height: 1.5;
}
.faq-card__title[aria-expanded=true] .faq-card__icon::after {
  transform: rotate(90deg);
}
.faq-card__title::before {
  content: "Q.";
  color: #1a6fd4;
  flex-shrink: 0;
  margin-right: 0.5rem;
}
.faq-card__icon {
  position: relative;
  flex-shrink: 0;
  margin-left: auto;
  width: 20px;
  height: 20px;
}
.faq-card__icon::before, .faq-card__icon::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.3s ease;
}
.faq-card__icon::before {
  width: 100%;
  height: 2px;
}
.faq-card__icon::after {
  width: 2px;
  height: 100%;
}
.faq-card__content {
  padding: 0 1rem 1.5rem;
  font-size: 1rem;
  line-height: 1.7;
}
.faq-card__content:not([hidden]) {
  display: block;
}

.intro-purpose {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 768px) {
  .intro-purpose {
    grid-template-columns: 1fr;
  }
}
.intro-purpose__item {
  background: #ffffff;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 2rem 1rem;
  font-size: 1.25rem;
}
@media (max-width: 768px) {
  .intro-purpose__item {
    padding: 1rem;
    font-size: 1rem;
    line-height: 1.5;
  }
}
.intro-purpose__item i {
  margin-right: 0.25rem;
  color: #1a6fd4;
}

.reasons-chosen {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.reasons-chosen__item {
  background: #f2f7fd;
  border-radius: 8px;
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  position: relative;
}
.reasons-chosen__body {
  flex: 1;
  z-index: 10;
  order: 2;
}
.reasons-chosen__title {
  color: #198cd4;
  font-size: 1.5rem;
  margin-bottom: 2rem;
}
.reasons-chosen__desc {
  line-height: 2;
}
.reasons-chosen__figure {
  width: 120px;
  order: 1;
}
.reasons-chosen__image {
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .reasons-chosen {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .reasons-chosen__item {
    flex-direction: column;
    gap: 1rem;
  }
  .reasons-chosen__body {
    order: 2;
  }
  .reasons-chosen__title {
    margin-bottom: 1rem;
    line-height: 1.5;
    text-align: center;
  }
  .reasons-chosen__desc {
    line-height: 1.7;
  }
  .reasons-chosen__figure {
    width: 50%;
    order: 1;
  }
}
.workflow {
  list-style: none;
  max-width: 800px;
  margin-inline: auto;
}
.workflow__item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding-bottom: 3rem;
}
.workflow__item:last-child {
  padding-bottom: 0;
}
.workflow__item:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 0;
  left: calc(4rem / 2);
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: rgba(26, 111, 212, 0.25);
}
.workflow__marker {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.workflow__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, #1a6fd4, color-mix(in srgb, #1a6fd4 75%, white));
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  line-height: 1;
}
.workflow__step-label {
  font-family: "Roboto", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
}
.workflow__step-num {
  font-family: "Roboto", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 0.15rem;
}
.workflow__body {
  flex: 1;
  background: #ffffff;
  border: 1px solid #ccc;
  border-radius: 12px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  padding: 1.5rem 2rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.workflow__body:hover {
  border-color: #1a6fd4;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}
.workflow__title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}
.workflow__content {
  color: #808080;
  line-height: 2;
}

@media (max-width: 768px) {
  .workflow__item {
    gap: 1.5rem;
    padding-bottom: 2rem;
  }
  .workflow__item:not(:last-child)::before {
    left: calc(3rem / 2);
  }
  .workflow__step {
    width: 3rem;
    height: 3rem;
  }
  .workflow__step-num {
    font-size: 1rem;
  }
  .workflow__body {
    padding: 1rem;
  }
  .workflow__title {
    font-size: 1.25rem;
  }
  .workflow__content {
    line-height: 1.7;
  }
}
.pickup-function {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.pickup-function__item {
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  position: relative;
}
.pickup-function__body {
  flex: 1;
  z-index: 10;
  order: 1;
}
.pickup-function__title {
  color: #1a1a1a;
  font-size: 1.5rem;
  margin-bottom: 2rem;
}
.pickup-function__desc {
  line-height: 2;
}
.pickup-function__figure {
  width: 400px;
  order: 2;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  overflow: hidden;
}
.pickup-function__image {
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .pickup-function {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .pickup-function__item {
    flex-direction: column;
    gap: 1rem;
  }
  .pickup-function__body {
    order: 2;
  }
  .pickup-function__title {
    margin-bottom: 1rem;
    line-height: 1.5;
    text-align: center;
  }
  .pickup-function__desc {
    line-height: 1.7;
  }
  .pickup-function__figure {
    width: 50%;
    order: 1;
  }
}
.function-tables table {
  border: 1px solid #ccc;
}
.function-tables table th,
.function-tables table td {
  border: 1px solid #ccc;
}
.function-tables table thead th {
  border-bottom-width: 1px;
  background: #1a1a1a;
  color: #ffffff;
}
.function-tables table thead th:first-child {
  width: 300px;
}
.function-tables table tbody td {
  line-height: 1.5;
}
.function-tables table tbody tr:nth-child(even) td {
  background: #f4f4f4;
}
.function-tables table tbody tr td:first-child {
  font-weight: 500;
}
.function-tables .table-responsive {
  margin-bottom: 3rem;
}

.price-plan {
  max-width: 800px;
  margin-inline: auto;
  background: #ffffff;
  border: 1px solid #ccc;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}
.price-plan__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, color-mix(in srgb, #1a6fd4 8%, white), color-mix(in srgb, #1a6fd4 16%, white));
  border-bottom: 1px solid #ccc;
}
@media (max-width: 768px) {
  .price-plan__head {
    padding: 2rem 1rem;
  }
}
.price-plan__tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}
.price-plan__tag {
  background: #198cd4;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 9999px;
  padding: 0.25rem 1rem;
  line-height: 1;
}
.price-plan__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
  color: #1a6fd4;
  line-height: 1;
}
.price-plan__amount {
  font-family: "Roboto", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #1558b0;
}
@media (max-width: 768px) {
  .price-plan__amount {
    font-size: 2.75rem;
  }
}
.price-plan__unit {
  font-size: 1.5rem;
  font-weight: 700;
}
.price-plan__tax {
  font-size: 0.875rem;
  color: #808080;
}
.price-plan__body {
  padding: 3rem 2rem;
}
@media (max-width: 768px) {
  .price-plan__body {
    padding: 2rem 1rem;
  }
}
.price-plan__desc {
  line-height: 1.7;
  margin-bottom: 2rem;
}
.price-plan__includes-label {
  font-size: 1rem;
  font-weight: 700;
  padding-left: 1rem;
  border-left: 4px solid #1a6fd4;
  margin-bottom: 1.5rem;
}
.price-plan__includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.price-plan__include {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.5;
}
.price-plan__include i {
  color: #1a6fd4;
  margin-top: 0.25rem;
  flex-shrink: 0;
}
.price-plan__include-mark {
  color: #808080;
}
.price-plan__note {
  font-size: 0.875rem;
  color: #808080;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.price-plan__action {
  text-align: center;
}
.price-plan__apply {
  min-width: 320px;
  font-size: 1.25rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .price-plan__apply {
    min-width: 0;
    width: 100%;
  }
}

.price-options {
  max-width: 800px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.price-option {
  background: #ffffff;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  padding: 2rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
@media (max-width: 768px) {
  .price-option {
    padding: 1.5rem 1rem;
  }
}
.price-option:hover {
  border-color: #1a6fd4;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.price-option__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px dashed #ccc;
}
@media (max-width: 768px) {
  .price-option__head {
    flex-direction: column;
    gap: 0.5rem;
  }
}
.price-option__title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .price-option__title {
    font-size: 1.25rem;
  }
}
.price-option__price {
  flex-shrink: 0;
  display: flex;
  align-items: baseline;
  gap: 0.15rem;
  color: #1a6fd4;
  line-height: 1;
  white-space: nowrap;
}
.price-option__amount {
  font-family: "Roboto", sans-serif;
  font-size: 2rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .price-option__amount {
    font-size: 1.5rem;
  }
}
.price-option__unit {
  font-size: 1.25rem;
  font-weight: 700;
}
.price-option__tax {
  font-size: 0.875rem;
  color: #808080;
}
.price-option__desc {
  line-height: 1.7;
}
.price-option__campaign {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: color-mix(in srgb, #f59e0b 12%, white);
  border: 1px solid color-mix(in srgb, #f59e0b 40%, white);
  border-radius: 4px;
  font-size: 0.875rem;
  line-height: 1.5;
  color: color-mix(in srgb, #f59e0b 35%, black);
}
.price-option__campaign i {
  color: #f59e0b;
  flex-shrink: 0;
}
.price-option__campaign strong {
  font-weight: 700;
}
.price-option__campaign a {
  color: #1a6fd4;
  text-decoration: underline;
}
.price-option__campaign a:hover {
  color: #1558b0;
}
.price-option__notes {
  list-style: none;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.price-option__note {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.875rem;
  color: #808080;
  line-height: 1.5;
}
.price-option__note::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}

.requirement-table {
  max-width: 800px;
  margin-inline: auto;
}
.requirement-table th,
.requirement-table td {
  border: 1px solid #ccc;
}
.requirement-table tbody th {
  vertical-align: middle;
  font-weight: 500;
  width: 30%;
}
.requirement-table tbody td {
  line-height: 1.5;
  width: 70%;
}

.section--browser {
  border-top: 1px solid #ccc;
  max-width: 800px;
  margin-inline: auto;
}

.browser-list__item {
  list-style-type: disc;
  list-style-position: inside;
  line-height: 2;
}

.browser-note {
  font-size: 0.875rem;
  line-height: 1.7;
  margin-top: 2rem;
}

.warning-block {
  margin-top: 3rem;
}
.warning-block__title {
  border-left: 4px solid #1a6fd4;
  font-size: 1.5rem;
  padding-left: 1rem;
  margin-bottom: 2rem;
}
.warning-block__list {
  list-style: disc;
  list-style-position: inside;
}
.warning-block__item {
  line-height: 2;
}

.contact-page {
  max-width: 1000px;
  margin-inline: auto;
  padding: 5rem 0;
}
.contact-page__hint {
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 2rem;
  margin: 2rem 0;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .contact-page {
    max-width: 100%;
    padding: 2rem 1rem;
  }
  .contact-page__hint {
    padding: 1rem;
    margin: 1rem 0;
  }
}
.common-page {
  max-width: 1000px;
  margin-inline: auto;
  padding: 5rem 0;
}
@media (max-width: 768px) {
  .common-page {
    max-width: 100%;
    padding: 2rem 1rem;
  }
}
.common-page {
  line-height: 1.7;
  word-break: break-word;
  counter-reset: number 0;
}
.common-page *:last-child {
  margin-bottom: 0;
}
.common-page p {
  margin-bottom: 2rem;
  line-height: 1.7;
}
.common-page p:last-child {
  margin-bottom: 0;
}
.common-page h1,
.common-page h2,
.common-page h3,
.common-page h4,
.common-page h5,
.common-page h6 {
  font-weight: 700;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .common-page h1,
  .common-page h2,
  .common-page h3,
  .common-page h4,
  .common-page h5,
  .common-page h6 {
    line-height: 1.5;
  }
}
.common-page h1 {
  font-size: 2.5rem;
}
@media (max-width: 768px) {
  .common-page h1 {
    font-size: 2rem;
  }
}
.common-page h2 {
  font-size: 2rem;
}
@media (max-width: 768px) {
  .common-page h2 {
    font-size: 1.75rem;
  }
}
.common-page h3 {
  font-size: 1.75rem;
}
@media (max-width: 768px) {
  .common-page h3 {
    font-size: 1.5rem;
  }
}
.common-page h4 {
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  .common-page h4 {
    font-size: 1.25rem;
  }
}
.common-page h5 {
  font-size: 1.25rem;
}
@media (max-width: 768px) {
  .common-page h5 {
    font-size: 1rem;
  }
}
.common-page h6 {
  font-size: 1rem;
}
.common-page ul,
.common-page ol {
  margin-bottom: 2rem;
  margin-left: 1.25rem;
}
.common-page ul {
  list-style-type: disc;
}
.common-page ol {
  list-style-type: decimal;
}
.common-page li {
  line-height: 1.7;
  margin-bottom: 0.5rem;
}
.common-page li:last-child {
  margin-bottom: 0;
}
.common-page blockquote {
  padding-left: 1rem;
  margin-bottom: 2rem;
  border-left: 4px solid #ccc;
  color: #808080;
  font-style: italic;
  line-height: 1.7;
}
.common-page blockquote:last-child {
  margin-bottom: 0;
}
.common-page table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}
.common-page table:last-child {
  margin-bottom: 0;
}
.common-page th,
.common-page td {
  padding: 1rem;
  border: 1px solid #ccc;
}
.common-page th {
  text-align: center;
}
.common-page thead {
  background-color: #f7f7f7;
  font-weight: 600;
}
.common-page img {
  max-width: 100%;
}
.common-page figure {
  margin-bottom: 2rem;
}
.common-page figure:last-child {
  margin-bottom: 0;
}
.common-page pre,
.common-page code {
  font-family: SFMono-Regular, Consolas, monospace;
  font-size: 0.9rem;
  background: #f6f6f6;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
}
.common-page pre {
  overflow-x: auto;
  margin-bottom: 2rem;
}
.common-page pre:last-child {
  margin-bottom: 0;
}
.common-page iframe {
  max-width: 100%;
  display: block;
}
.common-page figcaption {
  font-size: 0.875rem;
  color: #666;
}
.common-page hr {
  border: 1px solid #ccc;
}
.common-page .wp-block-media-text,
.common-page .wp-block-cover {
  margin-bottom: 2rem;
}
.common-page .wp-block-media-text:last-child,
.common-page .wp-block-cover:last-child {
  margin-bottom: 0;
}
.common-page .wp-block-media-text p:last-child,
.common-page .wp-block-cover p:last-child {
  margin-bottom: 0;
}
.common-page .has-text-align-center img {
  margin-inline: auto;
}

.faq-section__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
.faq-section__title i {
  color: #198cd4;
  font-size: 1rem;
  margin-right: 0.25rem;
}

.l-container__main .faq-section {
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .l-container__main .faq-section {
    margin-bottom: 2rem;
  }
}
.l-container__main .faq-section:last-child {
  margin-bottom: 0;
}

.faq-list {
  background: #f4f4f4;
  border-radius: 4px;
  padding: 2rem;
}
@media (max-width: 768px) {
  .faq-list {
    padding: 1rem;
  }
}
.faq-list__item {
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .faq-list__item {
    line-height: 1.5;
  }
}
.faq-list__item:last-child {
  margin-bottom: 0;
}
.faq-list__item::before {
  content: "Q.";
  color: #808080;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 600;
  margin-right: 2px;
}
.faq-list__item a:hover {
  color: #1558b0;
}
.faq-list__more {
  border-top: 1px solid #ccc;
  margin-top: 1rem;
  padding-top: 1rem;
  text-align: right;
}

.faq-detail__title {
  border-left: 5px solid #1a6fd4;
  font-size: 2rem;
  line-height: 1.5;
  padding: 0 1rem;
  margin-bottom: 2rem;
}
.faq-detail__content {
  line-height: 1.7;
  word-break: break-word;
  counter-reset: number 0;
}
.faq-detail__content *:last-child {
  margin-bottom: 0;
}
.faq-detail__content p {
  margin-bottom: 2rem;
  line-height: 1.7;
}
.faq-detail__content p:last-child {
  margin-bottom: 0;
}
.faq-detail__content h1,
.faq-detail__content h2,
.faq-detail__content h3,
.faq-detail__content h4,
.faq-detail__content h5,
.faq-detail__content h6 {
  font-weight: 700;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .faq-detail__content h1,
  .faq-detail__content h2,
  .faq-detail__content h3,
  .faq-detail__content h4,
  .faq-detail__content h5,
  .faq-detail__content h6 {
    line-height: 1.5;
  }
}
.faq-detail__content h1 {
  font-size: 2.5rem;
}
@media (max-width: 768px) {
  .faq-detail__content h1 {
    font-size: 2rem;
  }
}
.faq-detail__content h2 {
  font-size: 2rem;
}
@media (max-width: 768px) {
  .faq-detail__content h2 {
    font-size: 1.75rem;
  }
}
.faq-detail__content h3 {
  font-size: 1.75rem;
}
@media (max-width: 768px) {
  .faq-detail__content h3 {
    font-size: 1.5rem;
  }
}
.faq-detail__content h4 {
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  .faq-detail__content h4 {
    font-size: 1.25rem;
  }
}
.faq-detail__content h5 {
  font-size: 1.25rem;
}
@media (max-width: 768px) {
  .faq-detail__content h5 {
    font-size: 1rem;
  }
}
.faq-detail__content h6 {
  font-size: 1rem;
}
.faq-detail__content ul,
.faq-detail__content ol {
  margin-bottom: 2rem;
  margin-left: 1.25rem;
}
.faq-detail__content ul {
  list-style-type: disc;
}
.faq-detail__content ol {
  list-style-type: decimal;
}
.faq-detail__content li {
  line-height: 1.7;
  margin-bottom: 0.5rem;
}
.faq-detail__content li:last-child {
  margin-bottom: 0;
}
.faq-detail__content blockquote {
  padding-left: 1rem;
  margin-bottom: 2rem;
  border-left: 4px solid #ccc;
  color: #808080;
  font-style: italic;
  line-height: 1.7;
}
.faq-detail__content blockquote:last-child {
  margin-bottom: 0;
}
.faq-detail__content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}
.faq-detail__content table:last-child {
  margin-bottom: 0;
}
.faq-detail__content th,
.faq-detail__content td {
  padding: 1rem;
  border: 1px solid #ccc;
}
.faq-detail__content th {
  text-align: center;
}
.faq-detail__content thead {
  background-color: #f7f7f7;
  font-weight: 600;
}
.faq-detail__content img {
  max-width: 100%;
}
.faq-detail__content figure {
  margin-bottom: 2rem;
}
.faq-detail__content figure:last-child {
  margin-bottom: 0;
}
.faq-detail__content pre,
.faq-detail__content code {
  font-family: SFMono-Regular, Consolas, monospace;
  font-size: 0.9rem;
  background: #f6f6f6;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
}
.faq-detail__content pre {
  overflow-x: auto;
  margin-bottom: 2rem;
}
.faq-detail__content pre:last-child {
  margin-bottom: 0;
}
.faq-detail__content iframe {
  max-width: 100%;
  display: block;
}
.faq-detail__content figcaption {
  font-size: 0.875rem;
  color: #666;
}
.faq-detail__content hr {
  border: 1px solid #ccc;
}
.faq-detail__content .wp-block-media-text,
.faq-detail__content .wp-block-cover {
  margin-bottom: 2rem;
}
.faq-detail__content .wp-block-media-text:last-child,
.faq-detail__content .wp-block-cover:last-child {
  margin-bottom: 0;
}
.faq-detail__content .wp-block-media-text p:last-child,
.faq-detail__content .wp-block-cover p:last-child {
  margin-bottom: 0;
}
.faq-detail__content .has-text-align-center img {
  margin-inline: auto;
}
.faq-detail__category {
  display: flex;
  justify-content: end;
  gap: 1rem;
  margin-top: 1rem;
  font-size: 0.875rem;
}
.faq-detail__category a {
  display: block;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 0.5rem;
}
.faq-detail__category a i {
  margin-right: 0.25rem;
}

.news-list__item {
  border-bottom: 1px solid #ccc;
  margin-bottom: 1rem;
  line-height: 1.5;
}
.news-list__link {
  color: #1a1a1a;
  display: flex;
  gap: 2rem;
  padding-bottom: 1rem;
  position: relative;
}
.news-list__link::after {
  font-family: "Font Awesome 7 Free";
  font-weight: 700;
  content: "\f105";
  position: absolute;
  right: 0;
}
.news-list__link:hover::after {
  color: #1558b0;
}
.news-list__title:hover {
  color: #1558b0;
}

@media screen and (max-width: 768px) {
  .news-list__item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    border-bottom: 1px solid #ccc;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    line-height: 1.5;
  }
  .news-list__date {
    font-weight: 700;
    font-size: 0.875rem;
  }
}
.news-detail {
  max-width: 1000px;
  margin-inline: auto;
  padding: 5rem 0;
}
@media (max-width: 768px) {
  .news-detail {
    max-width: 100%;
    padding: 2rem 1rem;
  }
}
.news-detail__heading {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-bottom: 1px solid #a1a9b3;
  padding-bottom: 1rem;
  margin-bottom: 2rem;
}
.news-detail__title {
  font-size: 2rem;
  line-height: 1.5;
}
.news-detail__date {
  color: #808080;
  font-size: 0.875rem;
  text-align: right;
}
.news-detail__content {
  line-height: 1.7;
  word-break: break-word;
  counter-reset: number 0;
}
.news-detail__content *:last-child {
  margin-bottom: 0;
}
.news-detail__content p {
  margin-bottom: 2rem;
  line-height: 1.7;
}
.news-detail__content p:last-child {
  margin-bottom: 0;
}
.news-detail__content h1,
.news-detail__content h2,
.news-detail__content h3,
.news-detail__content h4,
.news-detail__content h5,
.news-detail__content h6 {
  font-weight: 700;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .news-detail__content h1,
  .news-detail__content h2,
  .news-detail__content h3,
  .news-detail__content h4,
  .news-detail__content h5,
  .news-detail__content h6 {
    line-height: 1.5;
  }
}
.news-detail__content h1 {
  font-size: 2.5rem;
}
@media (max-width: 768px) {
  .news-detail__content h1 {
    font-size: 2rem;
  }
}
.news-detail__content h2 {
  font-size: 2rem;
}
@media (max-width: 768px) {
  .news-detail__content h2 {
    font-size: 1.75rem;
  }
}
.news-detail__content h3 {
  font-size: 1.75rem;
}
@media (max-width: 768px) {
  .news-detail__content h3 {
    font-size: 1.5rem;
  }
}
.news-detail__content h4 {
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  .news-detail__content h4 {
    font-size: 1.25rem;
  }
}
.news-detail__content h5 {
  font-size: 1.25rem;
}
@media (max-width: 768px) {
  .news-detail__content h5 {
    font-size: 1rem;
  }
}
.news-detail__content h6 {
  font-size: 1rem;
}
.news-detail__content ul,
.news-detail__content ol {
  margin-bottom: 2rem;
  margin-left: 1.25rem;
}
.news-detail__content ul {
  list-style-type: disc;
}
.news-detail__content ol {
  list-style-type: decimal;
}
.news-detail__content li {
  line-height: 1.7;
  margin-bottom: 0.5rem;
}
.news-detail__content li:last-child {
  margin-bottom: 0;
}
.news-detail__content blockquote {
  padding-left: 1rem;
  margin-bottom: 2rem;
  border-left: 4px solid #ccc;
  color: #808080;
  font-style: italic;
  line-height: 1.7;
}
.news-detail__content blockquote:last-child {
  margin-bottom: 0;
}
.news-detail__content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}
.news-detail__content table:last-child {
  margin-bottom: 0;
}
.news-detail__content th,
.news-detail__content td {
  padding: 1rem;
  border: 1px solid #ccc;
}
.news-detail__content th {
  text-align: center;
}
.news-detail__content thead {
  background-color: #f7f7f7;
  font-weight: 600;
}
.news-detail__content img {
  max-width: 100%;
}
.news-detail__content figure {
  margin-bottom: 2rem;
}
.news-detail__content figure:last-child {
  margin-bottom: 0;
}
.news-detail__content pre,
.news-detail__content code {
  font-family: SFMono-Regular, Consolas, monospace;
  font-size: 0.9rem;
  background: #f6f6f6;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
}
.news-detail__content pre {
  overflow-x: auto;
  margin-bottom: 2rem;
}
.news-detail__content pre:last-child {
  margin-bottom: 0;
}
.news-detail__content iframe {
  max-width: 100%;
  display: block;
}
.news-detail__content figcaption {
  font-size: 0.875rem;
  color: #666;
}
.news-detail__content hr {
  border: 1px solid #ccc;
}
.news-detail__content .wp-block-media-text,
.news-detail__content .wp-block-cover {
  margin-bottom: 2rem;
}
.news-detail__content .wp-block-media-text:last-child,
.news-detail__content .wp-block-cover:last-child {
  margin-bottom: 0;
}
.news-detail__content .wp-block-media-text p:last-child,
.news-detail__content .wp-block-cover p:last-child {
  margin-bottom: 0;
}
.news-detail__content .has-text-align-center img {
  margin-inline: auto;
}
.news-detail__content h2 {
  border-left: 4px solid #1a6fd4;
  padding-left: 1rem;
  font-size: 1.5rem;
}

.demo-card {
  display: flex;
  align-items: start;
  gap: 3rem;
}
@media (max-width: 768px) {
  .demo-card {
    flex-direction: column;
    gap: 1rem;
  }
}
.demo-card:last-child {
  margin-bottom: 0;
}
.demo-card__figure {
  width: 500px;
}
@media (max-width: 768px) {
  .demo-card__figure {
    display: none;
  }
}
.demo-card__figure img {
  border-radius: 8px;
  width: 100%;
}
.demo-card__body {
  flex: 1;
}
.demo-card__title {
  font-size: 2rem;
}
.demo-card__description {
  line-height: 1.7;
  margin: 2rem 0;
}
.demo-card__action {
  margin-top: 2rem;
}
.demo-card__btn {
  border-radius: 9999px;
  font-size: 1rem;
}
@media (max-width: 768px) {
  .demo-card__btn {
    width: 100%;
  }
}

.demo-account__heading {
  background: #ccc;
  border-radius: 8px 8px 0 0;
  padding: 1rem;
  text-align: center;
  font-weight: 700;
}
.demo-account__row {
  display: flex;
  border-left: 1px solid #ccc;
}
.demo-account__col {
  padding: 1rem;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.demo-account__col:nth-child(1n) {
  background: #eee;
  width: 200px;
}
.demo-account__col:nth-child(2n) {
  background: #ffffff;
  flex: 1;
}

@media (max-width: 768px) {
  .demo-account__row {
    display: flex;
    flex-direction: column;
  }
  .demo-account__col:nth-child(1n) {
    width: 100%;
  }
}
.demo-attention {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (max-width: 768px) {
  .demo-attention {
    line-height: 1.5;
  }
}

.blog-article-card {
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 1rem;
}
.blog-article-card__link figure {
  overflow: hidden;
  position: relative;
  width: 200px;
}
.blog-article-card__link img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.blog-article-card__link:hover img {
  transform: scale(1.1);
}
.blog-article-card__link {
  display: flex;
  gap: 1rem;
  color: #1a1a1a;
}
.blog-article-card__link:hover {
  color: #1a1a1a;
}
.blog-article-card__link:hover .blog-article-card__title {
  color: #1558b0;
}
.blog-article-card__figure {
  border-radius: 8px;
  position: relative;
}
.blog-article-card__figure img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.blog-article-card__figure figcaption {
  background: #1e2937;
  color: #ffffff;
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  position: absolute;
  top: 0;
  left: 0;
}
.blog-article-card__body {
  flex: 1;
}
.blog-article-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.blog-article-card__content {
  font-size: 1rem;
  line-height: 1.5;
}

.blog-article-card-wrap .blog-article-card {
  border-bottom: 1px solid #ccc;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .article-detail {
    max-width: 100%;
    padding: 2rem 1rem;
  }
}
.article-detail__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.article-detail__category a {
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 0.875rem;
  padding: 0.25rem 0.5rem;
}
.article-detail__date {
  color: #808080;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  text-align: right;
}
.article-detail__date i {
  margin-right: 0.25rem;
}
.article-detail__title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 2rem;
}
.article-detail__figure {
  width: 100%;
  margin-bottom: 2rem;
  position: relative;
}
.article-detail__figure img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.article-detail__figure figcaption {
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  background: #1a6fd4;
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
}
.article-detail__content {
  line-height: 1.7;
  word-break: break-word;
  counter-reset: number 0;
}
.article-detail__content *:last-child {
  margin-bottom: 0;
}
.article-detail__content p {
  margin-bottom: 2rem;
  line-height: 1.7;
}
.article-detail__content p:last-child {
  margin-bottom: 0;
}
.article-detail__content h1,
.article-detail__content h2,
.article-detail__content h3,
.article-detail__content h4,
.article-detail__content h5,
.article-detail__content h6 {
  font-weight: 700;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .article-detail__content h1,
  .article-detail__content h2,
  .article-detail__content h3,
  .article-detail__content h4,
  .article-detail__content h5,
  .article-detail__content h6 {
    line-height: 1.5;
  }
}
.article-detail__content h1 {
  font-size: 2.5rem;
}
@media (max-width: 768px) {
  .article-detail__content h1 {
    font-size: 2rem;
  }
}
.article-detail__content h2 {
  font-size: 2rem;
}
@media (max-width: 768px) {
  .article-detail__content h2 {
    font-size: 1.75rem;
  }
}
.article-detail__content h3 {
  font-size: 1.75rem;
}
@media (max-width: 768px) {
  .article-detail__content h3 {
    font-size: 1.5rem;
  }
}
.article-detail__content h4 {
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  .article-detail__content h4 {
    font-size: 1.25rem;
  }
}
.article-detail__content h5 {
  font-size: 1.25rem;
}
@media (max-width: 768px) {
  .article-detail__content h5 {
    font-size: 1rem;
  }
}
.article-detail__content h6 {
  font-size: 1rem;
}
.article-detail__content ul,
.article-detail__content ol {
  margin-bottom: 2rem;
  margin-left: 1.25rem;
}
.article-detail__content ul {
  list-style-type: disc;
}
.article-detail__content ol {
  list-style-type: decimal;
}
.article-detail__content li {
  line-height: 1.7;
  margin-bottom: 0.5rem;
}
.article-detail__content li:last-child {
  margin-bottom: 0;
}
.article-detail__content blockquote {
  padding-left: 1rem;
  margin-bottom: 2rem;
  border-left: 4px solid #ccc;
  color: #808080;
  font-style: italic;
  line-height: 1.7;
}
.article-detail__content blockquote:last-child {
  margin-bottom: 0;
}
.article-detail__content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
}
.article-detail__content table:last-child {
  margin-bottom: 0;
}
.article-detail__content th,
.article-detail__content td {
  padding: 1rem;
  border: 1px solid #ccc;
}
.article-detail__content th {
  text-align: center;
}
.article-detail__content thead {
  background-color: #f7f7f7;
  font-weight: 600;
}
.article-detail__content img {
  max-width: 100%;
}
.article-detail__content figure {
  margin-bottom: 2rem;
}
.article-detail__content figure:last-child {
  margin-bottom: 0;
}
.article-detail__content pre,
.article-detail__content code {
  font-family: SFMono-Regular, Consolas, monospace;
  font-size: 0.9rem;
  background: #f6f6f6;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
}
.article-detail__content pre {
  overflow-x: auto;
  margin-bottom: 2rem;
}
.article-detail__content pre:last-child {
  margin-bottom: 0;
}
.article-detail__content iframe {
  max-width: 100%;
  display: block;
}
.article-detail__content figcaption {
  font-size: 0.875rem;
  color: #666;
}
.article-detail__content hr {
  border: 1px solid #ccc;
}
.article-detail__content .wp-block-media-text,
.article-detail__content .wp-block-cover {
  margin-bottom: 2rem;
}
.article-detail__content .wp-block-media-text:last-child,
.article-detail__content .wp-block-cover:last-child {
  margin-bottom: 0;
}
.article-detail__content .wp-block-media-text p:last-child,
.article-detail__content .wp-block-cover p:last-child {
  margin-bottom: 0;
}
.article-detail__content .has-text-align-center img {
  margin-inline: auto;
}
.article-detail__content h2 {
  border-left: 4px solid #1a6fd4;
  background-color: #f2f7fd;
  font-size: 1.5rem !important;
  padding: 1rem;
}
.article-detail__content h3 {
  border-bottom: 4px solid #1a6fd4;
  font-size: 1.5rem !important;
  padding-bottom: 1rem;
}
.article-detail__content h4 {
  border-bottom: 2px dashed #1a6fd4;
  font-size: 1.25rem !important;
  padding-bottom: 1rem;
}
.article-detail__content #toc_container {
  width: 100% !important;
  box-sizing: border-box;
  margin-bottom: 2rem !important;
}
.article-detail__content .toc_list li {
  list-style: disc !important;
  list-style-position: inside !important;
}
.article-detail .author-card {
  border-radius: 4px;
  margin-top: 2rem;
}

.edit-password-page {
  max-width: 600px;
  margin-inline: auto;
  padding: 5rem 0;
}
.edit-password-page__heading {
  text-align: center;
  margin-bottom: 2rem;
}
.edit-password-page__title {
  font-size: 2rem;
  font-weight: 700;
}

@media (max-width: 768px) {
  .edit-password-page {
    max-width: 100%;
    padding: 2rem 1rem;
  }
}
.mypage {
  max-width: 1000px;
  margin-inline: auto;
  padding: 5rem 0;
}
.mypage__heading {
  text-align: center;
  margin-bottom: 3rem;
}
.mypage__title {
  font-size: 2rem;
  font-weight: 700;
}
.mypage__section {
  margin-bottom: 3rem;
}
.mypage__section-title {
  font-size: 1.25rem;
  font-weight: 700;
  padding-bottom: 0.75rem;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #1a6fd4;
}
.mypage__footer {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 4rem;
}

.license {
  background: #f2f7fd;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 1.5rem 2rem;
}
.license__code {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #1a6fd4;
  word-break: break-all;
}

.download-list {
  border: 1px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
}
.download-list__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  background: #ffffff;
}
.download-list__item:not(:last-child) {
  border-bottom: 1px solid #ccc;
}
.download-list__info {
  flex: 1;
}
.download-list__version {
  display: inline-block;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.download-list__note {
  font-size: 0.875rem;
  color: #1a1a1a;
  line-height: 1.7;
}
.download-list__action {
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .mypage {
    max-width: 100%;
    padding: 2rem 1rem;
  }
  .mypage__footer {
    flex-direction: column;
  }
  .license {
    padding: 1rem 1.25rem;
  }
  .license__code {
    font-size: 1rem;
  }
  .download-list__item {
    flex-direction: column;
    align-items: stretch;
    padding: 1.25rem;
  }
  .download-list__btn {
    width: 100%;
  }
}
.login-page {
  max-width: 600px;
  margin-inline: auto;
  padding: 5rem 0;
}
.login-page__heading {
  text-align: center;
  margin-bottom: 2rem;
}
.login-page__title {
  font-size: 2rem;
  font-weight: 700;
}
.login-page__description {
  margin-top: 2rem;
  color: #808080;
  font-size: 1rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .login-page {
    max-width: 100%;
    padding: 2rem 1rem;
  }
}
.w-0 {
  width: 0 !important;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.w-1 {
  width: 0.25rem !important;
}

.w-2 {
  width: 0.5rem !important;
}

.w-3 {
  width: 1rem !important;
}

.w-4 {
  width: 1.5rem !important;
}

.w-5 {
  width: 3rem !important;
}

.mw-0 {
  width: 0 !important;
}

.mw-25 {
  width: 25% !important;
}

.mw-50 {
  width: 50% !important;
}

.mw-75 {
  width: 75% !important;
}

.mw-100 {
  width: 100% !important;
}

.mw-auto {
  width: auto !important;
}

.mw-1 {
  width: 0.25rem !important;
}

.mw-2 {
  width: 0.5rem !important;
}

.mw-3 {
  width: 1rem !important;
}

.mw-4 {
  width: 1.5rem !important;
}

.mw-5 {
  width: 3rem !important;
}

.h-0 {
  height: 0 !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.h-1 {
  height: 0.25rem !important;
}

.h-2 {
  height: 0.5rem !important;
}

.h-3 {
  height: 1rem !important;
}

.h-4 {
  height: 1.5rem !important;
}

.h-5 {
  height: 3rem !important;
}

.mh-0 {
  height: 0 !important;
}

.mh-25 {
  height: 25% !important;
}

.mh-50 {
  height: 50% !important;
}

.mh-75 {
  height: 75% !important;
}

.mh-100 {
  height: 100% !important;
}

.mh-auto {
  height: auto !important;
}

.mh-1 {
  height: 0.25rem !important;
}

.mh-2 {
  height: 0.5rem !important;
}

.mh-3 {
  height: 1rem !important;
}

.mh-4 {
  height: 1.5rem !important;
}

.mh-5 {
  height: 3rem !important;
}

.p-0 {
  padding: 0 !important;
}

.m-0 {
  margin: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.pt-3 {
  padding-top: 1rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.pt-4 {
  padding-top: 1.5rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.pt-5 {
  padding-top: 3rem !important;
}

.mt-5 {
  margin-top: 3rem !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.pb-3 {
  padding-bottom: 1rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.pb-4 {
  padding-bottom: 1.5rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.pb-5 {
  padding-bottom: 3rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.ps-0 {
  padding-left: 0 !important;
}

.ms-0 {
  margin-left: 0 !important;
}

.ps-1 {
  padding-left: 0.25rem !important;
}

.ms-1 {
  margin-left: 0.25rem !important;
}

.ps-2 {
  padding-left: 0.5rem !important;
}

.ms-2 {
  margin-left: 0.5rem !important;
}

.ps-3 {
  padding-left: 1rem !important;
}

.ms-3 {
  margin-left: 1rem !important;
}

.ps-4 {
  padding-left: 1.5rem !important;
}

.ms-4 {
  margin-left: 1.5rem !important;
}

.ps-5 {
  padding-left: 3rem !important;
}

.ms-5 {
  margin-left: 3rem !important;
}

.pe-0 {
  padding-right: 0 !important;
}

.me-0 {
  margin-right: 0 !important;
}

.pe-1 {
  padding-right: 0.25rem !important;
}

.me-1 {
  margin-right: 0.25rem !important;
}

.pe-2 {
  padding-right: 0.5rem !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

.pe-3 {
  padding-right: 1rem !important;
}

.me-3 {
  margin-right: 1rem !important;
}

.pe-4 {
  padding-right: 1.5rem !important;
}

.me-4 {
  margin-right: 1.5rem !important;
}

.pe-5 {
  padding-right: 3rem !important;
}

.me-5 {
  margin-right: 3rem !important;
}

.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.mx-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.px-1 {
  padding-left: 0.25rem !important;
  padding-right: 0.25rem !important;
}

.mx-1 {
  margin-left: 0.25rem !important;
  margin-right: 0.25rem !important;
}

.px-2 {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}

.mx-2 {
  margin-left: 0.5rem !important;
  margin-right: 0.5rem !important;
}

.px-3 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.mx-3 {
  margin-left: 1rem !important;
  margin-right: 1rem !important;
}

.px-4 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

.mx-4 {
  margin-left: 1.5rem !important;
  margin-right: 1.5rem !important;
}

.px-5 {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}

.mx-5 {
  margin-left: 3rem !important;
  margin-right: 3rem !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.data-table {
  width: 100%;
  border-color: #ccc !important;
  border-collapse: collapse;
  color: #1a1a1a;
  overflow-x: visible;
}
.data-table td {
  box-sizing: border-box;
  line-height: 1.7;
  padding: 0.75rem;
  vertical-align: top;
}
.data-table tr td:first-child {
  background-color: #eee;
  color: #1a1a1a;
  font-weight: 500;
  vertical-align: middle;
  width: 25%;
}
.data-table tr td:first-child.has-text-align-left {
  text-align: left !important;
}
.data-table tr td:first-child.has-text-align-center {
  text-align: center !important;
}
.data-table tr td:first-child.has-text-align-right {
  text-align: right !important;
}
.data-table tr td:last-child {
  background-color: #fff;
  color: #1a1a1a;
  width: 75%;
}

@media screen and (max-width: 768px) {
  .data-table {
    border-top: 1px solid #ccc;
  }
  .data-table tr {
    display: block;
  }
  .data-table tr td:first-child,
  .data-table tr td:last-child {
    display: block;
    width: 100%;
    padding: 0.5rem 1rem;
    border-top: none !important;
    box-sizing: border-box;
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
  }
}
.accordion {
  margin-bottom: 2rem;
}
.accordion.is-gray .accordion__title {
  background-color: #6B6B6B;
}
.accordion.is-red .accordion__title {
  background-color: #dc2626;
}
.accordion.is-blue .accordion__title {
  background-color: #198cd4;
}
.accordion.is-green .accordion__title {
  background-color: #16a34a;
}
.accordion.is-orange .accordion__title {
  background-color: #d97706;
}
.accordion__title {
  position: relative;
  border: none;
  box-sizing: border-box;
  display: block;
  list-style: none;
  width: 100%;
  cursor: pointer;
  padding: 1rem 3rem 1rem 1rem;
  line-height: 2;
  background-color: var(--sub-background-color);
  color: #fff;
}
@media (max-width: 768px) {
  .accordion__title {
    padding: 1rem 2.5rem 1rem 1rem;
  }
}
.accordion__title::-webkit-details-marker {
  display: none;
}
.accordion__title::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 1.25rem;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
  transition: transform 0.3s ease;
}
@media (max-width: 768px) {
  .accordion__title::after {
    right: 0.5rem;
  }
}
.accordion__content {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  padding: 0 1rem;
  transition: max-height 0.5s ease, opacity 0.5s ease, padding 0.5s ease;
}
.accordion__content > *:first-child {
  margin-top: 0;
}
.accordion__content > *:last-child {
  margin-bottom: 0;
}
.accordion[open] .accordion__title::after {
  content: "−";
  transform: translateY(-50%) rotate(0deg);
}
.accordion[open] .accordion__content {
  max-height: 5000px;
  opacity: 1;
  padding: 1rem;
}
@media (max-width: 768px) {
  .accordion[open] .accordion__content {
    padding: 1rem 0.5rem;
  }
}

.accordion-group .accordion {
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 0;
}
.accordion-group .accordion:first-child {
  border-top: 1px solid var(--border-color);
}

.color-box {
  padding: 20px;
  box-sizing: border-box;
  margin-bottom: 2rem;
}
.color-box.has-border-radius {
  border-radius: 8px;
}
.color-box.is-gray {
  background: color-mix(in srgb, #6B6B6B 15%, #fff);
}
.color-box.is-gray.has-border {
  border: 1px solid #6B6B6B;
}
.color-box.is-red {
  background: color-mix(in srgb, #dc2626 20%, #fff);
}
.color-box.is-red.has-border {
  border: 1px solid #dc2626;
}
.color-box.is-blue {
  background: color-mix(in srgb, #198cd4 20%, #fff);
}
.color-box.is-blue.has-border {
  border: 1px solid #198cd4;
}
.color-box.is-green {
  background: color-mix(in srgb, #16a34a 20%, #fff);
}
.color-box.is-green.has-border {
  border: 1px solid #16a34a;
}
.color-box.is-orange {
  background: color-mix(in srgb, #d97706 20%, #fff);
}
.color-box.is-orange.has-border {
  border: 1px solid #d97706;
}

.heading-box {
  box-sizing: border-box;
  margin-bottom: 2rem;
}
.heading-box__title {
  font-size: 1rem;
  padding: 0.5rem 1rem;
  margin: 0 !important;
  color: #fff;
}
.heading-box__content {
  background-color: #fff;
  padding: 1rem !important;
}
.heading-box.is-gray .heading-box__title {
  border: 1px solid #6B6B6B;
  background-color: #6B6B6B;
}
.heading-box.is-gray .heading-box__content {
  border: 1px solid #6B6B6B;
}
.heading-box.is-red .heading-box__title {
  border: 1px solid #dc2626;
  background-color: #dc2626;
}
.heading-box.is-red .heading-box__content {
  border: 1px solid #dc2626;
}
.heading-box.is-blue .heading-box__title {
  border: 1px solid #198cd4;
  background-color: #198cd4;
}
.heading-box.is-blue .heading-box__content {
  border: 1px solid #198cd4;
}
.heading-box.is-green .heading-box__title {
  border: 1px solid #16a34a;
  background-color: #16a34a;
}
.heading-box.is-green .heading-box__content {
  border: 1px solid #16a34a;
}
.heading-box.is-orange .heading-box__title {
  border: 1px solid #d97706;
  background-color: #d97706;
}
.heading-box.is-orange .heading-box__content {
  border: 1px solid #d97706;
}
.heading-box.has-border-radius .heading-box__title {
  border-radius: 10px 10px 0 0;
}
.heading-box.has-border-radius .heading-box__content {
  border-radius: 0 0 10px 10px;
}

.heading-frame {
  border-radius: 8px;
  position: relative;
  padding: 1rem;
  margin-bottom: 2rem;
}
.heading-frame__title {
  position: absolute;
  display: inline-block;
  top: -12px;
  left: 10px;
  padding: 0 10px;
  line-height: 1;
  background-color: #fff;
  font-size: 1rem;
  font-weight: 700;
}
.heading-frame.is-gray {
  border: 3px solid #6B6B6B;
}
.heading-frame.is-gray .heading-frame__title {
  color: #6B6B6B;
}
.heading-frame.is-red {
  border: 3px solid #dc2626;
}
.heading-frame.is-red .heading-frame__title {
  color: #dc2626;
}
.heading-frame.is-blue {
  border: 3px solid #198cd4;
}
.heading-frame.is-blue .heading-frame__title {
  color: #198cd4;
}
.heading-frame.is-green {
  border: 3px solid #16a34a;
}
.heading-frame.is-green .heading-frame__title {
  color: #16a34a;
}
.heading-frame.is-orange {
  border: 3px solid #d97706;
}
.heading-frame.is-orange .heading-frame__title {
  color: #d97706;
}

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