@charset "utf-8";

html {
  scroll-behavior: smooth;
}

:target {
  scroll-margin-top: 143px;
}

p {
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
}

header {
  overflow: visible;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-pc);
  background-color: #fff;
  padding: 0 var(--gap-pc);
  display: flex;
  justify-content: space-between;
  align-items: center;
  filter: drop-shadow(7px 7px 5px rgba(0, 0, 0, 0.18));
  z-index: 12;
}

.header-logo {
  width: auto;
  height: var(--logo-pc);
}

.header-mask {
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.82);
  transition: all 0.2s ease;
  display: none;
  z-index: 11;
}

.rockonpro {
  overflow: hidden;
  position: fixed;
  top: var(--header-pc);
  left: 0;
  width: 100%;
  height: 55px;
  background-color: var(--color-darkgray);
  color: #fff;
  padding: 0 var(--gap-pc);
  z-index: 10;
}

.rockonpro-inner {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rockonpro-logo {
  overflow: hidden;
  width: max-content;
  height: 16.5px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 11px;
}

.rockonpro-logo span {
  padding-top: 2px;
}

.rockonpro-logo img {
  width: auto;
  height: 100%;
}

.sidebar-mask {
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.64);
  opacity: 0;
  z-index: -1;
  transition: all 0.2s ease;
}

.sidebar-mask.active {
  opacity: 1;
  z-index: 10;
}

.sidebar {
  overflow: hidden;
  position: fixed;
  top: var(--header-pc);
  left: -331px;
  width: 100%;
  max-width: 309px;
  height: calc(100vh - var(--header-pc));
  background-color: var(--color-darkgray);
  color: #fff;
  box-shadow: 7px 0 0 rgba(0, 0, 0, 0.09);
  z-index: 11;
  transition: all 0.2s ease;
}

.sidebar.active {
  left: 0;
}

.sidebar-inner {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(100vh - var(--header-pc));
  overflow-y: auto;
  scrollbar-width: none;
}

.sidebar-inner::-webkit-scrollbar {
  display: none;
}

.sidebar-content {
  position: relative;
  width: 100%;
  height: auto;
  min-height: calc(100vh - var(--header-pc));
  padding: 0;
  overflow-y: scroll;
}

.global-nav-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  padding-bottom: 220px;
}

.elements-logo {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  margin-bottom: 44px;
}

.elements-logo img {
  width: 100%;
  height: auto;
}

.global-nav-heading {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-lightgray);
  line-height: 2;
}

nav.header-nav {
  overflow: visible;
  position: relative;
  width: max-content;
  height: var(--header-pc);
  display: flex;
  justify-content: flex-end;
}

nav.header-nav ul {
  overflow: visible;
  position: relative;
  width: max-content;
  height: var(--header-pc);
  display: flex;
  justify-content: flex-start;
}

nav.header-nav ul li {
  cursor: pointer;
  overflow: visible;
  position: relative;
  width: max-content;
  height: var(--header-pc);
  font-size: 16px;
  font-weight: 500;
  color: var(--color-font);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

nav.header-nav ul li.active:before,
nav.header-nav ul li:hover:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5.5px;
  background-color: var(--color-primary);
}

nav.header-nav ul li>a {
  cursor: pointer;
  overflow: hidden;
  position: relative;
  width: max-content;
  height: var(--header-pc);
  font-size: 17px;
  font-weight: 500;
  color: var(--color-font);
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

nav.header-nav .megamenu {
  position: absolute;
  left: 0;
  top: 100%;
  width: max-content;
  height: auto;
  background-color: var(--color-darkgray);
  color: #fff;
  box-shadow: 7px 7px 5px rgba(0, 0, 0, 0.18);
  padding: 22px 33px;
  transition: all 0.2s ease;
  flex-direction: column;
  opacity: 0;
  display: none;
  z-index: -1;
}

nav.header-nav .megamenu.active {
  display: flex;
  opacity: 1;
  z-index: 11;
}

.megamenu-list {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}

.megamenu-item {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  padding: 4px 0;
  transition: all 0.2s ease;
}

.megamenu-item:hover {
  color: var(--color-primary);
}

.marker {
  display: inline;
  background-image: linear-gradient(90deg, var(--color-primary), var(--color-primary));
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 0 40%;
  transition: all 0.2s ease;
  cursor: pointer;
}

.marker:hover {
  background-size: 100% 40%;
}

.company {
  overflow: hidden;
  position: absolute;
  bottom: 22px;
  left: 0;
  width: 100%;
  height: auto;
  padding: 0 var(--gap-pc);
}

.company img {
  width: auto;
  height: 20px;
  margin-bottom: 20px;
}

.company p {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.75;
  margin-bottom: 0;
  color: var(--color-lightgray);
}

main {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  min-height: 100vh;
  margin-top: 143px;
}

section.key-visual {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  background-color: var(--color-primary);
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gap-pc);
}

