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

html {
  overflow-x: hidden;
  scroll-padding-top: 144px;
}
@media (max-width: 991px) {
  html {
    scroll-padding-top: 80px;
  }
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
}

.section-wrapper {
  width: 100%;
  box-sizing: border-box;
}

.custom-site-footer {
  margin: 0;
  padding: 0;
  width: 100%;
  display: block;
}

.c-breadcrumb-container {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.c-breadcrumb {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 16px 24px;
  width: 100%;
  max-width: 1176px;
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  color: #635D5D;
}
.c-breadcrumb a {
  color: #635D5D;
  text-decoration: none;
  transition: color 0.3s ease;
}
.c-breadcrumb a:hover {
  color: #D92884;
}
.c-breadcrumb .c-breadcrumb-sep {
  margin: 0 10px;
  color: #DCD5DB;
}
.c-breadcrumb .c-breadcrumb-current {
  color: #D92884;
  font-weight: 700;
}

.c-circle-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid #DCD5DB;
  border-radius: 50%;
  background-color: transparent;
  transition: border-color 0.3s ease, background-color 0.3s ease;
  position: relative;
  flex-shrink: 0;
}
.c-circle-arrow::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 2px solid #000000;
  border-right: 2px solid #000000;
  transform: rotate(45deg);
  margin-left: -1.5px;
  transition: border-color 0.3s ease;
}
.c-circle-arrow:hover, a:hover .c-circle-arrow {
  border-color: #D92884;
}
.c-circle-arrow:hover::after, a:hover .c-circle-arrow::after {
  border-top-color: #D92884;
  border-right-color: #D92884;
}
.c-circle-arrow--down::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 2px solid #000000;
  border-right: 2px solid #000000;
  transform: rotate(135deg);
  margin-top: -1.5px;
}
.c-circle-arrow--white {
  border-color: #FFFFFF;
}
.c-circle-arrow--white::after {
  border-top-color: #FFFFFF;
  border-right-color: #FFFFFF;
}
.c-circle-arrow--sm {
  width: 24px;
  height: 24px;
}
.c-circle-arrow--sm::after {
  width: 6px;
  height: 6px;
  border-top-width: 1.5px;
  border-right-width: 1.5px;
  margin-left: -1px;
}

.c-page-title-h1 {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 0;
  margin: 48px auto 48px auto;
  gap: 24px;
  width: 100%;
  max-width: 1176px;
  font-family: "Noto Sans JP", sans-serif;
}
@media (max-width: 991.98px) {
  .c-page-title-h1 {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 0 24px;
    margin: 32px auto;
  }
}
.c-page-title-h1__en-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.c-page-title-h1__rect {
  width: 24px;
  height: 8px;
  background: #D92884;
}
.c-page-title-h1__en {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.25;
  color: #000000;
}
.c-page-title-h1__jp {
  font-weight: 700;
  font-size: 48px;
  line-height: 1.25;
  color: #000000;
}
@media (max-width: 991.98px) {
  .c-page-title-h1__jp {
    font-size: 24px;
  }
}

.c-custom-h2 {
  position: relative;
  width: 100%;
  max-width: 1176px;
  margin: 0 auto 64px auto;
  padding: 0;
}
@media (max-width: 991.98px) {
  .c-custom-h2 {
    margin-bottom: 24px;
  }
}
.c-custom-h2__line {
  display: flex;
  width: 100%;
  height: 8px;
  padding-bottom: 4px;
  border-bottom: 4px solid #DCD5DB;
  position: relative;
}
.c-custom-h2__line::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 80px;
  height: 4px;
  background: #D92884;
  border-radius: 0 30px 30px 0;
}
.c-custom-h2__en {
  font-weight: 700;
  font-size: 36px;
  line-height: 1.67;
  color: #000000;
  margin: 8px 0 24px 0;
}
@media (max-width: 991.98px) {
  .c-custom-h2__en {
    font-size: 24px;
    margin: 8px 24px 24px;
  }
}
.c-custom-h2__jp-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 8px;
}
@media (max-width: 991.98px) {
  .c-custom-h2__jp-wrap {
    padding: 0 24px;
  }
}
.c-custom-h2__jp-wrap .rect {
  width: 24px;
  height: 8px;
  background: #D92884;
  flex-shrink: 0;
}
.c-custom-h2__jp-wrap .title {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  color: #000000;
}
@media (max-width: 991.98px) {
  .c-custom-h2__jp-wrap .title {
    font-size: 20px;
  }
}
.c-custom-h2__jp {
  font-weight: 700;
  font-size: 36px;
  line-height: 1.67;
  color: #000000;
  margin: 8px 0 24px 0;
}
@media (max-width: 991.98px) {
  .c-custom-h2__jp {
    font-size: 24px;
    margin: 8px 24px 24px;
  }
}
.c-custom-h2__en-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 8px;
}
@media (max-width: 991.98px) {
  .c-custom-h2__en-wrap {
    padding: 0 24px;
  }
}
.c-custom-h2__en-wrap .rect {
  width: 24px;
  height: 8px;
  background: #D92884;
  flex-shrink: 0;
}
.c-custom-h2__en-wrap .title {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  color: #000000;
}
@media (max-width: 991.98px) {
  .c-custom-h2__en-wrap .title {
    font-size: 20px;
  }
}
.c-custom-h2--on-dark .c-custom-h2__line {
  border-bottom-color: rgba(255, 255, 255, 0.3);
}
.c-custom-h2--on-dark .c-custom-h2__line::before {
  background: #D92884;
}
.c-custom-h2--on-dark .c-custom-h2__en,
.c-custom-h2--on-dark .c-custom-h2__jp {
  color: #ffffff;
}
.c-custom-h2--on-dark .c-custom-h2__jp-wrap .title,
.c-custom-h2--on-dark .c-custom-h2__en-wrap .title {
  color: #ffffff;
}

.c-custom-h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.33;
  color: #000000;
  margin: 0 0 24px 0;
  padding: 0;
}
@media (max-width: 991.98px) {
  .c-custom-h3 {
    font-size: 20px;
    margin-bottom: 16px;
  }
}
.c-custom-h3--accent {
  display: flex;
  align-items: center;
  gap: 12px;
}
.c-custom-h3--accent::before {
  content: "";
  display: block;
  width: 16px;
  height: 6px;
  background: #D92884;
  flex-shrink: 0;
}

.c-custom-h4 {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  color: #000000;
  margin: 0 0 16px 0;
  padding: 0;
}
@media (max-width: 991.98px) {
  .c-custom-h4 {
    font-size: 18px;
    margin-bottom: 16px;
  }
}

.c-index-grid {
  display: flex;
  flex-direction: row;
  gap: 0 32px;
  width: 75%;
  margin: 0 0 64px 0;
}
@media (max-width: 991.98px) {
  .c-index-grid {
    flex-direction: column;
    gap: 0;
    width: 100%;
    padding: 0 24px;
  }
}
.c-index-grid__col {
  flex: 1;
  min-width: 0;
}
.c-index-grid__item {
  display: flex;
  flex-direction: column;
  padding: 0 0 4px 0;
  margin-bottom: 22px;
  text-decoration: none !important;
  transition: opacity 0.3s ease;
}
.c-index-grid__item:hover {
  opacity: 0.7;
}
.c-index-grid__content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin-bottom: 6px;
}
.c-index-grid__rect {
  width: 12px;
  height: 6px;
  background: #635D5D;
  flex-shrink: 0;
  transform: translateZ(0);
}
.c-index-grid__title {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  color: #635D5D;
}
.c-index-grid__line {
  width: 100%;
  height: 1px;
  background: #DCD5DB;
}

.c-tech-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  width: 100%;
  max-width: 1176px;
  margin: 0 auto;
}
@media (max-width: 991.98px) {
  .c-tech-cards {
    grid-template-columns: 1fr;
    padding: 0 24px;
  }
}

.c-tech-card {
  display: flex;
  flex-direction: column;
  flex: 1;
  background: #FFFFFF;
  box-shadow: 0px 4px 30px rgba(80, 75, 75, 0.1);
  border-radius: 15px;
  overflow: hidden;
  text-decoration: none !important;
  color: #000000;
  transition: box-shadow 0.3s ease;
}
.c-tech-card:hover {
  box-shadow: 0px 8px 40px rgba(80, 75, 75, 0.2);
}
.c-tech-card:hover .c-tech-card__img-wrap img {
  transform: scale(1.06);
}
.c-tech-card__img-wrap {
  aspect-ratio: 370/216;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}
.c-tech-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.c-tech-card__content {
  display: flex;
  flex-direction: column;
  padding: 24px;
  gap: 16px;
  flex-grow: 1;
}
.c-tech-card__header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
}
.c-tech-card__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.33;
  color: #000000;
  margin: 0;
}
@media (max-width: 991.98px) {
  .c-tech-card__title {
    font-size: 20px;
  }
}
.c-tech-card__desc {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: #000000;
  flex-grow: 1;
}
.c-tech-card__footer {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  margin-top: 10px;
}

.c-news-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  padding: 6px 14px;
  border-radius: 20px;
  color: #ffffff;
  background: #635D5D;
  white-space: nowrap;
  flex-shrink: 0;
}
.c-news-tag--tech {
  background: #D92884;
}
.c-news-tag--exhibition {
  background: #D4A1E8;
}
.c-news-tag--management {
  background: #9E8E96;
}
.c-news-tag--other {
  background: #9E8E96;
}

.c-news-tile {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid #DCD5DB;
  text-decoration: none !important;
  color: #000000;
  transition: opacity 0.2s ease;
}
.c-news-tile:hover {
  opacity: 0.7;
}
.c-news-tile__date {
  font-size: 14px;
  font-weight: 500;
  color: #635D5D;
  white-space: nowrap;
  flex-shrink: 0;
}
.c-news-tile__title {
  font-size: 16px;
  font-weight: 500;
  color: #000000;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 991.98px) {
  .c-news-tile__title {
    white-space: normal;
  }
}
.c-news-tile .c-circle-arrow {
  flex-shrink: 0;
  margin-left: auto;
}
@media (max-width: 991.98px) {
  .c-news-tile {
    flex-wrap: wrap;
    gap: 8px;
  }
  .c-news-tile__date {
    order: 1;
  }
  .c-news-tile .c-news-tag {
    order: 2;
  }
  .c-news-tile__title {
    order: 3;
    width: 100%;
  }
  .c-news-tile .c-circle-arrow {
    order: 4;
  }
}

.c-bold-accent {
  color: #D92884;
  font-weight: 700;
}

.p-rich-text strong {
  color: #D92884;
  font-weight: 700;
}

.c-page-link {
  display: inline-flex;
  align-items: center;
  width: 360px;
  max-width: 100%;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #DCD5DB;
  text-decoration: none !important;
  transition: opacity 0.2s ease;
  box-sizing: border-box;
}
.c-page-link:hover {
  opacity: 0.7;
}
.c-page-link__rect {
  width: 16px;
  height: 8px;
  background: #635D5D;
  flex-shrink: 0;
}
.c-page-link__text {
  font-size: 16px;
  font-weight: 700;
  color: #635D5D;
  flex: 1;
}
.c-page-link--accent .c-page-link__rect {
  background: #D92884;
}
.c-page-link--accent .c-page-link__text {
  color: #D92884;
}

.c-spec-table-wrap {
  border-radius: 25px;
  overflow: hidden;
  width: 100%;
}

.c-spec-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 4px;
  background: #ffffff;
  font-size: 16px;
  line-height: 2;
}
.c-spec-table thead tr th {
  background: #D92884;
  color: #ffffff;
  font-weight: 700;
  padding: 12px 20px;
  text-align: left;
}
.c-spec-table tbody tr th {
  background: #9E9E9E;
  color: #ffffff;
  font-weight: 700;
  padding: 12px 20px;
  text-align: left;
  white-space: nowrap;
  width: 160px;
}
@media (max-width: 991.98px) {
  .c-spec-table tbody tr th {
    width: auto;
    white-space: normal;
  }
}
.c-spec-table tbody tr td {
  background: #D9D9D9;
  color: #000000;
  padding: 12px 20px;
}

