@charset "UTF-8";
header {
  font-family: "Montserrat";
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: calc(100% - 80px);
  padding: 16px 40px;
  background-color: white;
  border-bottom: 1px solid #EEEEEE;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}
header #logo {
  height: 27px;
  width: auto;
  cursor: pointer;
}
header ul {
  margin: 0;
  display: flex;
  gap: 40px;
}
header ul li {
  list-style: none;
  cursor: pointer;
  padding: 4px 8px;
  background-color: #fff;
}
header ul li:hover {
  color: #fff;
  background-color: #000;
  transition: 0.2s;
}
header .menu-container {
  display: none;
  position: relative;
}
header .menu-container .menu-toggle {
  cursor: pointer;
  padding: 10px;
  color: #000;
  position: fixed;
  top: 6px;
  right: 16px;
  z-index: 1000;
}
header .menu-container .overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 998;
  pointer-events: none;
}
header .menu-container .material-symbols-outlined {
  font-size: 28px;
  font-variation-settings: "wght" 600;
}
header .menu-container .side-menu {
  position: fixed;
  top: 0;
  right: -250px;
  width: 250px;
  height: 100%;
  background-color: #fff;
  border-left: 1px solid #EEEEEE;
  color: #000;
  transition: right 0.3s ease;
  z-index: 999;
}
header .menu-container .side-menu ul {
  list-style: none;
  padding: 80px 24px;
  display: flex;
  flex-direction: column;
  font-size: 20px;
}
header .menu-container .side-menu ul li a {
  color: #000;
  text-decoration: none;
}
@media (max-width: 768px) {
  header > ul {
    display: none;
  }
  header .menu-container {
    display: block;
  }
}

footer {
  background-color: #000000;
}
footer p {
  color: #fff;
  font-size: 14px;
  margin: 0;
  padding: 8px;
  text-align: center;
}

html[lang=ja] {
  font-family: "Noto Sans JP", "Montserrat", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

body {
  margin: 60px 0 0 0;
  letter-spacing: 1px;
}

.mons {
  font-family: "Montserrat";
}
.mons-900 {
  font-family: "Montserrat";
  font-weight: 900;
  font-size: 32px;
  letter-spacing: 1.5px;
}

.content {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
}
.content .content-body {
  width: 100%;
  max-width: 1120px;
}
@media (max-width: 768px) {
  .content {
    gap: 40px !important;
  }
}

.liner {
  width: 1px;
  height: 100px;
  background-color: #000000;
  position: relative;
}
.liner__black::after {
  content: "";
  width: 9px;
  height: 9px;
  background-color: #000000;
  position: absolute;
  top: 91px;
  left: -4px;
}
.liner__white::after {
  content: "";
  width: 7px;
  height: 7px;
  background-color: #fff;
  border: 1px solid #000000;
  position: absolute;
  top: 93px;
  left: -3px;
  box-sizing: border-box;
}

.fade-in-element {
  opacity: 0;
  transform: translateY(40px); /* 下から10px移動 */
  transition: opacity 1s, transform 1.5s; /* フェードインと移動の効果 */
}
@media (max-width: 768px) {
  .fade-in-element {
    transition: opacity 1s, transform 1s !important;
  }
}

.first-fade-in {
  opacity: 0;
  transform: translateY(24px); /* 下から10px移動 */
  transition: opacity 1s, transform 1s; /* フェードインと移動の効果 */
}

.fade-in {
  opacity: 1;
  transform: translateY(0); /* 元の位置に戻す */
}

.hover-effect {
  transition: transform 0.4s ease; /* アニメーションの設定 */
  position: relative;
}

.hover-effect:hover {
  transform: scale(1.06); /* ホバー時に10%大きくする */
  cursor: pointer;
}

body #contents-wrapper {
  color: #fff;
}

.section-title {
  position: relative;
  font-size: 32px;
  font-weight: 600;
  padding: 4px 12px;
  padding-left: 24px;
  margin-bottom: 40px;
}
.section-title::after {
  position: absolute;
  content: "";
  top: 6px;
  left: 0;
  width: 8px;
  height: 80%;
  background-color: #D69FC6;
}
@media (max-width: 768px) {
  .section-title {
    font-size: 24px;
    padding-left: 20px;
    margin-bottom: 48px;
  }
}