.wrapper {
  overflow: visible;
  position: relative;
  width: 100%;
  height: auto;
  max-width: var(--wrapper);
  margin: 0 auto;
}

.key-visual-inner {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  max-height: 660px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 88px 0;
}

.key-visual-content {
  overflow: hidden;
  position: relative;
  width: 54%;
  max-width: 520px;
  height: auto;
  padding-right: 66px;
}

.key-visual-content h2 {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  font-size: 44px;
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 33px;
}

.key-visual-content p {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.75;
  margin-bottom: 0;
}

.key-visual-image {
  overflow: hidden;
  position: relative;
  width: 46%;
  height: auto;
}

.key-visual-image img {
  width: 100%;
  height: auto;
}

section.storage-products {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  padding: 88px 0;
}

section.storage-products h3,
section.features h3,
section.solutions h3,
section.cases h3,
section.contact-us h3,
section.solutions-merit h3 {
  overflow: visible;
  position: relative;
  width: 100%;
  height: auto;
  font-size: 38.5px;
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 55px;
  text-align: center;
}

section h3 img {
  width: auto;
  height: 40px;
}

ul.storage-products-list {
  overflow: visible;
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 33px;
  padding-bottom: 22px;
}

ul.storage-products-list li {
  overflow: hidden;
  position: relative;
  width: calc(50% - 16.5px);
  height: auto;
  background-color: var(--color-lightgray);
  padding: 22px;
  box-shadow: 7px 7px 5px rgba(0, 0, 0, 0.18);
  transition: all 0.2s ease;
}

.product-logo {
  overflow: hidden;
  position: absolute;
  top: 22px;
  left: 22px;
  width: 44px;
  height: 44px;
  background-color: var(--color-darkgray);
  z-index: 1;
}

.product-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-name {
  overflow: hidden;
  position: relative;
  width: auto;
  height: 22px;
  margin-left: 55px;
  margin-bottom: 10px;
}

.product-name img {
  width: auto;
  height: 100%;
  object-fit: contain;
}