.c-download-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 1199.98px) {
  .c-download-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767.98px) {
  .c-download-cards {
    grid-template-columns: 1fr;
  }
}

.c-download-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(80, 75, 75, 0.1);
  transition: box-shadow 0.3s ease;
}
.c-download-card:hover {
  box-shadow: 0 8px 40px rgba(80, 75, 75, 0.2);
}
.c-download-card:hover .c-download-card__thumb img {
  transform: scale(1.04);
  filter: brightness(0.85);
}
.c-download-card:hover .c-download-card__overlay {
  opacity: 1;
}
.c-download-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none !important;
  color: #000000;
}
.c-download-card__thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #DCD5DB;
  flex-shrink: 0;
}
.c-download-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
}
.c-download-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(217, 40, 132, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.c-download-card__dl-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #D92884;
}
.c-download-card__content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 24px;
  gap: 8px;
}
.c-download-card__badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  padding: 4px 10px;
  border-radius: 4px;
  color: #fff;
  background: #433641;
}
.c-download-card__badge--pdf {
  background: #E53935;
}
.c-download-card__badge--zip {
  background: #F57C00;
}
.c-download-card__badge--xlsx {
  background: #2E7D32;
}
.c-download-card__badge--pptx {
  background: #C62828;
}
.c-download-card__badge--docx {
  background: #1565C0;
}
.c-download-card__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}
@media (max-width: 991.98px) {
  .c-download-card__title {
    font-size: 16px;
  }
}
.c-download-card__desc {
  font-size: 14px;
  line-height: 1.6;
  color: #433641;
  margin: 0;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.c-download-card__footer {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #DCD5DB;
}
.c-download-card__btn {
  font-size: 14px;
  font-weight: 700;
  color: #D92884;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  width: auto;
  height: auto;
  padding: 8px 16px;
  background: #000;
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  outline: 3px solid #D92884;
}

body:not(.home) {
  padding-top: 144px !important;
}
@media (max-width: 991px) {
  body:not(.home) {
    padding-top: 80px !important;
  }
}

body.home:not(.header--scrolled) .site-header:not(.is-mega-open):not(.is-mobile-open)::before {
  opacity: 0 !important;
  box-shadow: none !important;
}
body.home:not(.header--scrolled) .site-header:not(.is-mega-open):not(.is-mobile-open) .site-logo {
  opacity: 0;
  pointer-events: none;
}
body.home:not(.header--scrolled) .site-header:not(.is-mega-open):not(.is-mobile-open) .custom-white-logo {
  opacity: 1;
  pointer-events: auto;
}
body.home:not(.header--scrolled) .site-header:not(.is-mega-open):not(.is-mobile-open) .global-nav__list > li > a {
  color: #ffffff !important;
}
body.home:not(.header--scrolled) .site-header:not(.is-mega-open):not(.is-mobile-open) .custom-white-logo {
  transform: translateY(10px) translateX(12px);
}
body.home:not(.header--scrolled) .site-header:not(.is-mega-open):not(.is-mobile-open) nav.global-nav {
  transform: translateY(10px) translateX(-12px);
}
body.home:not(.header--scrolled) .site-header:not(.is-mega-open):not(.is-mobile-open) .mobile-header-tools {
  transform: translateY(10px);
}

body.admin-bar .site-header {
  top: 32px !important;
}
@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px !important;
  }
}

.site-header {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100vw;
  height: 144px !important;
  z-index: 1000;
  padding: 0 !important;
  overflow: visible;
  background-color: transparent !important;
  box-shadow: none !important;
}
.site-header .header-inner {
  max-width: none !important;
  width: 100% !important;
  box-sizing: border-box !important;
  padding-left: 5vw !important;
  padding-right: 5vw !important;
  height: 100%;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  position: relative;
  z-index: 1;
}
.site-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.97);
  box-shadow: 0px 8px 8px rgba(201, 201, 201, 0.1);
  transition: background-color 0.4s ease, opacity 0.4s ease;
  z-index: 0;
}
.site-header .logo-container {
  position: relative;
  width: 250px;
  height: 56px;
  flex-shrink: 0;
  margin: 0 !important;
}
.site-header .site-logo,
.site-header .custom-white-logo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  float: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.4s ease, transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.site-header .site-logo {
  opacity: 1;
  pointer-events: auto;
}
.site-header .custom-white-logo {
  opacity: 0;
  pointer-events: none;
}
.site-header .site-logo img,
.site-header .custom-white-logo img {
  width: 250px;
  height: auto;
  max-height: 56px;
  transition: opacity 0.3s ease !important;
}
.site-header nav.global-nav {
  display: flex !important;
  align-items: center !important;
  margin: 0 0 0 auto !important;
  padding: 0 !important;
  transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.site-header .global-nav__list {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  display: flex !important;
  align-items: center !important;
  gap: 0;
}
.site-header .global-nav__list > li.header-menu-item {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 32px;
  position: relative;
}
.site-header .global-nav__list > li.header-menu-item > a {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 32px;
  color: #000000 !important;
  text-decoration: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 12px !important;
  margin: 0 !important;
  white-space: nowrap;
  position: relative;
  transition: color 0.3s ease !important;
}
.site-header .global-nav__list > li.header-menu-item > a::after {
  content: "" !important;
  position: absolute !important;
  left: 12px !important;
  right: 12px !important;
  bottom: -3px !important;
  height: 2px !important;
  background-color: #D92884 !important;
  border-radius: 0px 30px 30px 0px !important;
  transform: scaleX(0) !important;
  transform-origin: left !important;
  transition: transform 0.3s ease !important;
  display: block !important;
}
.site-header .global-nav__list > li.header-menu-item:hover > a::after, .site-header .global-nav__list > li.header-menu-item.is-active > a::after, .site-header .global-nav__list > li.header-menu-item.is-current > a::after {
  transform: scaleX(1) !important;
}
.site-header .global-nav__list > li.menu-item-contact-btn > a {
  text-decoration: none !important;
  background-color: #D92884 !important;
  color: #ffffff !important;
  width: 160px !important;
  height: 50px !important;
  min-width: 140px;
  padding: 12px 24px !important;
  border-radius: 30px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  margin-left: 20px !important;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 15px;
  white-space: nowrap;
  transition: background-color 0.3s ease, transform 0.2s ease !important;
}
.site-header .global-nav__list > li.menu-item-contact-btn > a::after {
  display: none !important;
}
.site-header .global-nav__list > li.menu-item-contact-btn > a:hover {
  background-color: #af1f6a !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
}
.site-header.is-mega-open::before, .site-header.is-mobile-open::before {
  background-color: #222222 !important;
  box-shadow: none !important;
}
.site-header.is-mega-open .site-logo, .site-header.is-mobile-open .site-logo {
  opacity: 0;
  pointer-events: none;
}
.site-header.is-mega-open .custom-white-logo, .site-header.is-mobile-open .custom-white-logo {
  opacity: 1;
  pointer-events: auto;
}
.site-header.is-mega-open .global-nav__list > li > a, .site-header.is-mobile-open .global-nav__list > li > a {
  color: #ffffff !important;
}

@media (min-width: 1441px) {
  .site-header .logo-container {
    margin-left: -64px !important;
  }

  .site-header nav.global-nav {
    margin-right: -64px !important;
  }
}
@media (max-width: 1440px) and (min-width: 992px) {
  .site-header .header-inner {
    padding-left: clamp(2vw, 4vw, 5vw) !important;
    padding-right: clamp(2vw, 4vw, 5vw) !important;
  }

  .site-header .logo-container {
    width: clamp(160px, 17vw, 250px);
  }

  .site-header .site-logo img,
.site-header .custom-white-logo img {
    width: 100%;
  }

  .site-header .global-nav__list > li.header-menu-item > a {
    font-size: clamp(11px, 1vw, 15px);
    padding: 0 clamp(6px, 0.8vw, 12px) !important;
  }

  .site-header .global-nav__list > li.menu-item-contact-btn > a {
    width: clamp(120px, 11vw, 160px) !important;
    height: clamp(38px, 3.4vw, 50px) !important;
    min-width: unset;
    font-size: clamp(11px, 1vw, 15px);
    padding: 0 !important;
    margin-left: clamp(8px, 1vw, 20px) !important;
  }
}
@media (max-width: 991px) {
  .site-header {
    height: 80px !important;
  }

  .site-header .header-inner {
    padding-left: 20px !important;
    padding-right: 20px !important;
    justify-content: space-between !important;
    width: 100% !important;
  }

  .site-header .logo-container {
    width: 33vw;
    max-width: 200px;
    min-width: 120px;
    height: 48px;
  }

  .site-header .site-logo img,
.site-header .custom-white-logo img {
    width: 100%;
    height: auto;
  }

  body .site-header nav.global-nav {
    display: none !important;
  }

  .mobile-header-tools {
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    margin-left: auto;
    transition: transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
  }

  .mobile-btn-contact {
    display: flex !important;
    justify-content: center;
    align-items: center;
    background-color: #D92884;
    color: #ffffff !important;
    width: 120px;
    height: 40px;
    border-radius: 20px;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none !important;
    white-space: nowrap;
  }

  .mobile-hamburger {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 52px;
    height: 40px;
    background-color: #222222;
    border-radius: 20px;
    cursor: pointer;
    border: none;
    padding: 0;
    gap: 5px;
  }
  .mobile-hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background-color: #D92884;
    transition: all 0.3s ease;
  }
  .mobile-hamburger.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .mobile-hamburger.is-active span:nth-child(2) {
    opacity: 0;
  }
  .mobile-hamburger.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}
@media (min-width: 992px) {
  .mobile-header-tools {
    display: none !important;
  }
}
.customHero {
  position: relative;
  width: 100vw;
  height: 100vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  background-color: #000000;
}
.customHero_videoWrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.customHero_videoWrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.customHero_content {
  position: relative;
  z-index: 3;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  padding-right: 5vw;
}
.customHero_copyBox {
  text-align: left;
  max-width: 600px;
  animation: fadeInRight 1s cubic-bezier(0.25, 0.8, 0.25, 1) 0.5s both;
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.customHero_logo {
  margin-bottom: 20px;
}
.customHero_logo img {
  max-width: 500px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.8));
}
.customHero_text {
  color: #ffffff;
  font-size: 0.95rem;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9);
  opacity: 0.85;
}
@media (max-width: 991px) {
  .customHero {
    justify-content: center;
  }
  .customHero_content {
    justify-content: center;
    padding-right: 0;
  }
  .customHero_copyBox {
    text-align: center;
    padding: 0 20px;
  }
}
@media (max-width: 575px) {
  .customHero {
    height: 80vh;
    min-height: 400px;
  }
  .customHero_logo {
    margin-bottom: 15px;
  }
  .customHero_logo img {
    max-width: 280px;
  }
  .customHero_text {
    font-size: 0.85rem;
  }
}