.bg-wrap {
  position: fixed;
  z-index: -1;
}
.bg-wrap .bg-img {
  width: 100vw;
  height: inherit;
  overflow: hidden;
}
@media (max-width: 1520px) {
  .bg-wrap .bg-img {
    width: auto;
    height: 100vh;
  }
}
@media (max-width: 1520px) {
  .bg-wrap {
    left: 50%;
    height: 100vh;
    transform: translateX(-50%);
  }
}

.firstview {
  padding-top: 60px;
  padding-bottom: 80px;
  color: #fff;
  height: 800px;
  display: flex;
  align-items: start;
  justify-content: center;
}
.firstview .content-body {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  max-width: none;
}
.firstview .content-body img {
  width: 100%;
  max-width: 550px;
  height: auto;
}
.firstview .content-body .right-contents {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 16px;
}
.firstview .content-body .right-contents .sub-text {
  font-size: 18px;
  margin-bottom: 40px;
}
.firstview .content-body .right-contents .title {
  width: 500px;
}
.firstview .content-body .right-contents .day-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}
.firstview .content-body .right-contents .day-wrap .tool-icon {
  width: 36px;
  height: auto;
}
.firstview .content-body .right-contents .day-wrap__day {
  margin-left: 8px;
}
@media (max-width: 1280px) {
  .firstview .content-body > img {
    max-width: 500px;
  }
}
@media (max-width: 950px) {
  .firstview {
    height: 100vh;
    width: auto;
    padding: 0;
  }
  .firstview .content-body {
    display: flex;
    flex-direction: column;
    align-items: center !important;
    gap: 0;
  }
  .firstview .content-body > img {
    position: unset;
    width: 100%;
    max-width: 300px;
    height: auto;
  }
  .firstview .content-body .right-contents {
    margin-top: -160px;
    margin-bottom: 80px;
    max-width: 90%;
    gap: 12px;
  }
  .firstview .content-body .right-contents .sub-text {
    font-size: 16px;
    margin-bottom: 0;
  }
  .firstview .content-body .right-contents .title {
    width: 100%;
    height: auto;
  }
  .firstview .content-body .right-contents .day-wrap .tool-icon {
    width: 30px;
  }
}

.demo-contents {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
  background-color: rgba(3, 32, 50, 0.4);
}
.demo-contents .content-body {
  width: calc(100% - 48px);
  margin: 0 24px;
}
.demo-contents .content-body .main-container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.demo-contents .content-body .main-container video {
  width: 640px;
  height: 360px;
  max-height: 360px;
}
@media (max-width: 688px) {
  .demo-contents .content-body .main-container video {
    width: 100%;
    height: auto;
  }
}