.product-image {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 220px;
  background-color: var(--color-font);
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-image img {
  width: 80%;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}

.product-image.elementscube img {
  width: auto !important;
  height: 95% !important;
  margin: 0 auto !important;
  object-fit: contain !important;
}

.product-image.elementsbolt img {
  padding-top: 14.3%;
}

.product-description {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  margin-bottom: 0;
}

.product-description p {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
}

.storage-products-list .product-description {
  padding-top: 22px;
}

section.features {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  padding: 88px 0;
  background-color: var(--color-lightgray);
}

ul.features-list {
  overflow: visible;
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

ul.features-list li {
  overflow: hidden;
  position: relative;
  width: calc(33.3333% - 14.6666px);
  height: auto;
  background-color: #fff;
  padding: 0;
  margin-bottom: 22px;
  box-shadow: 7px 7px 5px rgba(0, 0, 0, 0.18);
  transition: all 0.2s ease;
}

.features-image {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
}

.features-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 2/1;
}

.features-description {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  padding: 22px;
}

.features-description h4 {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.75;
  margin-bottom: 11px;
}

.features-description p {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
}

section.media-library {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  padding: 0;
  background-color: var(--color-darkgray);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.media-library-image {
  overflow: hidden;
  position: relative;
  width: 50%;
  height: auto;
}

.media-library-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.media-library-description {
  overflow: hidden;
  position: relative;
  width: 50%;
  height: auto;
}

.media-library-description .container {
  max-width: 520px;
  padding-left: 0;
  margin: 0;
  text-align: left;
}

.media-library-description button.read-more {
  margin: 44px 0 0 0;
}

section.solutions {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  padding: 88px 0;
  background-color: var(--color-font);
  color: var(--color-lightgray);
  text-align: center;
}

.solutions-slideshow {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
}

.solutions-item {
  overflow: visible;
  position: relative;
  width: 550px;
  height: auto;
  padding: 0 11px;
}

.solutions-image {
  overflow: visible;
  position: relative;
  width: 100%;
  height: auto;
  margin-bottom: 16.5px;
  filter: drop-shadow(7px 7px 5px rgba(0, 0, 0, 0.18));
}

.solutions-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 2/1;
}

.solutions-title {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
}

.solutions-title h4 {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.75;
  margin-bottom: 0;
  color: var(--color-lightgray);
}

.slick-active .solutions-title h4 {
  color: var(--color-primary);
}

ul.slick-dots {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 33px;
}

ul.slick-dots li {
  overflow: hidden;
  position: relative;
  width: 22px;
  height: 22px;
}

ul.slick-dots li button {
  overflow: hidden;
  position: relative;
  width: 11px;
  height: 11px;
  background-color: var(--color-darkgray);
  border-radius: 50%;
  text-indent: -9999px;
}

ul.slick-dots li.slick-active button {
  background-color: var(--color-lightgray) !important;
}

section.contact-us {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  padding: 66px 0 55px 0;
  background-color: var(--color-lightgray);
  text-align: center;
}

section.contact-us h3 {
  margin-bottom: 33px;
}

section.contact-us .contact-us-description {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
}

button.read-more {
  display: block;
  overflow: hidden;
  position: relative;
  width: max-content;
  min-width: 331px;
  height: 66px;
  font-size: 20px;
  font-weight: 700;
  line-height: 62px;
  padding: 0 33px;
  background-color: var(--color-primary);
  box-sizing: border-box;
  color: var(--color-font);
  filter: drop-shadow(7px 7px 5px rgba(0, 0, 0, 0.18));
  margin: 22px auto;
  transition: all 0.2s ease;
}

button.read-more.detail {
  margin-top: 33px;
}

button.read-more:hover {
  background-color: var(--color-font);
  color: var(--color-primary);
  filter: drop-shadow(0px 0px 0px rgba(0, 0, 0, 0.18));
}

footer {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 66px;
  padding: 0 var(--gap-pc);
  background-color: var(--color-darkgray);
  color: #fff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.copyright {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

section.archive-products {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
}

.archive-products-header {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 550px;
  background-color: var(--color-darkgray);
  color: #fff;
  padding: 88px 0;
}

section.archive-products:first-child .archive-products-header {
  height: 550px;
}

.archive-products-title {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}

.archive-products-logo {
  overflow: hidden;
  position: relative;
  width: 66px;
  height: 66px;
}

.archive-products-name {
  overflow: hidden;
  position: relative;
  width: auto;
  height: 33px;
}

.archive-products-image {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 220px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 11px;
}

.archive-products-image img {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  max-width: 660px;
}

section#cube .archive-products-image {
  max-width: 100%;
  height: auto;
}

section#cube .archive-products-image img {
  max-width: 100%;
  height: 330px;
  object-fit: contain;
}

.archive-products-content {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  padding: 66px 0 88px 0;
  background-color: #fff;
}

.archive-products-specs {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  padding: 11px 33px 44px 33px;
  background-color: var(--color-lightgray);
  margin-top: 55px;
  margin-bottom: 33px;
  filter: drop-shadow(7px 7px 5px rgba(0, 0, 0, 0.18));
}

.archive-products-specs-details {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
}

.archive-products-specs-details p {
  overflow: hidden;
  position: relative;
  font-size: 15px;
  padding-left: 15px;
  margin-bottom: 0 !important;
}

.archive-products-specs-details p:before {
  content: "・";
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 15px;
}

section.archive-products h1 {
  font-size: 32px;
}

section.archive-products h1 span {
  background-image: linear-gradient(90deg, var(--color-primary), var(--color-primary));
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 100% 40%;
}

section.archive-products h2 {
  font-size: 24px;
  margin-top: 48px;
  margin-bottom: 1em;
}

section.archive-products h4,
section.archive-features h4 {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.75;
  margin-top: 22px;
}

section.archive-features {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
}

.archive-features-header {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
}

.archive-features-header img {
  width: 100%;
  height: auto;
  object-fit: contain;
  aspect-ratio: 2/1;
  max-height: 550px;
  margin: 0 auto;
}

section.archive-features#elements-blink .archive-features-header,
section.archive-features#cloud-platform .archive-features-header {
  background-color: var(--color-primary);
}

section.archive-features#ai-search .archive-features-header,
section.archive-features#click-sharing .archive-features-header,
section.archive-features#workflow-automation .archive-features-header,
section.archive-features#project-management .archive-features-header {
  background-color: #222222;
}

section.archive-features#satellite .archive-features-header {
  background-color: #1a1a1a;
}

section.archive-features#media-archive .archive-features-header {
  background-color: #1c1c1c;
}

.archive-products-content p {
  margin-bottom: 1em;
}

.archive-products-content p:last-child {
  margin-bottom: 0;
}

section.archive-features h1 {
  font-size: 32px;
  margin-bottom: 24px;
}