.customHeroP2 {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background-color: #1a1a1a;
  overflow: hidden;
  z-index: 1;
}
.customHeroP2_bgLineart {
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100vh;
  background-size: auto 100%;
  background-position: left center;
  background-repeat: no-repeat;
  opacity: 0;
  z-index: 2;
  animation: fadeInLineart 0.5s forwards 0.6s;
}
@keyframes fadeInLineart {
  0% {
    opacity: 0;
    filter: drop-shadow(0 0 5px rgba(255, 0, 255, 0));
  }
  100% {
    opacity: 0.9;
    filter: drop-shadow(0 0 10px rgba(255, 0, 255, 0.8));
  }
}
.customHeroP2_laserMask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #1a1a1a;
  z-index: 3;
  clip-path: polygon(130vh 0, 100vw 0, 100vw 100vh, 35vh 100vh);
}
.customHeroP2_particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 4;
  pointer-events: none;
}
.customHeroP2_scroll {
  position: absolute;
  color: #fff;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  z-index: 5;
  opacity: 0;
  writing-mode: vertical-rl;
  animation: fadeInScroll 1s forwards 2s;
  bottom: 40px;
  left: calc(35vh + 60px);
}
.customHeroP2_scroll::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, white, rgba(255, 255, 255, 0));
  animation: scrollLine 2s infinite cubic-bezier(0.25, 0.46, 0.45, 0.94);
  margin-top: 15px;
}
@keyframes scrollLine {
  0% {
    transform: translate(-50%, -10px);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  100% {
    transform: translate(-50%, 20px);
    opacity: 0;
  }
}
@keyframes fadeInScroll {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 0.8;
    transform: translateY(0);
  }
}
.customHeroP2_content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: none !important;
  box-sizing: border-box !important;
  padding-left: 5vw !important;
  padding-right: 5vw !important;
  display: flex;
  justify-content: flex-end;
}
.customHeroP2_copyBox {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  margin-top: 25vh;
  padding-right: 10px;
}
.customHeroP2_copyBox_inner {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  transform-origin: center right;
  opacity: 0;
  animation: fadeInRightP2 1s cubic-bezier(0.25, 0.8, 0.25, 1) 2.5s forwards;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.customHeroP2_copyBox_inner:hover {
  transform: scale(1.05);
  cursor: pointer;
}
.customHeroP2_copyBox_inner a {
  text-decoration: none;
}
.customHeroP2_catchphrase {
  font-family: "Noto Serif JP", serif;
  font-size: 60px;
  color: #FFFFFF;
  font-weight: 400;
  margin-bottom: 24px;
  line-height: 1.2;
  text-align: right;
  margin-right: -0.8em;
}
@keyframes fadeInRightP2 {
  0% {
    opacity: 0;
    transform: translateX(30px) scale(1);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}
.customHeroP2_logo {
  margin-bottom: 20px;
}
.customHeroP2_logo img {
  max-width: 500px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.8));
}
.customHeroP2_text {
  font-family: "Noto Serif JP", serif;
  color: #ffffff;
  font-size: 0.95rem;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9);
  opacity: 0.85;
  margin-top: 0;
}
@media (max-width: 991px) {
  .customHeroP2 {
    justify-content: center;
  }
  .customHeroP2_content {
    justify-content: center;
    padding-right: 0;
  }
  .customHeroP2_copyBox {
    text-align: center;
    padding: 0 20px;
    margin-top: 15vh;
  }
  .customHeroP2_catchphrase {
    font-size: 40px;
    margin-right: 0;
  }
}
@media (max-width: 575px) {
  .customHeroP2 {
    height: 80vh;
    min-height: 400px;
  }
  .customHeroP2_copyBox {
    margin-top: calc(25vh - 8px);
    align-items: center;
    text-align: center;
  }
  .customHeroP2_logo img {
    max-width: 200px;
  }
  .customHeroP2_catchphrase {
    display: none;
  }
  .customHeroP2_text {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
  }
  .customHeroP2_scroll {
    left: calc(35vh + 30px);
    bottom: 20px;
  }
  .customHeroP2_bgLineart {
    width: 100%;
    left: 0;
  }
}

.mega-menu-overlay h1, .mega-menu-overlay h2, .mega-menu-overlay h3, .mega-menu-overlay h4, .mega-menu-overlay h5, .mega-menu-overlay h6 {
  all: unset;
  display: block;
}

.mega-menu-overlay {
  position: fixed;
  top: 144px;
  left: 0;
  width: 100vw;
  z-index: 999;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  background-color: #222222;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.mega-menu-overlay.is-visible {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}

body.admin-bar .mega-menu-overlay {
  top: calc(144px + 32px);
}

.mega-menu-panel {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 30px 0;
  background: transparent;
  display: none;
}
.mega-menu-panel.is-active {
  display: block;
}

.mega-menu-inner {
  max-width: none;
  margin: 0;
  padding-left: 10vw;
  padding-right: 5vw;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.mega-menu-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mega-menu-section-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 1.2;
  color: #ffffff;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  letter-spacing: 0.02em;
  text-decoration: none !important;
  display: block;
  width: fit-content;
  transition: transform 0.3s ease;
}
.mega-menu-section-title::first-letter {
  color: #D92884;
}
.mega-menu-section-title:hover {
  transform: scale(1.02);
}

.mega-menu-page-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 32px;
  color: #ffffff;
  text-decoration: none !important;
  width: fit-content;
  transition: transform 0.3s ease, color 0.3s ease;
}
.mega-menu-page-link::after, .mega-menu-page-link::before {
  display: none !important;
}
.mega-menu-page-link .icon-arrow {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}
.mega-menu-page-link:hover {
  color: #D92884;
  transform: scale(1.02);
}
.mega-menu-page-link:hover .icon-arrow {
  transform: translateX(4px);
}

.mega-menu-panel[data-panel=news] .mega-menu-inner {
  flex-direction: row;
  align-items: flex-start;
  gap: 8vw;
}

.mega-menu-cards {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.mega-menu-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-decoration: none !important;
  color: #ffffff !important;
  width: 240px;
  flex-shrink: 0;
  box-shadow: 0px 4px 30px rgba(80, 75, 75, 0.15);
  border-radius: 4px;
  background: transparent;
}
.mega-menu-card:hover {
  color: #ffffff !important;
}
.mega-menu-card:hover .mega-menu-card-thumb img {
  transform: scale(1.08);
}
.mega-menu-card:hover .mega-menu-circle-arrow {
  background-color: #D92884;
  border-color: #D92884;
}

.mega-menu-card-thumb {
  width: 240px;
  height: 136px;
  border-radius: 4px;
  overflow: hidden;
  background: #444;
  position: relative;
}
.mega-menu-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.mega-menu-card-thumb--white-bg {
  background: #ffffff;
}
.mega-menu-card-thumb--white-bg img {
  object-fit: contain;
  padding: 8px;
}
.mega-menu-card-thumb--transparent-art {
  background: #ffffff;
}
.mega-menu-card-thumb--transparent-art img {
  object-fit: contain;
  object-position: top center;
}
.mega-menu-card-thumb.mega-menu-card--large:not(.mega-menu-card-thumb--square) {
  width: 260px;
  height: 148px;
}
.mega-menu-card-thumb--square {
  width: 320px;
  height: 320px;
}
.mega-menu-card-thumb--square img {
  object-fit: cover !important;
  object-position: center center;
}

.mega-menu-card.mega-menu-card--large {
  width: 260px;
}

.mega-menu-card.mega-menu-card-thumb--square {
  width: 320px;
}

.mega-menu-card-caption {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 4px;
}

.mega-menu-card-label {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.4;
  color: #ffffff;
  white-space: nowrap;
}

.mega-menu-circle-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #ffffff;
  font-size: 11px;
  color: #ffffff;
  flex-shrink: 0;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.mega-menu-list-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mega-menu-list-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #ffffff;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  position: relative;
  padding-left: 16px;
  display: block;
  text-decoration: none !important;
  transition: color 0.3s ease;
}
.mega-menu-list-title::before {
  content: "";
  display: block;
  width: 8px;
  height: 4px;
  background: #D92884;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

a.mega-menu-list-title:hover {
  color: #D92884;
}

.mega-menu-bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mega-menu-bullet-list li {
  position: relative;
  padding-left: 16px;
  font-size: 12px;
  line-height: 1.5;
  border: none !important;
  background: transparent !important;
  margin: 0 !important;
}
.mega-menu-bullet-list li::before {
  content: "・";
  display: inline-block;
  color: #ffffff;
  background: none;
  position: absolute;
  left: 0;
  top: 0;
  width: auto;
  height: auto;
}
.mega-menu-bullet-list li a {
  color: #ffffff !important;
  text-decoration: none !important;
  background: transparent !important;
  font-size: 12px;
  transition: color 0.3s ease;
}
.mega-menu-bullet-list li a:hover {
  color: #D92884 !important;
}

.mega-menu-news-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mega-menu-card.mega-menu-card-thumb--transparent-art,
.mega-menu-card.mega-menu-card-thumb--white-bg {
  background: transparent !important;
}

#mobile-menu-overlay {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100vw;
  height: calc(100vh - 80px);
  background-color: #222222;
  z-index: 999;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 24px;
}
#mobile-menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mobile-nav-list > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 16px;
}
.mobile-nav-list > li .mobile-nav-top-level {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-nav-list > li .mobile-nav-top-level a {
  text-decoration: none;
  color: #ffffff !important;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  transition: color 0.3s ease;
}
.mobile-nav-list > li .mobile-nav-top-level a:hover {
  color: #D92884 !important;
}
.mobile-nav-list > li .mobile-toggle-btn {
  background: none;
  border: none;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: relative;
  padding: 0;
  margin-right: -10px;
}
.mobile-nav-list > li .mobile-toggle-btn::before, .mobile-nav-list > li .mobile-toggle-btn::after {
  content: "";
  position: absolute;
  background-color: #D92884;
  transition: transform 0.3s ease;
}
.mobile-nav-list > li .mobile-toggle-btn::before {
  width: 2px;
  height: 16px;
}
.mobile-nav-list > li .mobile-toggle-btn::after {
  width: 16px;
  height: 2px;
}
.mobile-nav-list > li.is-expanded .mobile-toggle-btn::before {
  transform: rotate(90deg);
  opacity: 0;
}

.mobile-sub-menu {
  display: none;
  padding-top: 16px;
  padding-left: 16px;
  list-style: none;
  margin: 0;
}
.mobile-sub-menu li {
  margin-bottom: 12px;
}
.mobile-sub-menu li:last-child {
  margin-bottom: 0;
}
.mobile-sub-menu li a {
  text-decoration: none;
  color: #ffffff !important;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}
.mobile-sub-menu li a::before {
  content: "・";
  color: #ffffff;
}
.mobile-sub-menu li a:hover {
  color: #D92884;
}

.footer-wrapper {
  font-family: "Noto Sans JP", sans-serif;
  color: #ffffff;
}

.footer-cta {
  background-color: #474448;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 100px;
  width: 100%;
}
@media (max-width: 991.98px) {
  .footer-cta {
    padding: 64px 24px;
  }
}

.footer-cta-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 48px;
  width: 100%;
  max-width: 1184px;
}
@media (max-width: 991.98px) {
  .footer-cta-inner {
    gap: 32px;
  }
}

.footer-cta-title {
  all: unset;
  display: block;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 700 !important;
  font-size: 32px !important;
  line-height: 1.2 !important;
  color: #FFFFFF !important;
  margin: 0 0 16px 0 !important;
  text-align: center !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
}
.footer-cta-title::before, .footer-cta-title::after {
  display: none !important;
}
@media (max-width: 991.98px) {
  .footer-cta-title {
    font-size: 24px !important;
    margin: 0 0 12px 0 !important;
  }
}

.footer-cta-subtitle {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.4;
  color: #FFFFFF;
  margin: 0;
  text-align: center;
}
@media (max-width: 991.98px) {
  .footer-cta-subtitle {
    font-size: 14px;
  }
}

.footer-cta-buttons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 32px;
  width: 100%;
}
@media (max-width: 991.98px) {
  .footer-cta-buttons {
    flex-direction: column;
    gap: 16px;
  }
}

.footer-cta-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  min-width: 280px;
  min-height: 48px;
  border-radius: 30px;
  text-decoration: none !important;
  transition: transform 0.3s ease, filter 0.3s ease;
}
@media (max-width: 991.98px) {
  .footer-cta-btn {
    width: 100%;
    min-width: 100%;
  }
}
.footer-cta-btn:hover {
  transform: translateY(-2px);
  filter: brightness(0.9);
}

.footer-cta-btn--consult {
  background: #D4A2E8;
}

.footer-cta-btn--pictura {
  background: #D92884;
}

.footer-cta-btn-text {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  color: #FFFFFF;
}
@media (max-width: 991.98px) {
  .footer-cta-btn-text {
    font-size: 14px;
  }
}

.footer-sitemap {
  background: #333333;
  padding: 72px 100px 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 991.98px) {
  .footer-sitemap {
    padding: 64px 24px 32px;
  }
}

.footer-sitemap-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
  max-width: 1174px;
}

.footer-sitemap-grid {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  gap: 48px;
}
@media (max-width: 991.98px) {
  .footer-sitemap-grid {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }
}

.footer-sitemap-left {
  display: flex;
  flex-direction: column;
  gap: 40px;
  flex: 1;
}
@media (max-width: 991.98px) {
  .footer-sitemap-left {
    gap: 32px;
  }
}