.SUI-contents {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
}
.SUI-contents .content-body {
  width: calc(100% - 48px);
  margin: 0 24px;
}
.SUI-contents .content-body .main-container {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: column;
  gap: 160px;
  margin: 0 auto;
  padding-top: 40px;
}
.SUI-contents .content-body .main-container .item {
  display: flex;
  justify-content: center;
  align-items: start;
  gap: 80px;
  margin-right: auto;
}
.SUI-contents .content-body .main-container .item__reverce {
  margin-right: 0 !important;
  margin-left: auto;
  flex-direction: row-reverse;
}
.SUI-contents .content-body .main-container .item .image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
.SUI-contents .content-body .main-container .item .image-wrap__img {
  width: 280px;
  height: auto;
}
.SUI-contents .content-body .main-container .item .text-wrap {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-direction: column;
  padding-top: 40px;
  gap: 80px;
}
.SUI-contents .content-body .main-container .item .text-wrap__item {
  gap: 80px;
}
.SUI-contents .content-body .main-container .item .text-wrap__item__title {
  color: #032032;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
  padding: 0 8px;
  letter-spacing: 4px;
  background-color: rgba(3, 32, 50, 0.4);
  color: #fff;
  width: -moz-fit-content;
  width: fit-content;
}
.SUI-contents .content-body .main-container .item .text-wrap__item__title .br-hidden {
  display: none;
}
.SUI-contents .content-body .main-container .item .text-wrap__item__text {
  background-color: rgba(3, 32, 50, 0.4);
  color: #fff;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 600px;
  padding: 0 8px;
  line-height: 1.6;
}
@media (max-width: 1024px) {
  .SUI-contents .content-body .main-container {
    margin: 0 16px;
    gap: 100px;
    padding-top: 0;
  }
  .SUI-contents .content-body .main-container .item {
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-right: 0;
  }
  .SUI-contents .content-body .main-container .item__reverce {
    margin-left: 0;
  }
  .SUI-contents .content-body .main-container .item .image-wrap__img {
    width: auto;
    height: 260px;
  }
  .SUI-contents .content-body .main-container .item .text-wrap {
    gap: 40px;
    padding-top: 24px;
  }
  .SUI-contents .content-body .main-container .item .text-wrap__item__title {
    font-size: 20px;
    margin-bottom: 8px;
  }
  .SUI-contents .content-body .main-container .item .text-wrap__item__title .br-visible {
    display: none;
  }
  .SUI-contents .content-body .main-container .item .text-wrap__item__title .br-hidden {
    display: block;
  }
}

.consept-contents {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
  background-color: rgba(3, 32, 50, 0.4);
}
.consept-contents .content-body {
  width: calc(100% - 48px);
  margin: 0 24px;
}
.consept-contents .content-body .main-container {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: column;
  gap: 160px;
  margin: 0 auto;
}
.consept-contents .content-body .main-container .item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  margin-right: auto;
}
.consept-contents .content-body .main-container .item__reverce {
  margin-right: 0 !important;
  margin-left: auto;
  flex-direction: row-reverse;
}
.consept-contents .content-body .main-container .item .image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
.consept-contents .content-body .main-container .item .image-wrap__img {
  width: 100%;
  max-width: 360px;
  height: auto;
}
.consept-contents .content-body .main-container .item .text-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-top: 40px;
  margin-bottom: 40px;
}
.consept-contents .content-body .main-container .item .text-wrap__title {
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 12px;
  padding: 0 8px;
  letter-spacing: 4px;
  margin-bottom: 40px;
  width: -moz-fit-content;
  width: fit-content;
}
.consept-contents .content-body .main-container .item .text-wrap__title .br-hidden {
  display: none;
}
.consept-contents .content-body .main-container .item .text-wrap__text {
  color: #fff;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 600px;
  padding: 0 8px;
  line-height: 1.6;
}
@media (max-width: 1024px) {
  .consept-contents .content-body .main-container .item {
    flex-direction: column;
    margin-right: 0;
    gap: 16px;
  }
  .consept-contents .content-body .main-container .item .text-wrap {
    padding-top: 0;
  }
  .consept-contents .content-body .main-container .item .text-wrap__title {
    font-size: 32px;
    margin-bottom: 24px;
  }
}

.UID-contents {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
}
.UID-contents .content-body {
  width: calc(100% - 48px);
  margin: 0 24px;
}
.UID-contents .content-body .main-container {
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
  gap: 40px;
}
.UID-contents .content-body .main-container .ui-img {
  width: 100%;
  height: auto;
  margin-bottom: 80px;
}
.UID-contents .content-body .main-container .link-figma {
  max-width: 400px;
  width: 100%;
  height: 80px;
  border: 1px solid #eee;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  text-decoration: none;
  color: #000;
  color: #fff;
  border-color: #fff;
  transition: background-color 0.1s ease;
}
.UID-contents .content-body .main-container .link-figma:hover {
  background-color: rgba(0, 0, 0, 0.3);
}
.UID-contents .content-body .main-container .link-figma__text {
  font-weight: 500;
}

.hidden {
  opacity: 0; /* 非表示時の不透明度 */
}

.visible {
  opacity: 1;
}

#contents-wrapper {
  transition: opacity 0.5s ease; /* フェードインのアニメーション */
}/*# sourceMappingURL=starLine.css.map */