section.archive-features h1 span {
  background-image: linear-gradient(90deg, var(--color-primary), var(--color-primary));
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 100% 40%;
}

section.archive-media-library {
  background-color: var(--color-darkgray);
}

section.archive-media-library .archive-media-library-image {
  width: 100%;
  height: auto;
}

section.archive-media-library .archive-media-library-image img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  aspect-ratio: 2/1;
}

section.archive-media-library#collaboration .archive-media-library-image,
section.archive-media-library#sharing .archive-media-library-image,
section.archive-media-library#automation .archive-media-library-image {
  filter: brightness(0.82);
}

section.archive-media-library h1 {
  font-size: 32px;
  margin-bottom: 40px;
}

section.archive-media-library h1 span {
  color: var(--color-primary);
}

.archive-media-library-content {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  padding: 66px 0 88px 0;
  background-color: var(--color-darkgray);
  color: #fff;
}

.archive-media-library-specs {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  padding: 11px 33px 44px 33px;
  background-color: var(--color-font);
  color: var(--color-lightgray);
  margin-top: 55px;
  margin-bottom: 33px;
  filter: drop-shadow(7px 7px 5px rgba(0, 0, 0, 0.18));
}

.archive-media-library-specs-details {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
}

section.archive-media-library h4 {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.75;
  margin-top: 22px;
}

.archive-media-library-specs-details p {
  overflow: hidden;
  position: relative;
  font-size: 15px;
  padding-left: 15px;
  margin-bottom: 0;
}

.archive-media-library-content p {
  margin-bottom: 1em;
}

.archive-media-library-content p:last-child {
  margin-bottom: 0;
}

.archive-media-library-specs p {
  margin-bottom: 0;
}

.archive-media-library-specs-details p:before {
  content: "・";
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 15px;
}