.footer-menus-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}
@media (max-width: 991.98px) {
  .footer-menus-row {
    flex-direction: column;
    gap: 24px;
  }
}

.footer-menu-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.footer-menu-title {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  color: #FFFFFF;
  text-decoration: none !important;
  transition: color 0.3s ease;
}
.footer-menu-title:hover {
  color: #D92884;
}

.footer-sub-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}
.footer-sub-menu li {
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  background: transparent !important;
}
.footer-sub-menu a {
  display: flex;
  align-items: flex-start;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.5;
  color: #FFFFFF;
  text-decoration: none !important;
  transition: color 0.3s ease;
}
.footer-sub-menu a::before {
  content: "・";
  margin-right: 2px;
  color: #FFFFFF;
}
.footer-sub-menu a:hover {
  color: #D92884;
}

.footer-sitemap-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 12px;
}
@media (max-width: 991.98px) {
  .footer-sitemap-right {
    align-items: flex-start;
  }
}

.footer-logo-wrap {
  margin-bottom: 8px;
}

.footer-logo {
  width: 240px;
  height: auto;
}

.footer-social-partner {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}
@media (max-width: 991.98px) {
  .footer-social-partner {
    flex-wrap: wrap;
  }
}

.footer-social-icons {
  display: flex;
  gap: 12px;
}
.footer-social-icons a {
  display: block;
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}
.footer-social-icons a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.footer-social-icons a:hover {
  transform: scale(1.1);
}

.footer-partner-logo img {
  width: 90px;
  height: auto;
  object-fit: contain;
}

.footer-legal {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
}

.footer-legal-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-legal-links a {
  font-weight: 500;
  font-size: 13px;
  line-height: 1.5;
  color: #FFFFFF;
  text-decoration: none !important;
  transition: color 0.3s ease;
}
.footer-legal-links a:hover {
  color: #D92884;
}

.footer-copyright p {
  font-weight: 500;
  font-size: 13px;
  line-height: 1.5;
  color: #FFFFFF;
  margin: 0;
  text-align: center;
}

.page-about-main {
  width: 100%;
  max-width: 1176px;
  margin: 0 auto 120px auto;
  box-sizing: border-box;
}
@media (max-width: 1224px) and (min-width: 768px) {
  .page-about-main {
    padding: 0 24px;
  }
}
@media (max-width: 991.98px) {
  .page-about-main {
    padding: 0;
  }
}

.about-intro {
  margin-bottom: 80px;
}
.about-intro p {
  font-size: 16px;
  line-height: 2;
  color: #000000;
  margin: 0;
  padding-left: 0;
}
@media (max-width: 991.98px) {
  .about-intro p {
    padding-left: 24px;
  }
}

.about-toc {
  margin-bottom: 120px;
}

.about-section {
  margin-bottom: 120px;
}

.about-philosophy-banner-wrap {
  position: relative;
  background-color: #C0C0C5;
  background-image: none;
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  margin-top: 80px;
  width: 100%;
}
.about-philosophy-banner-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 100%;
  width: 50vw;
  background: inherit;
}

.about-philosophy-banner {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 48px;
  width: 100%;
  max-width: 1154px;
  margin: 0 auto;
}
@media (max-width: 991.98px) {
  .about-philosophy-banner {
    flex-direction: column;
    padding: 0 24px;
  }
}
.about-philosophy-banner__left {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  width: 528px;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}
.about-philosophy-banner__left:hover {
  opacity: 0.7;
}
@media (max-width: 991.98px) {
  .about-philosophy-banner__left {
    width: 100%;
  }
}
.about-philosophy-banner__left .line-rect {
  width: 24px;
  height: 8px;
  background: #FFFFFF;
  flex-shrink: 0;
}
.about-philosophy-banner__left .banner-title {
  font-size: 40px;
  font-weight: 700;
  color: #FFFFFF;
}
@media (max-width: 991.98px) {
  .about-philosophy-banner__left .banner-title {
    font-size: 28px;
  }
}
.about-philosophy-banner__left .c-circle-arrow {
  margin-left: auto;
}
.about-philosophy-banner__right {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  max-width: 578px;
}
.about-philosophy-banner__right .sep-line {
  width: 100%;
  height: 2px;
  background: #FFFFFF;
}
.about-philosophy-banner__right .philosophy-link {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 32px 0 24px 0;
  gap: 10px;
  text-decoration: none;
  color: #FFFFFF;
  transition: opacity 0.3s ease;
}
.about-philosophy-banner__right .philosophy-link:first-child {
  padding-top: 0;
}
@media (max-width: 991.98px) {
  .about-philosophy-banner__right .philosophy-link {
    padding: 24px 0 16px 0;
  }
}
.about-philosophy-banner__right .philosophy-link:hover {
  opacity: 0.7;
}
.about-philosophy-banner__right .philosophy-link .line-rect {
  width: 16px;
  height: 8px;
  background: #FFFFFF;
  flex-shrink: 0;
}
.about-philosophy-banner__right .philosophy-link .text {
  font-size: 24px;
  font-weight: 700;
  color: #FFFFFF;
}
@media (max-width: 991.98px) {
  .about-philosophy-banner__right .philosophy-link .text {
    font-size: 18px;
  }
}
.about-philosophy-banner__right .philosophy-link .arrow {
  margin-left: auto;
  width: 26px;
  height: 26px;
  border: 2px solid #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
}
.about-philosophy-banner__right .philosophy-link .arrow::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 2px solid #FFFFFF;
  border-right: 2px solid #FFFFFF;
  transform: rotate(45deg);
  margin-left: -1.5px;
}

.about-company {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 48px;
}
@media (max-width: 991.98px) {
  .about-company {
    flex-direction: column;
    padding: 0 24px;
  }
}
.about-company__logo {
  width: 200px;
  flex-shrink: 0;
  margin-right: 24px;
}
.about-company__logo img {
  width: 100%;
  height: auto;
}
.about-company__table {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 856px;
  margin-left: auto;
  gap: 0;
  position: relative;
  border-top: 2px solid #DCD5DB;
}
.about-company__table::before {
  content: "";
  position: absolute;
  left: 0;
  top: -2px;
  width: 80px;
  height: 2px;
  background: #D92884;
  border-radius: 0 30px 30px 0;
}

.tbl-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 24px 16px;
  gap: 56px;
  border-bottom: 1px solid #DCD5DB;
}
@media (max-width: 991.98px) {
  .tbl-row {
    flex-direction: column;
    gap: 12px;
    padding: 16px;
  }
}
.tbl-row.line-top {
  border-top: 1px solid #DCD5DB;
}

.tbl-th {
  width: 120px;
  font-weight: 700;
  font-size: 20px;
  color: #000000;
  flex-shrink: 0;
}
@media (max-width: 991.98px) {
  .tbl-th {
    font-size: 16px;
    width: 100%;
  }
}

.tbl-td {
  font-weight: 400;
  font-size: 20px;
  color: #000000;
  line-height: 1.6;
  flex-grow: 1;
}
@media (max-width: 991.98px) {
  .tbl-td {
    font-size: 16px;
  }
}
.tbl-td.t-address {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.tbl-td .directors {
  display: flex;
  gap: 24px;
}
.tbl-td .directors .d-roles,
.tbl-td .directors .d-names {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.google-map-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background: #D92884;
  border-radius: 30px;
  color: #FFFFFF !important;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none !important;
  transition: opacity 0.3s ease;
}
.google-map-btn:hover {
  opacity: 0.8;
}
.google-map-btn .map-icon {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #FFFFFF;
  border-right: 2px solid #FFFFFF;
  transform: rotate(45deg);
  margin-left: -2px;
  margin-left: 8px;
}

.about-bases-map {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 992.98px) {
  .about-bases-map {
    display: block;
  }
}
@media (max-width: 991.98px) {
  .about-bases-map {
    width: 100%;
    margin-left: 0;
    overflow: visible;
  }
}
@media (min-width: 992.98px) {
  .about-bases-map__bg {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
  }
}
@media (max-width: 991.98px) {
  .about-bases-map__bg {
    position: static;
    aspect-ratio: 4/3;
    overflow: hidden;
  }
}
.about-bases-map__bg .map-bg {
  width: 100%;
  height: 100%;
  display: block;
}
@media (min-width: 992.98px) {
  .about-bases-map__bg .map-bg {
    object-fit: contain;
    object-position: right top;
  }
}
@media (max-width: 991.98px) {
  .about-bases-map__bg .map-bg {
    object-fit: contain;
    object-position: center center;
    background-color: #f5f5f5;
  }
}
.about-bases-map__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 80px;
  box-sizing: border-box;
}
@media (min-width: 992.98px) {
  .about-bases-map__content {
    width: 55%;
    padding-left: max(24px, calc((100vw - 1176px) / 2));
    padding-right: 40px;
    padding-top: 72px;
    padding-bottom: 72px;
  }
}
@media (max-width: 991.98px) {
  .about-bases-map__content {
    width: 100%;
    padding: 40px 24px;
    gap: 48px;
  }
}
.about-bases-map .base-pin {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.about-bases-map .base-logo {
  max-height: 48px;
  width: auto;
  object-fit: contain;
  margin-bottom: 4px;
}
.about-bases-map .base-info {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  color: #000000;
}
.about-bases-map .base-info strong {
  font-weight: 700;
}

.override-h2 {
  padding-left: 0;
}
@media (max-width: 991.98px) {
  .override-h2 {
    padding-left: 24px;
    padding-right: 24px;
  }
}

.fp-sections {
  padding-bottom: 72px;
}

.fp-section {
  padding: 72px 0;
}
@media (max-width: 991.98px) {
  .fp-section {
    padding: 40px 0;
  }
}
.fp-section__inner {
  max-width: 1176px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (max-width: 991.98px) {
  .fp-section__inner {
    padding: 0 24px;
  }
}
.fp-section__title-link {
  text-decoration: none !important;
  color: inherit;
  display: block;
  transition: opacity 0.2s ease;
}
.fp-section__title-link:hover {
  opacity: 0.75;
}
.fp-section__title-link .c-custom-h2__en,
.fp-section__title-link .c-custom-h2__jp-wrap .title {
  color: inherit;
}

.fp-bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}
@media (max-width: 991.98px) {
  .fp-bento {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.fp-bento__left, .fp-bento__right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.fp-bento__img-wrap {
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}
.fp-bento__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.fp-bento__img-wrap:hover img {
  transform: scale(1.04);
}
.fp-bento__img-wrap--main {
  flex: 1;
  min-height: 400px;
}
@media (max-width: 991.98px) {
  .fp-bento__img-wrap--main {
    min-height: 260px;
  }
}
.fp-bento__img-wrap--sub {
  aspect-ratio: 512/384;
}
.fp-bento__dark-box {
  background: #484848;
  border-radius: 15px;
  padding: 24px;
  color: #ffffff;
  flex: 1;
}
.fp-bento__dark-box-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.fp-bento__dark-box-rect {
  width: 24px;
  height: 8px;
  background: #D92884;
  flex-shrink: 0;
}
.fp-bento__dark-box-title {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
}
.fp-bento__dark-box-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}
.fp-bento__dark-box-list li {
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.5;
}
.fp-bento__dark-box-list li:not(:last-child)::after {
  content: " /";
  opacity: 0.5;
  margin-left: 8px;
}

.fp-what-desc {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
  color: #000000;
  max-width: 1176px;
  margin: 0 auto 24px auto;
}
@media (max-width: 991.98px) {
  .fp-what-desc {
    margin-bottom: 16px;
  }
}

.fp-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
@media (max-width: 991.98px) {
  .fp-2col {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.fp-2col__left {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.fp-2col__right {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 24px;
}
.fp-2col__img-wrap {
  border-radius: 15px;
  overflow: hidden;
  aspect-ratio: 528/269;
}
.fp-2col__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.fp-2col__toc {
  display: flex;
  flex-direction: column;
}
.fp-2col__toc .c-page-link {
  width: 100%;
}
.fp-2col__catch {
  font-family: "Noto Serif JP", serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
  color: #000000;
  margin: 0;
}
@media (max-width: 991.98px) {
  .fp-2col__catch {
    font-size: 24px;
  }
}
.fp-2col__desc {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
  color: #000000;
  margin: 0;
}

.fp-news {
  display: grid;
  grid-template-columns: 1fr 144px;
  gap: 72px;
  align-items: start;
}
@media (max-width: 991.98px) {
  .fp-news {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.fp-news__list {
  display: flex;
  flex-direction: column;
}
.fp-news__empty {
  font-size: 16px;
  color: #635D5D;
  padding: 32px 0;
}
.fp-news__category {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fp-news-cat__item {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none !important;
  color: #000000;
  font-size: 14px;
  font-weight: 700;
  transition: opacity 0.2s ease;
}
.fp-news-cat__item:hover {
  opacity: 0.7;
}
.fp-news-cat__item:hover .fp-news-cat__dot {
  background: #D92884;
}
.fp-news-cat__item span {
  flex: 1;
}
.fp-news-cat__item::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-top: 2px solid #635D5D;
  border-right: 2px solid #635D5D;
  transform: rotate(45deg);
  margin-left: -1.5px;
  flex-shrink: 0;
}

.fp-news-cat__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #D9D9D9;
  flex-shrink: 0;
  transition: background 0.2s ease;
}

.p-news-archive {
  max-width: 1176px;
  margin: 0 auto;
  padding: 0 24px 72px;
}

.p-news-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.p-news-filter__btn {
  display: inline-block;
  padding: 5px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  color: #ffffff;
  background: #da9ec5;
  transition: background 0.2s ease;
  white-space: nowrap;
}
.p-news-filter__btn:hover, .p-news-filter__btn.is-active {
  background: #D92884;
}

.p-news-list {
  margin-bottom: 32px;
}

.p-news-empty {
  color: #635D5D;
  font-size: 15px;
  padding: 40px 0;
  text-align: center;
}

.p-news-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  padding: 40px 0 72px;
}
.p-news-pagination__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 8px;
  border: 1px solid #DCD5DB;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  color: #000000;
  background: #ffffff;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}
.p-news-pagination__btn:hover {
  border-color: #D92884;
  color: #D92884;
}
.p-news-pagination__btn.is-current {
  background: #D92884;
  border-color: #D92884;
  color: #ffffff;
  pointer-events: none;
}
.p-news-pagination__btn--arrow {
  font-size: 11px;
  letter-spacing: -1px;
}

.p-single-news {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px 72px;
}
.p-single-news__title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.6;
  margin: 0 0 24px;
}
@media (max-width: 991.98px) {
  .p-single-news__title {
    font-size: 18px;
  }
}
.p-single-news__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.p-single-news__date {
  font-size: 14px;
  font-weight: 500;
  color: #635D5D;
}
.p-single-news__thumbnail {
  margin-bottom: 40px;
}
.p-single-news__thumbnail-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}
.p-single-news__body {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 40px;
}
.p-single-news__body p {
  margin-bottom: 24px;
}
.p-single-news__body h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 40px 0 24px;
}
.p-single-news__body h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 32px 0 16px;
}
.p-single-news__body ul,
.p-single-news__body ol {
  padding-left: 32px;
  margin-bottom: 24px;
}
.p-single-news__body li {
  margin-bottom: 8px;
}
.p-single-news__body img {
  max-width: 100%;
  height: auto;
}
.p-single-news__body a {
  color: #D92884;
  text-decoration: underline;
}
@media (max-width: 991.98px) {
  .p-single-news__body {
    font-size: 15px;
  }
}
.p-single-news__divider {
  border: none;
  border-top: 1px solid #DCD5DB;
  margin: 40px 0;
}
.p-single-news__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 40px;
}
.p-single-news__nav a, .p-single-news__nav__disabled {
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  color: #000000;
}
.p-single-news__nav a {
  transition: color 0.2s ease;
}
.p-single-news__nav a:hover {
  color: #D92884;
}
.p-single-news__nav__disabled {
  color: #635D5D;
  cursor: default;
}
.p-single-news__nav__prev, .p-single-news__nav__next {
  flex: 1;
}
.p-single-news__nav__prev {
  text-align: left;
}
.p-single-news__nav__next {
  text-align: right;
}
.p-single-news__nav__list {
  flex-shrink: 0;
}
.p-single-news__nav__list-link {
  font-weight: 700;
}
@media (max-width: 991.98px) {
  .p-single-news__nav {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  .p-single-news__nav__prev, .p-single-news__nav__next {
    text-align: center;
  }
}
.p-single-news__categories {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 24px;
}
.p-single-news__related {
  border-top: 1px solid #DCD5DB;
  padding-top: 40px;
  margin-bottom: 40px;
}
.p-single-news__related-title {
  font-size: 16px;
  font-weight: 700;
  color: #635D5D;
  margin: 0 0 24px;
  letter-spacing: 0.05em;
}
.p-single-news__related-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.p-single-news__related-list article {
  border-bottom: 1px solid #DCD5DB;
}

.page-philosophy-main {
  width: 100%;
  max-width: 1176px;
  margin: 0 auto 120px auto;
  box-sizing: border-box;
}
@media (max-width: 1224px) and (min-width: 768px) {
  .page-philosophy-main {
    padding: 0 24px;
  }
}
@media (max-width: 991.98px) {
  .page-philosophy-main {
    padding: 0;
  }
}

.philosophy-section {
  margin-bottom: 120px;
}

.philosophy-laser-section {
  margin-bottom: 120px;
}
.philosophy-laser-section .c-custom-h2 {
  margin-bottom: 72px;
}

.philosophy-laser-image-wrap {
  width: 100vw;
  margin-left: calc(-1 * (100vw - 100%) / 2);
  margin-right: calc((100vw - 1176px) / 2);
  max-width: calc(100vw - (100vw - 1176px) / 2);
  margin-bottom: 72px;
}
.philosophy-laser-image-wrap img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 1224px) {
  .philosophy-laser-image-wrap {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
  }
}
@media (max-width: 991.98px) {
  .philosophy-laser-image-wrap {
    margin-bottom: 40px;
  }
}

.philosophy-laser-text {
  font-size: 16px;
  line-height: 2;
  color: #000000;
  margin-bottom: 40px;
}
@media (max-width: 991.98px) {
  .philosophy-laser-text {
    padding: 0 24px;
  }
}

@media (max-width: 991.98px) {
  .philosophy-laser-cta {
    padding: 0 24px;
  }
}

.missions-section {
  margin-bottom: 120px;
}
.missions-section .c-custom-h2 {
  margin-bottom: 72px;
}

.c-mission-card {
  width: 720px;
  max-width: 100%;
  border: 4px solid #DCD5DB;
  border-radius: 20px;
  padding: 72px 72px 40px;
  box-sizing: border-box;
  background: #ffffff;
}
.c-mission-card:nth-child(even) {
  margin-left: auto;
}
.c-mission-card + .c-mission-card {
  margin-top: 72px;
}
.c-mission-card__label {
  font-size: 14px;
  font-weight: 900;
  color: #D92884;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.c-mission-card__title {
  font-size: 24px;
  font-weight: 700;
  color: #000000;
  line-height: 1.4;
  margin-bottom: 24px;
}
.c-mission-card__desc {
  font-size: 16px;
  line-height: 2;
  color: #000000;
  padding: 0 8px;
  margin-bottom: 40px;
}
@media (max-width: 991.98px) {
  .c-mission-card__desc {
    padding: 0;
  }
}
@media (max-width: 991.98px) {
  .c-mission-card {
    width: 100%;
    margin-left: 0 !important;
    padding: 40px 24px;
  }
  .c-mission-card:nth-child(even) {
    margin-left: 0 !important;
  }
  .c-mission-card + .c-mission-card {
    margin-top: 40px;
  }
}

.principles-section {
  margin-bottom: 120px;
}
.principles-section .c-custom-h2 {
  margin-bottom: 72px;
}

.principles-intro {
  font-size: 16px;
  line-height: 2;
  color: #000000;
  margin-bottom: 72px;
}
@media (max-width: 991.98px) {
  .principles-intro {
    padding: 0 24px;
    margin-bottom: 40px;
  }
}

.c-principle-item {
  border-top: 1px solid #DCD5DB;
  padding: 72px 0;
}
.c-principle-item:last-of-type {
  border-bottom: 1px solid #DCD5DB;
}
.c-principle-item__header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 24px;
}
.c-principle-item__label {
  font-size: 32px;
  font-weight: 700;
  color: #000000;
  line-height: 1;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  white-space: nowrap;
}
.c-principle-item__num {
  font-size: 48px;
  font-weight: 700;
  color: #D92884;
  line-height: 1;
  font-family: "Inter", "Noto Sans JP", sans-serif;
}
.c-principle-item__title {
  font-size: 24px;
  font-weight: 700;
  color: #000000;
  line-height: 1.3;
  margin-left: 16px;
}
@media (max-width: 991.98px) {
  .c-principle-item__title {
    font-size: 20px;
    margin-left: 0;
  }
}
.c-principle-item__desc {
  font-size: 16px;
  line-height: 2;
  color: #000000;
  margin-bottom: 40px;
}
@media (max-width: 991.98px) {
  .c-principle-item__desc {
    padding: 0 24px;
  }
}
@media (max-width: 991.98px) {
  .c-principle-item__cta {
    padding: 0 24px;
    display: block;
  }
}
@media (max-width: 991.98px) {
  .c-principle-item {
    padding: 40px 0;
  }
  .c-principle-item__header {
    flex-wrap: wrap;
    padding: 0 24px;
    gap: 8px;
  }
  .c-principle-item__label {
    font-size: 24px;
  }
  .c-principle-item__num {
    font-size: 36px;
  }
}

.principles-bottom-cta {
  display: flex;
  justify-content: center;
  margin-top: 72px;
}
@media (max-width: 991.98px) {
  .principles-bottom-cta {
    margin-top: 40px;
  }
}

.page-business-main {
  width: 100%;
  max-width: 1176px;
  margin: 0 auto 120px auto;
  box-sizing: border-box;
}
@media (max-width: 1224px) and (min-width: 768px) {
  .page-business-main {
    padding: 0 24px;
  }
}
@media (max-width: 991.98px) {
  .page-business-main {
    padding: 0;
  }
}

.business-area-section {
  margin-bottom: 120px;
}
.business-area-section .c-custom-h2 {
  margin-bottom: 72px;
}

.business-area-svg-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 991.98px) {
  .business-area-svg-wrap {
    padding: 0 24px;
  }
}
.business-area-svg-wrap svg {
  width: 100%;
  max-width: 700px;
  height: auto;
}
.business-area-svg-wrap .bvenn-circle {
  cursor: pointer;
}
.business-area-svg-wrap .bvenn-circle circle {
  transition: transform 0.25s ease;
  transform-box: fill-box;
  transform-origin: center;
}
.business-area-svg-wrap .bvenn-circle:hover circle {
  transform: scale(1.08);
}

.business-content-section {
  margin-bottom: 120px;
}
.business-content-section .c-custom-h2 {
  margin-bottom: 72px;
}

.business-content__image {
  width: 100%;
  margin-bottom: 72px;
}
.business-content__image img {
  width: 100%;
  height: auto;
  display: block;
}

.business-content__text {
  font-size: 16px;
  line-height: 2;
  color: #000000;
  margin-bottom: 72px;
}
@media (max-width: 991.98px) {
  .business-content__text {
    padding: 0 24px;
    font-size: 14px;
  }
}

.business-cta {
  display: flex;
  align-items: center;
  gap: 32px;
}
@media (max-width: 991.98px) {
  .business-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 24px;
    gap: 24px;
  }
}

.page-pictura-main {
  width: 100%;
  max-width: 1176px;
  margin: 0 auto 120px auto;
  box-sizing: border-box;
}
@media (max-width: 1224px) and (min-width: 768px) {
  .page-pictura-main {
    padding: 0 24px;
  }
}
@media (max-width: 991.98px) {
  .page-pictura-main {
    padding: 0;
  }
}