section.visual {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: calc(100vh - 143px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

section.visual img {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
}

section.visual label {
  overflow: hidden;
  position: relative;
  width: max-content;
  height: 36px;
  line-height: 34px;
  font-size: 24px;
  font-weight: 700;
  color: var(--color-font);
  background-color: var(--color-primary);
  padding: 0 11px;
  margin-bottom: 22px;
}

section.visual strong {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  font-size: 48px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0;
  display: block;
}

section.cases-overview {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  padding: 55px 0;
  background-color: var(--color-darkgray);
  color: #fff;
  text-align: left;
}

section.cases-overview h1 {
  overflow: visible;
  position: relative;
  width: 100%;
  height: auto;
  font-size: 38.5px;
  font-weight: 900;
  line-height: 1.25;
  margin-bottom: 55px;
  text-align: center;
}

.cases-overview-inner {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cases-logo {
  overflow: hidden;
  position: relative;
  width: 50%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cases-logo h1,
.cases-logo img {
  width: 100%;
  max-width: 330px;
  height: auto;
  max-height: 220px;
  object-fit: contain;
  margin-bottom: 0 !important;
}

.cases-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.cases-description {
  overflow: hidden;
  position: relative;
  width: 50%;
  height: auto;
  text-align: left;
}

.cases-overview-key {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  color: var(--color-primary);
}

.cases-overview-key p {
  font-weight: 700;
}

.cases-overview-value {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
}

article {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  padding: 88px 0 110px 0;
}

article p {
  font-size: 18px;
  font-weight: 400;
  line-height: 2;
  margin-bottom: 1em;
}

article img {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  margin: 3em auto;
}

article h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.75;
  margin-top: 44px;
  margin-bottom: 22px;
}

article h3 {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  font-style: italic;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.75;
  padding: 33px;
  background-color: var(--color-darkgray);
  color: #fff;
  margin: 44px 0;
  text-align: center;
  display: inline-block;
}

article h3::before {
  content: "『";
}

article h3::after {
  content: "』";
}

article h4 {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  font-style: italic;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  padding: 33px;
  background-color: var(--color-darkgray);
  color: var(--color-primary);
  margin: 44px 0;
  text-align: center;
}

article h3+h4 {
  margin-top: -88px;
  padding-top: 22px;
}

section.cases {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  padding: 44px 0 0 0;
  background-color: var(--color-font);
  color: #fff;
  text-align: center;
}

.wp-singular section.cases {
  padding: 88px 0 0 0;
}

.cases-slideshow {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}

.cases-item {
  overflow: visible;
  position: relative;
  width: 50%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease;
}

.cases-item:hover {
  filter: brightness(1.5);
}

.cases-item img {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 2/1;
  filter: brightness(0.5);
}

.cases-title {
  overflow: hidden;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.cases-title label {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.75;
  margin-bottom: 5.5px;
  background-color: var(--color-primary);
  color: var(--color-font);
  padding: 0 11px;
}

.cases-title h4 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.75;
  color: #fff;
}

section.solutions-single {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  padding: 55px 0;
  background-color: var(--color-font);
  color: #fff;
  text-align: center;
}

.solutions-single-inner {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 66px;
}

.solutions-single-title {
  overflow: hidden;
  position: relative;
  width: 45%;
  height: auto;
  text-align: left;
}

.solutions-single-title h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.75;
  color: var(--color-primary);
}

.solutions-single-description {
  overflow: hidden;
  position: relative;
  width: 55%;
  height: auto;
  text-align: left;
}

.solutions-single-description.full {
  text-align: center;
}

section.solutions-section {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  padding: 110px 0 22px 0;
  background-color: var(--color-darkgray);
  color: #fff;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 66px;
}

.solutions-section-item {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 66px;
  margin-bottom: 110px;
}

.solutions-section-item-image {
  overflow: hidden;
  position: relative;
  width: 45%;
  height: auto;
}

.solutions-section-item-image img {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
}

.solutions-section-item-content {
  overflow: hidden;
  position: relative;
  width: 55%;
  height: auto;
}

.solutions-section-item-content label {
  overflow: hidden;
  position: relative;
  width: max-content;
  height: auto;
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.75;
  margin-bottom: 11px;
  background-color: var(--color-primary);
  color: var(--color-font);
  padding: 0 11px;
}

.solutions-section-item h3 {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 44px;
}

section.solutions-section.beegfs-file-system .solutions-section-item h3 {
  font-size: 28px;
  line-height: 1.75;
  margin-bottom: 44px;
}

.solutions-section-item p {
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  margin-bottom: 1em;
}

.solutions-section-item:nth-child(even) .solutions-section-item-image {
  order: 2;
}

.solutions-section-item:nth-child(even) .solutions-section-item-content {
  order: 1;
}

section.solutions-merit {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  padding: 88px 0 44px 0;
  background-color: var(--color-font);
  color: #fff;
  text-align: center;
}

ul.solutions-merit-list {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 44px;
}

ul.solutions-merit-list li {
  overflow: hidden;
  position: relative;
  width: 33.3333%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.solutions-merit-list li img {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  height: 110px;
  object-fit: contain;
  margin-bottom: 33px;
}

.solutions-merit-list li h4 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 22px;
  color: var(--color-primary);
}

.solutions-merit-list li p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
}

.global-nav-wrapper ul.header-nav__list {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
}

.global-nav-wrapper ul.header-nav__list li {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
}

.global-nav-wrapper ul.header-nav__list li>a {
  cursor: pointer;
  display: block;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 55px;
  line-height: 55px;
  background-color: rgb(255, 255, 255, 0.045);
  border-bottom: 1px solid rgba(255, 255, 255, 0.045);
  box-sizing: border-box;
  padding: 0 var(--gap-pc);
  transition: all 0.2s ease;
}

.global-nav-wrapper ul.header-nav__list li.has-megamenu>a {
  background-image: url(../images/icon_open.svg);
  background-size: 22px 22px;
  background-repeat: no-repeat;
  background-position: calc(100% - 22px) 50%;
}

.global-nav-wrapper ul.header-nav__list li>a:hover {
  background-color: rgb(255, 255, 255, 0.18);
}

.global-nav-wrapper ul.header-nav__list li .megamenu {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
  display: none;
  background-color: rgba(0, 0, 0, 0.5);
}

.global-nav-wrapper ul.header-nav__list li.open.has-megamenu>a {
  background-color: var(--color-primary);
  color: var(--color-font);
  background-image: url(../images/icon_close.svg);
  background-size: 22px 22px;
  background-repeat: no-repeat;
  background-position: calc(100% - 22px) 50%;
}

.global-nav-wrapper ul.header-nav__list li.open .megamenu {
  display: block;
}

.global-nav-wrapper ul.header-nav__list li .megamenu-list {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: auto;
}

.global-nav-wrapper ul.header-nav__list li .megamenu-item {
  display: block;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 55px;
  line-height: 55px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.045);
  box-sizing: border-box;
  transition: all 0.2s ease;
  padding-left: 44px;
}

.global-nav-wrapper ul.header-nav__list li .megamenu-item:hover {
  background-color: rgba(255, 255, 255, 0.09) !important;
}

.global-nav-wrapper ul.header-nav__list li .megamenu-item a {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-left: 50px;
}

.pc {
  display: block;
}

.sp {
  display: none;
}