.pictura-hero {
  width: 100%;
  position: relative;
  margin-top: -144px;
}
@media (max-width: 991.98px) {
  .pictura-hero {
    margin-top: -80px;
  }
}
.pictura-hero__img-wrap {
  position: relative;
  width: 100%;
}
.pictura-hero__img {
  width: 100%;
  height: auto;
  display: block;
}
.pictura-hero__catchphrase {
  font-family: "Noto Serif JP", serif;
  position: absolute;
  top: 63%;
  left: max(24px, calc((100vw - 1176px) / 2));
  transform: translateY(-50%);
  max-width: 520px;
  box-sizing: border-box;
}
@media (max-width: 991.98px) {
  .pictura-hero__catchphrase {
    left: 24px;
    max-width: 80%;
  }
}
.pictura-hero__line {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.6;
  margin: 0;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}
@media (max-width: 991.98px) {
  .pictura-hero__line {
    font-size: 18px;
  }
}
.pictura-hero__brand {
  font-family: "Noto Serif JP", serif;
}
.pictura-hero__brand-a {
  color: #D92884;
}

.pictura-spec-section {
  margin-bottom: 120px;
}
.pictura-spec-section .c-spec-table-wrap {
  overflow-x: auto;
  margin-bottom: 72px;
}
@media (max-width: 991.98px) {
  .pictura-spec-section .c-spec-table-wrap {
    margin: 0 24px 72px;
  }
}
.pictura-spec-section .c-spec-table {
  min-width: 640px;
}
.pictura-spec-section .pictura-spec-note-mark {
  font-size: 11px;
  vertical-align: super;
  color: #D92884;
}

.pictura-spec-footnote {
  display: flex;
  align-items: flex-start;
  margin: -40px 0 72px;
  font-size: 14px;
  line-height: 2;
  color: #000000;
}
@media (max-width: 991.98px) {
  .pictura-spec-footnote {
    margin: -32px 24px 72px;
  }
}
.pictura-spec-footnote__mark {
  flex-shrink: 0;
  color: #D92884;
  font-weight: 700;
  margin-right: 4px;
}
.pictura-spec-footnote__content {
  flex: 1;
}

.pictura-scene {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}
@media (max-width: 991.98px) {
  .pictura-scene {
    flex-direction: column;
    gap: 32px;
    padding: 0 24px;
  }
}
.pictura-scene__left {
  flex: none;
  width: 420px;
  max-width: 60%;
}
@media (max-width: 991.98px) {
  .pictura-scene__left {
    width: 100%;
    max-width: 100%;
  }
}
.pictura-scene__list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pictura-scene__list li {
  font-size: 16px;
  line-height: 2;
  color: #000000;
  padding-left: 24px;
  position: relative;
}
.pictura-scene__list li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: #D92884;
}
.pictura-scene__cta {
  flex-shrink: 0;
  padding-top: 52px;
}

.pictura-gap-section {
  margin-bottom: 120px;
}

.pictura-gap-image {
  width: 100%;
  margin-bottom: 72px;
}
.pictura-gap-image img {
  width: 100%;
  height: auto;
  display: block;
}

.pictura-gap-text {
  font-size: 16px;
  line-height: 2;
  color: #000000;
  margin: 0 0 72px 0;
}
@media (max-width: 991.98px) {
  .pictura-gap-text {
    padding: 0 24px;
  }
}

.pictura-gap-cta {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 991.98px) {
  .pictura-gap-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 0 24px;
  }
}

.pictura-philosophy-section {
  margin-bottom: 120px;
}

.pictura-philosophy-visual {
  width: 100%;
  margin-bottom: 80px;
}
.pictura-philosophy-visual img {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.pictura-philosophy-block {
  margin-bottom: 80px;
}
.pictura-philosophy-block__text {
  font-size: 16px;
  line-height: 2;
  color: #000000;
  margin: 0 0 32px 0;
}
.pictura-philosophy-block--text-only .pictura-philosophy-block__content {
  max-width: 620px;
}
@media (max-width: 991.98px) {
  .pictura-philosophy-block--text-only .pictura-philosophy-block__content {
    padding: 0 24px;
  }
}
.pictura-philosophy-block--img-left {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
@media (max-width: 991.98px) {
  .pictura-philosophy-block--img-left {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .pictura-philosophy-block--img-left .pictura-philosophy-block__image {
    padding: 0 24px;
  }
  .pictura-philosophy-block--img-left .pictura-philosophy-block__content {
    padding: 0 24px;
  }
}
.pictura-philosophy-block--img-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
@media (max-width: 991.98px) {
  .pictura-philosophy-block--img-right {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .pictura-philosophy-block--img-right .pictura-philosophy-block__content {
    order: 1;
    padding: 0 24px;
  }
  .pictura-philosophy-block--img-right .pictura-philosophy-block__image {
    order: 2;
    padding: 0 24px;
  }
}
.pictura-philosophy-block__image img {
  width: 100%;
  height: auto;
  display: block;
}

.pictura-philosophy-keywords {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pictura-philosophy-keywords li {
  font-size: 16px;
  font-weight: 700;
  color: #D92884;
  padding-left: 16px;
  position: relative;
}
.pictura-philosophy-keywords li::before {
  content: "— ";
}

.pictura-value-section {
  margin-bottom: 120px;
}

.pictura-value-desc {
  font-size: 16px;
  line-height: 2;
  color: #000000;
  margin-bottom: 72px;
}
@media (max-width: 991.98px) {
  .pictura-value-desc {
    padding: 0 24px;
  }
}

.pictura-value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
}
@media (max-width: 991.98px) {
  .pictura-value-grid {
    grid-template-columns: 1fr;
    gap: 80px;
    padding: 0 24px;
  }
}

.pictura-value-item {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto auto;
  column-gap: 16px;
  row-gap: 32px;
  align-items: start;
}
.pictura-value-item--01 {
  align-self: start;
}
.pictura-value-item--02 {
  margin-top: 220px;
}
@media (max-width: 991.98px) {
  .pictura-value-item--02 {
    margin-top: 0;
  }
}
.pictura-value-item__num {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #D92884;
  line-height: 1;
  grid-column: 1;
  grid-row: 1;
  padding-top: 6px;
}
.pictura-value-item__title {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 44px;
  font-weight: 700;
  color: #000000;
  margin: 0;
  line-height: 1.1;
  grid-column: 2;
  grid-row: 1;
}
@media (max-width: 991.98px) {
  .pictura-value-item__title {
    font-size: 32px;
  }
}
.pictura-value-item__text {
  font-size: 16px;
  line-height: 2;
  color: #000000;
  margin: 0;
  grid-column: 1/-1;
  grid-row: 2;
}
.pictura-value-item__image {
  grid-column: 1/-1;
  grid-row: 3;
}
.pictura-value-item__image img {
  width: 100%;
  height: auto;
  display: block;
}

.pictura-integration-section {
  margin-bottom: 120px;
}

.pictura-integration-header {
  position: relative;
  width: 100vw;
  margin-left: calc(-1 * (100vw - 100%) / 2);
  max-width: calc(100vw - (100vw - 1176px) / 2);
  margin-bottom: 72px;
}
.pictura-integration-header__img {
  width: 100%;
  height: auto;
  display: block;
}
.pictura-integration-header__overlay {
  position: absolute;
  top: 72px;
  left: max(24px, calc((100vw - 1176px) / 2));
  max-width: 1176px;
  width: 100%;
  padding-right: 24px;
  box-sizing: border-box;
}
@media (max-width: 991.98px) {
  .pictura-integration-header__overlay {
    top: 24px;
    left: 24px;
  }
}
@media (max-width: 1224px) {
  .pictura-integration-header {
    width: 100%;
    margin-left: 0;
    max-width: 100%;
  }
}

.pictura-integration-desc {
  font-size: 16px;
  line-height: 2;
  color: #000000;
  margin: 0 0 72px 0;
}
@media (max-width: 991.98px) {
  .pictura-integration-desc {
    padding: 0 24px;
  }
}

.pictura-integration-case-image {
  width: 100%;
  margin: 40px 0;
}
.pictura-integration-case-image img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 991.98px) {
  .pictura-integration-case-image {
    padding: 0 24px;
  }
}

.pictura-benefits-section {
  margin-bottom: 120px;
}

.pictura-benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: end;
}
@media (max-width: 991.98px) {
  .pictura-benefits-grid {
    grid-template-columns: 1fr;
    gap: 80px;
  }
}

.pictura-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 72px;
}
@media (max-width: 991.98px) {
  .pictura-benefits-list {
    padding: 0 24px;
    gap: 40px;
  }
}
.pictura-benefits-list__item {
  padding-bottom: 40px;
  border-bottom: 1px solid #DCD5DB;
}
.pictura-benefits-list__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.pictura-benefits-list__ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pictura-benefits-list__ul li {
  font-size: 16px;
  line-height: 2;
  color: #000000;
  padding-left: 24px;
  position: relative;
}
.pictura-benefits-list__ul li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: #D92884;
}
.pictura-benefits-list__text {
  font-size: 16px;
  line-height: 2;
  color: #000000;
  margin: 0;
}

.pictura-benefits-cta {
  margin-top: 72px;
  display: flex;
  justify-content: center;
}
@media (max-width: 991.98px) {
  .pictura-benefits-cta {
    padding: 0 24px;
  }
}

.pictura-benefits-before-after {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
@media (max-width: 991.98px) {
  .pictura-benefits-before-after {
    padding: 0 24px;
  }
}
.pictura-benefits-before-after__img-wrap {
  width: 100%;
  position: relative;
}
.pictura-benefits-before-after__img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}
.pictura-benefits-before-after__label {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: #635D5D;
  text-align: center;
}
.pictura-benefits-before-after__arrow {
  width: 0;
  height: 0;
  border-left: 24px solid transparent;
  border-right: 24px solid transparent;
  border-top: 28px solid #D92884;
  margin: 8px 0;
  flex-shrink: 0;
}

.page-si-main {
  width: 100%;
  max-width: 1176px;
  margin: 0 auto 120px auto;
  box-sizing: border-box;
}
@media (max-width: 1224px) and (min-width: 768px) {
  .page-si-main {
    padding: 0 24px;
  }
}
@media (max-width: 991.98px) {
  .page-si-main {
    padding: 0;
    margin-bottom: 40px;
  }
}

.si-section {
  margin-bottom: 120px;
}
@media (max-width: 991.98px) {
  .si-section {
    padding: 0 24px;
    margin-bottom: 80px;
  }
}

.si-scope__content {
  display: flex;
  align-items: flex-start;
  gap: 72px;
}
@media (max-width: 991.98px) {
  .si-scope__content {
    flex-direction: column;
    gap: 32px;
  }
}
.si-scope__image {
  flex: 0 0 420px;
  max-width: 100%;
}
.si-scope__image img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 991.98px) {
  .si-scope__image {
    flex: none;
    width: 100%;
  }
}
.si-scope__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.si-scope__text p {
  margin: 0;
  font-size: 16px;
  line-height: 2;
}

.si-components .si-components-table tbody tr th {
  width: 240px;
}
@media (max-width: 991.98px) {
  .si-components .si-components-table tbody tr th {
    width: auto;
  }
}
.si-components__cta {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.si-feature__content {
  display: flex;
  align-items: center;
  gap: 72px;
}
@media (max-width: 991.98px) {
  .si-feature__content {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }
}
.si-feature__image {
  flex: 0 0 500px;
  max-width: 100%;
}
.si-feature__image img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 991.98px) {
  .si-feature__image {
    flex: none;
    width: 100%;
  }
}
.si-feature__right {
  flex: 1;
}
.si-feature__list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.si-feature__list li {
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
}
.si-feature__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 12px;
  height: 4px;
  background: #D92884;
}

.page-rd-main {
  width: 100%;
  max-width: 1176px;
  margin: 0 auto 120px auto;
  box-sizing: border-box;
}
@media (max-width: 1224px) and (min-width: 768px) {
  .page-rd-main {
    padding: 0 24px;
  }
}
@media (max-width: 991.98px) {
  .page-rd-main {
    padding: 0;
    margin-bottom: 40px;
  }
}

.rd-section {
  margin-bottom: 120px;
}
@media (max-width: 991.98px) {
  .rd-section {
    padding: 0 24px;
    margin-bottom: 80px;
  }
}

.rd-intro__desc {
  font-size: 16px;
  line-height: 2;
  color: #000000;
  margin-bottom: 72px;
}

.rd-intro__sub {
  border-left: 4px solid #DCD5DB;
  padding-left: 32px;
}
@media (max-width: 991.98px) {
  .rd-intro__sub {
    padding-left: 24px;
  }
}

.rd-intro__sub-title {
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 16px;
}

.rd-intro__sub-desc {
  font-size: 16px;
  line-height: 2;
  color: #000000;
  margin: 0;
}

.rd-workflow__cards {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rd-workflow__separator {
  width: 0;
  height: 0;
  border-left: 18px solid transparent;
  border-right: 18px solid transparent;
  border-top: 22px solid #D92884;
  margin: 32px 0;
  flex-shrink: 0;
}

.rd-workflow-card {
  width: 886px;
  max-width: 100%;
  border: 4px solid #DCD5DB;
  border-radius: 20px;
  box-sizing: border-box;
  background: #ffffff;
}
.rd-workflow-card__header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 40px 64px 24px;
}
@media (max-width: 991.98px) {
  .rd-workflow-card__header {
    padding: 32px 24px 16px;
  }
}
.rd-workflow-card__step {
  font-size: 24px;
  font-weight: 700;
  color: #D92884;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.rd-workflow-card__num {
  font-size: 32px;
  font-weight: 700;
  color: #D92884;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  line-height: 1;
}
.rd-workflow-card__title {
  font-size: 20px;
  font-weight: 700;
  color: #000000;
  margin: 0;
}
.rd-workflow-card__desc {
  padding: 0 80px 40px;
}
.rd-workflow-card__desc p {
  font-size: 16px;
  line-height: 2;
  color: #000000;
  margin: 0 0 24px;
}
.rd-workflow-card__desc p:last-child {
  margin-bottom: 0;
}
.rd-workflow-card__desc ul {
  margin: 16px 0 0;
  padding-left: 32px;
}
.rd-workflow-card__desc ul li {
  font-size: 16px;
  line-height: 2;
  color: #000000;
}
@media (max-width: 991.98px) {
  .rd-workflow-card__desc {
    padding: 0 24px 32px;
  }
}
.rd-workflow-card__cta {
  padding: 0 80px 40px;
}
@media (max-width: 991.98px) {
  .rd-workflow-card__cta {
    padding: 0 24px 32px;
  }
}
@media (max-width: 991.98px) {
  .rd-workflow-card {
    width: 100%;
  }
}

.rd-resources__desc {
  font-size: 16px;
  line-height: 2;
  color: #000000;
  margin-bottom: 72px;
}

.rd-resources__columns {
  display: flex;
  gap: 72px;
  align-items: flex-start;
}
@media (max-width: 991.98px) {
  .rd-resources__columns {
    flex-direction: column;
    gap: 40px;
  }
}

.rd-resource-col {
  flex: 1;
}
.rd-resource-col--right {
  padding-top: 200px;
}
@media (max-width: 991.98px) {
  .rd-resource-col--right {
    padding-top: 0;
  }
}

.rd-resource-item__label {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 16px;
}
.rd-resource-item__num {
  font-size: 13px;
  font-weight: 700;
  color: #D92884;
  font-family: "Inter", "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}
.rd-resource-item__title {
  font-size: 20px;
  font-weight: 700;
  color: #000000;
  margin: 0;
}
.rd-resource-item__sub {
  font-size: 16px;
  line-height: 2;
  color: #635D5D;
  margin: 0 0 32px;
}
.rd-resource-item__image img {
  width: 100%;
  height: auto;
  display: block;
}

.rd-casestudy__columns {
  display: flex;
  gap: 72px;
  align-items: flex-start;
  margin-bottom: 72px;
}
@media (max-width: 991.98px) {
  .rd-casestudy__columns {
    flex-direction: column;
    gap: 40px;
  }
}

.rd-casestudy__col-image {
  flex: 1;
}
.rd-casestudy__col-image img {
  width: 100%;
  height: auto;
  display: block;
}

.rd-casestudy__col-links {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.rd-casestudy__cta {
  display: flex;
  justify-content: center;
}

.page-cs-main {
  width: 100%;
  max-width: 1176px;
  margin: 0 auto 120px auto;
  box-sizing: border-box;
}
@media (max-width: 1224px) and (min-width: 768px) {
  .page-cs-main {
    padding: 0 24px;
  }
}
@media (max-width: 991.98px) {
  .page-cs-main {
    padding: 0;
    margin-bottom: 40px;
  }
}

.cs-section {
  margin-bottom: 120px;
}
@media (max-width: 991.98px) {
  .cs-section {
    padding: 0 24px;
    margin-bottom: 80px;
  }
}

.cs-solution-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 991.98px) {
  .cs-solution-cards {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.cs-solution-card {
  display: flex;
  flex-direction: column;
  border: 4px solid #DCD5DB;
  border-radius: 20px;
  padding: 40px 24px;
  text-decoration: none;
  color: #000000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cs-solution-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.cs-solution-card__header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 8px;
}
.cs-solution-card__num {
  font-family: "Inter", sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: #D92884;
  line-height: 1;
  flex-shrink: 0;
}
.cs-solution-card__name {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
}
.cs-solution-card__subtitle {
  font-size: 15px;
  color: #635D5D;
  text-align: center;
  margin: 8px 0 24px;
}
.cs-solution-card__image-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 24px;
  background-color: #D9D9D9;
}
.cs-solution-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cs-solution-card__content {
  flex: 1;
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 24px;
}
.cs-solution-card__tag-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}
.cs-solution-card__body-text {
  font-size: 16px;
  line-height: 2;
  color: #000000;
  margin: 0;
  padding-left: 16px;
}
.cs-solution-card__footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 24px;
}

.cs-solution-cta {
  display: flex;
  justify-content: center;
  margin-top: 72px;
}

.cs-why__desc {
  font-size: 16px;
  line-height: 2;
  color: #000000;
  margin: 0 0 72px;
}
@media (max-width: 991.98px) {
  .cs-why__desc {
    margin-bottom: 40px;
  }
}

.page-cs-detail-main {
  width: 100%;
  max-width: 1176px;
  margin: 0 auto 120px auto;
  box-sizing: border-box;
}
@media (max-width: 1224px) and (min-width: 768px) {
  .page-cs-detail-main {
    padding: 0 24px;
  }
}
@media (max-width: 991.98px) {
  .page-cs-detail-main {
    padding: 0;
    margin-bottom: 40px;
  }
}

.cs-detail-h1 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 16px;
  margin: 72px 0 80px;
}
.cs-detail-h1__rect {
  width: 24px;
  height: 8px;
  background-color: #D92884;
  flex-shrink: 0;
  align-self: center;
  margin-right: 8px;
}
.cs-detail-h1__prefix {
  font-family: "Inter", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #000000;
  letter-spacing: 0.03em;
  flex-shrink: 0;
}
.cs-detail-h1__num {
  font-family: "Inter", sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #D92884;
  line-height: 1;
  flex-shrink: 0;
}
.cs-detail-h1__title {
  font-size: 64px;
  font-weight: 700;
  color: #000000;
  line-height: 1.25;
  margin: 0;
}
@media (max-width: 991.98px) {
  .cs-detail-h1 {
    margin: 40px 24px 40px;
    gap: 0 8px;
  }
  .cs-detail-h1__prefix {
    font-size: 32px;
  }
  .cs-detail-h1__num {
    font-size: 40px;
  }
  .cs-detail-h1__title {
    font-size: 32px;
    width: 100%;
    margin-top: 8px;
  }
}

.cs-detail-lead-catch {
  font-size: 18px;
  font-weight: 700;
  color: #D92884;
  margin: 0 0 32px;
  line-height: 1.8;
}

.cs-detail-lead-body {
  font-size: 16px;
  line-height: 2;
  color: #000000;
  margin: 0;
}

.cs-detail-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.cs-detail-2col__left {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.cs-detail-2col__text {
  font-size: 16px;
  line-height: 2;
  color: #000000;
  margin: 0;
}
.cs-detail-2col__img-wrap {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 8px;
  background-color: #D9D9D9;
}
.cs-detail-2col__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 991.98px) {
  .cs-detail-2col {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.cs-detail-merits {
  border-top: 1px solid #DCD5DB;
  padding-top: 32px;
}
.cs-detail-merits__title {
  font-size: 20px;
  font-weight: 700;
  color: #000000;
  margin: 0 0 24px;
}
.cs-detail-merits__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cs-detail-merits__list li {
  font-size: 16px;
  line-height: 2;
  color: #000000;
  padding-left: 24px;
  position: relative;
}
.cs-detail-merits__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #D92884;
  flex-shrink: 0;
}

.cs-detail-materials {
  border-top: 1px solid #DCD5DB;
  padding-top: 32px;
  margin-top: 0;
}
.cs-detail-materials__title {
  font-size: 20px;
  font-weight: 700;
  color: #000000;
  margin: 0 0 24px;
}
.cs-detail-materials__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.cs-detail-materials__list li {
  font-size: 15px;
  font-weight: 500;
  color: #D92884;
  border: 1px solid #D92884;
  border-radius: 4px;
  padding: 4px 24px;
}

.cs-detail-cta {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 72px;
  max-width: 480px;
}
@media (max-width: 991.98px) {
  .cs-detail-cta {
    max-width: 100%;
    margin-top: 40px;
  }
}

.cs-detail-techs__desc {
  font-size: 16px;
  line-height: 2;
  color: #000000;
  margin: 0 0 72px;
}
@media (max-width: 991.98px) {
  .cs-detail-techs__desc {
    margin-bottom: 40px;
  }
}

.page-strengths-main {
  width: 100%;
  max-width: 1176px;
  margin: 0 auto 120px auto;
  box-sizing: border-box;
}
@media (max-width: 1224px) and (min-width: 768px) {
  .page-strengths-main {
    padding: 0 24px;
  }
}
@media (max-width: 991.98px) {
  .page-strengths-main {
    padding: 0;
    margin-bottom: 40px;
  }
}

.strengths-section {
  margin-bottom: 120px;
}
@media (max-width: 991.98px) {
  .strengths-section {
    padding: 0 24px;
    margin-bottom: 80px;
  }
}

.strengths-core__content {
  display: flex;
  align-items: flex-start;
  gap: 72px;
}
@media (max-width: 991.98px) {
  .strengths-core__content {
    flex-direction: column;
    gap: 32px;
  }
}
.strengths-core__image {
  flex: 0 0 60%;
  max-width: 60%;
}
.strengths-core__image img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 991.98px) {
  .strengths-core__image {
    flex: none;
    max-width: 100%;
    width: 100%;
  }
}
.strengths-core__items {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.strengths-core__item p {
  margin: 0;
  font-size: 16px;
  line-height: 2;
  color: #000000;
}

.strengths-si__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: 80px;
}
@media (max-width: 991.98px) {
  .strengths-si__nav {
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 40px;
  }
}
.strengths-si__nav-arrow {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
}
.strengths-si__nav-arrow::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 3px solid #D92884;
  border-right: 3px solid #D92884;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -5px;
  margin-left: -7px;
}
@media (max-width: 991.98px) {
  .strengths-si__nav-arrow {
    display: none;
  }
}
.strengths-si__step {
  margin-bottom: 80px;
}
.strengths-si__step:last-child {
  margin-bottom: 0;
}
.strengths-si__step-heading {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  margin: 0 0 24px 0;
}
.strengths-si__step-num {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #D92884;
  line-height: 1;
}
.strengths-si__step-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #000000;
  line-height: 1.33;
}
@media (max-width: 991.98px) {
  .strengths-si__step-title {
    font-size: 20px;
  }
}
.strengths-si__step-body {
  display: flex;
  align-items: flex-start;
  gap: 72px;
}
@media (max-width: 991.98px) {
  .strengths-si__step-body {
    flex-direction: column;
    gap: 32px;
  }
}
.strengths-si__step-body--text-left .strengths-si__step-text {
  order: 1;
}
.strengths-si__step-body--text-left .strengths-si__step-image {
  order: 2;
}
.strengths-si__step-body--image-left .strengths-si__step-image {
  order: 1;
}
.strengths-si__step-body--image-left .strengths-si__step-text {
  order: 2;
}
@media (max-width: 991.98px) {
  .strengths-si__step-body--image-left .strengths-si__step-image {
    order: 1;
  }
  .strengths-si__step-body--image-left .strengths-si__step-text {
    order: 2;
  }
}
.strengths-si__step-text {
  flex: 0 0 44%;
  display: flex;
  flex-direction: column;
}
.strengths-si__step-text p {
  margin: 0;
  font-size: 16px;
  line-height: 2;
  color: #000000;
}
@media (max-width: 991.98px) {
  .strengths-si__step-text {
    flex: none;
    width: 100%;
  }
}
.strengths-si__step-image {
  flex: 1;
}
.strengths-si__step-image img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 991.98px) {
  .strengths-si__step-image {
    flex: none;
    width: 100%;
  }
}
.strengths-si__step-cta {
  margin-top: 24px;
}

.strengths-diamond-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 202px;
  height: 202px;
  text-decoration: none;
  flex-shrink: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
@media (max-width: 991.98px) {
  .strengths-diamond-card {
    width: 140px;
    height: 140px;
  }
}
.strengths-diamond-card:hover {
  transform: translateY(-4px);
  opacity: 0.85;
}
.strengths-diamond-card:hover .strengths-diamond-card__border {
  border-color: #D92884;
}
.strengths-diamond-card:hover .strengths-diamond-card__arrow {
  border-top-color: #D92884;
}
.strengths-diamond-card__border {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 168px;
  height: 168px;
  border: 4px solid #DCD5DB;
  border-radius: 20px;
  transform: rotate(-45deg);
  transition: border-color 0.2s ease;
  pointer-events: none;
}
@media (max-width: 991.98px) {
  .strengths-diamond-card__border {
    width: 116px;
    height: 116px;
    border-radius: 14px;
  }
}
.strengths-diamond-card__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 120px;
}
@media (max-width: 991.98px) {
  .strengths-diamond-card__content {
    width: 90px;
    gap: 8px;
  }
}
.strengths-diamond-card__num {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #D92884;
  line-height: 1.2;
  text-align: center;
}
@media (max-width: 991.98px) {
  .strengths-diamond-card__num {
    font-size: 18px;
  }
}
.strengths-diamond-card__title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  text-align: center;
  line-height: 1.3;
}
@media (max-width: 991.98px) {
  .strengths-diamond-card__title {
    font-size: 13px;
  }
}
.strengths-diamond-card__arrow {
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 10px solid #DCD5DB;
  transition: border-top-color 0.2s ease;
}

.strengths-pdd__image {
  width: 100%;
  margin-bottom: 40px;
}
.strengths-pdd__image img {
  width: 100%;
  height: auto;
  display: block;
}
.strengths-pdd__text p {
  margin: 0 0 24px 0;
  font-size: 16px;
  line-height: 2;
  color: #000000;
  text-align: left;
}
.strengths-pdd__text p:last-child {
  margin-bottom: 0;
}
.strengths-pdd__cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.page-contact-main {
  width: 100%;
  max-width: 1176px;
  margin: 0 auto 120px auto;
  box-sizing: border-box;
}
@media (max-width: 1224px) and (min-width: 768px) {
  .page-contact-main {
    padding: 0 24px;
  }
}
@media (max-width: 991.98px) {
  .page-contact-main {
    padding: 0 16px;
  }
}
.page-contact-main .contact-faq-section,
.page-contact-main .contact-form-section {
  margin-bottom: 120px;
}
.page-contact-main .contact-faq-section .c-custom-h2,
.page-contact-main .contact-form-section .c-custom-h2 {
  margin-bottom: 72px;
}

.contact-faq-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.c-faq-card {
  border: 4px solid #DCD5DB;
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
}
.c-faq-card__question {
  display: flex;
  align-items: center;
  gap: 24px;
  width: 100%;
  padding: 40px 72px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}
@media (max-width: 991.98px) {
  .c-faq-card__question {
    padding: 32px 24px;
    gap: 16px;
  }
}
.c-faq-card__q-label, .c-faq-card__a-label {
  font-size: 18px;
  font-weight: 700;
  color: #D92884;
  flex-shrink: 0;
  width: 24px;
}
.c-faq-card__q-text {
  flex: 1;
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  line-height: 1.6;
}
.c-faq-card__arrow {
  flex-shrink: 0;
  width: 9px;
  height: 9px;
  border-right: 2px solid #D92884;
  border-bottom: 2px solid #D92884;
  transform: rotate(45deg) translateY(-3px);
  transition: transform 0.3s ease;
}
.c-faq-card__question[aria-expanded=true] .c-faq-card__arrow {
  transform: rotate(-135deg) translateY(-3px);
}
.c-faq-card__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 72px;
}
@media (max-width: 991.98px) {
  .c-faq-card__answer {
    padding: 0 24px;
  }
}
.c-faq-card__answer--open {
  max-height: 800px;
  padding-bottom: 40px;
}
.c-faq-card__a-row {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding-top: 24px;
  padding-bottom: 16px;
  border-top: 1px solid #DCD5DB;
}
@media (max-width: 991.98px) {
  .c-faq-card__a-row {
    gap: 16px;
  }
}
.c-faq-card__a-short {
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  line-height: 1.6;
}
.c-faq-card__body {
  font-size: 16px;
  line-height: 2;
  color: #000000;
  margin-top: 16px;
  padding-left: calc(24px + 24px);
}
@media (max-width: 991.98px) {
  .c-faq-card__body {
    padding-left: 0;
  }
}
.c-faq-card__link {
  margin-top: 16px;
  padding-left: calc(24px + 24px);
}
@media (max-width: 991.98px) {
  .c-faq-card__link {
    padding-left: 0;
  }
}

.contact-form-wrap .wpcf7 {
  max-width: 960px;
  margin: 0 auto;
}
.contact-form-wrap .contact-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  margin-bottom: 72px;
}
@media (max-width: 991.98px) {
  .contact-form-wrap .contact-cols {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.contact-form-wrap .contact-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-form-wrap .contact-field + .contact-form-wrap .contact-field {
  margin-top: 32px;
}
.contact-form-wrap .contact-field__label {
  font-size: 14px;
  font-weight: 700;
  color: #000000;
  display: flex;
  align-items: center;
  gap: 6px;
}
.contact-form-wrap .contact-field__label .required {
  color: #d00;
  font-size: 12px;
  font-weight: 400;
}
.contact-form-wrap .wpcf7-form-control.wpcf7-text, .contact-form-wrap .wpcf7-form-control.wpcf7-email, .contact-form-wrap .wpcf7-form-control.wpcf7-tel, .contact-form-wrap .wpcf7-form-control.wpcf7-select, .contact-form-wrap .wpcf7-form-control.wpcf7-textarea, .contact-form-wrap .wpcf7-form-control.wpcf7-file {
  width: 100%;
  border: 1px solid #DCD5DB;
  border-radius: 4px;
  padding: 12px 16px;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
  background: #ffffff;
  box-sizing: border-box;
  appearance: none;
  transition: border-color 0.2s;
}
.contact-form-wrap .wpcf7-form-control.wpcf7-text:focus, .contact-form-wrap .wpcf7-form-control.wpcf7-email:focus, .contact-form-wrap .wpcf7-form-control.wpcf7-tel:focus, .contact-form-wrap .wpcf7-form-control.wpcf7-select:focus, .contact-form-wrap .wpcf7-form-control.wpcf7-textarea:focus, .contact-form-wrap .wpcf7-form-control.wpcf7-file:focus {
  outline: none;
  border-color: #D92884;
  box-shadow: 0 0 0 2px rgba(217, 40, 132, 0.15);
}
.contact-form-wrap .wpcf7-form-control.wpcf7-textarea {
  resize: vertical;
  min-height: 200px;
}
.contact-form-wrap .wpcf7-form-control.wpcf7-not-valid {
  border-color: #d00;
}
.contact-form-wrap .wpcf7-form-control-wrap:has(> .wpcf7-select) {
  position: relative;
  display: block;
}
.contact-form-wrap .wpcf7-form-control-wrap:has(> .wpcf7-select)::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 7px;
  height: 7px;
  border-right: 2px solid #000000;
  border-bottom: 2px solid #000000;
  pointer-events: none;
}
.contact-form-wrap .wpcf7-not-valid-tip {
  color: #d00;
  font-size: 12px;
  margin-top: 4px;
  display: block;
}
.contact-form-wrap .contact-submit {
  text-align: center;
  margin-top: 40px;
}
.contact-form-wrap .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 56px;
  background: #D92884;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  letter-spacing: 0.05em;
  transition: opacity 0.2s;
}
.contact-form-wrap .wpcf7-submit:hover {
  opacity: 0.82;
}
.contact-form-wrap .wpcf7-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.contact-form-wrap .wpcf7-response-output {
  margin-top: 32px;
  padding: 16px 24px;
  border-radius: 4px;
  font-size: 14px;
  text-align: center;
  border: 1px solid #DCD5DB;
}

.page-default-main {
  width: 100%;
  max-width: 1176px;
  margin: 0 auto 120px auto;
  box-sizing: border-box;
}
@media (max-width: 1224px) and (min-width: 768px) {
  .page-default-main {
    padding: 0 24px;
  }
}
@media (max-width: 991.98px) {
  .page-default-main {
    padding: 0;
  }
}

.page-default-content {
  font-size: 16px;
  line-height: 2;
  color: #000000;
}
@media (max-width: 991.98px) {
  .page-default-content {
    padding: 0 24px;
  }
}
@media (min-width: 1225px) {
  .page-default-content {
    padding: 0 24px;
  }
}
.page-default-content h2 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  margin: 2em 0 0.75em;
  padding-bottom: 8px;
  border-bottom: 2px solid #DCD5DB;
  color: #000000;
}
.page-default-content h3 {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
  margin: 1.5em 0 0.5em;
  color: #000000;
}
.page-default-content ul,
.page-default-content ol {
  padding-left: 1.5em;
  margin: 0.75em 0;
}
.page-default-content ul li,
.page-default-content ol li {
  margin-bottom: 0.25em;
}
.page-default-content a {
  color: #D92884;
  text-decoration: underline;
}
.page-default-content a:hover {
  opacity: 0.75;
}
.page-default-content p {
  margin: 0 0 1em;
}
.page-default-content p:last-child {
  margin-bottom: 0;
}

.p-404 {
  padding: 120px 0;
}
@media (max-width: 991.98px) {
  .p-404 {
    padding: 80px 0;
  }
}

.p-404__inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.p-404__code {
  font-family: "Inter", "Noto Sans JP", sans-serif;
  font-size: 120px;
  font-weight: 700;
  line-height: 1;
  color: #D92884;
  margin: 0 0 24px;
}
@media (max-width: 991.98px) {
  .p-404__code {
    font-size: 80px;
  }
}

.p-404__title {
  font-size: 24px;
  font-weight: 700;
  color: #000000;
  margin: 0 0 24px;
}

.p-404__desc {
  font-size: 16px;
  line-height: 2;
  color: #000000;
  margin: 0 0 40px;
}

.p-404__links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.p-404__link-btn {
  display: inline-block;
  padding: 12px 32px;
  background-color: #D92884;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 2px;
  transition: opacity 0.2s;
}
.p-404__link-btn:hover {
  opacity: 0.8;
}
.p-404__link-btn--secondary {
  background-color: transparent;
  color: #D92884;
  border: 1px solid #D92884;
}

.page-download-main {
  width: 100%;
  max-width: 1176px;
  margin: 0 auto 120px auto;
}
@media (max-width: 1224px) and (min-width: 768px) {
  .page-download-main {
    padding: 0 24px;
  }
}
@media (max-width: 991.98px) {
  .page-download-main {
    padding: 0;
    margin-bottom: 40px;
  }
}

.download-intro {
  font-size: 16px;
  line-height: 2;
  color: #000000;
  margin-bottom: 80px;
}
.download-intro a {
  color: #D92884;
  text-decoration: underline;
}
@media (max-width: 991.98px) {
  .download-intro {
    padding: 0 24px;
    margin-bottom: 40px;
  }
}

.download-section {
  margin-bottom: 120px;
}
@media (max-width: 991.98px) {
  .download-section {
    padding: 0 24px;
    margin-bottom: 80px;
  }
}
