@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;
}

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

.firstview {
  padding-top: 60px;
  padding-bottom: 80px;
  background-color: #00A098;
  color: #fff;
  height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.firstview .content-body {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  max-width: none;
}
.firstview .content-body img {
  width: 800px;
  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: 24px;
}
.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: 1360px) {
  .firstview {
    position: relative;
  }
  .firstview .content-body {
    display: inline-block;
  }
  .firstview .content-body > img {
    position: absolute;
    top: -150px;
    left: 0;
    z-index: -1;
  }
  .firstview .content-body .right-contents {
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: 40px;
    background-color: rgba(0, 160, 152, 0.7);
  }
}
@media (max-width: 800px) {
  .firstview .content-body {
    display: flex;
    flex-direction: column;
    align-items: center !important;
    gap: 16px;
  }
  .firstview .content-body > img {
    position: unset;
    width: 100%;
    height: auto;
  }
  .firstview .content-body .right-contents {
    margin: 0 32px;
  }
  .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;
  }
}

.intro-contents {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
}
.intro-contents .content-body {
  width: calc(100% - 48px);
  margin: 0 24px;
}
.intro-contents .content-body .main-container {
  display: flex;
  justify-content: center;
  align-items: start;
  gap: 80px;
}
.intro-contents .content-body .main-container__img {
  width: 269px;
  margin: 0 auto;
}
.intro-contents .content-body .main-container .right-contents {
  margin: auto;
}
.intro-contents .content-body .main-container .right-contents .text {
  font-size: 20px;
  line-height: 2;
  text-align: center;
  font-weight: 600;
  margin-bottom: 80px;
  border: 2px solid #00A098;
  color: #00A098;
  padding: 8px 0;
  border-radius: 8px;
}
.intro-contents .content-body .main-container .right-contents__img {
  width: 100%;
  max-width: 600px;
  height: auto;
  background-color: #eee;
}
@media (max-width: 1100px) {
  .intro-contents .content-body .main-container {
    flex-direction: column;
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .intro-contents {
    padding: 64px 0;
  }
  .intro-contents .content-body .main-container {
    gap: 32px;
  }
  .intro-contents .content-body .main-container img {
    width: 180px;
  }
  .intro-contents .content-body .main-container .right-contents .text {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 40px;
  }
}

.ME-contents {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
  background-color: rgba(0, 160, 152, 0.04);
}
.ME-contents .content-body {
  width: calc(100% - 48px);
  margin: 0 24px;
}
.ME-contents .content-body .main-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
}
.ME-contents .content-body .main-container .item {
  width: 288px;
}
.ME-contents .content-body .main-container .item .img-wrap {
  width: 288px;
  height: 400px;
  overflow: hidden;
}
.ME-contents .content-body .main-container .item .img-wrap img {
  width: 288px;
  height: auto;
}
.ME-contents .content-body .main-container .item .text-lg {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 4px;
  margin: 24px 0 12px 0;
}
.ME-contents .content-body .main-container .item .text-md {
  color: #616161;
}
@media (max-width: 1100px) {
  .ME-contents {
    padding: 64px 0;
  }
  .ME-contents .main-container {
    flex-direction: column;
  }
  .ME-contents .main-container .text-lg {
    font-size: 20px !important;
  }
}

.BG-contents {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
}
.BG-contents .content-body {
  width: calc(100% - 48px);
  margin: 0 24px;
}
.BG-contents .content-body .main-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
}
.BG-contents .content-body .main-container__img {
  width: 300px;
  height: auto;
}
.BG-contents .content-body .main-container .right-contents {
  max-width: 740px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 56px;
}
.BG-contents .content-body .main-container .right-contents .text-wrap__lg {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}
.BG-contents .content-body .main-container .right-contents .text-wrap__md {
  color: #616161;
}
@media (max-width: 768px) {
  .BG-contents {
    padding: 64px 0;
  }
  .BG-contents .content-body .main-container {
    flex-direction: column;
    gap: 40px;
  }
  .BG-contents .content-body .main-container .right-contents {
    padding: 0 16px;
    gap: 40px;
  }
}

.purpose-contents {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
  background-color: rgba(0, 160, 152, 0.04);
}
.purpose-contents .content-body {
  width: calc(100% - 48px);
  margin: 0 24px;
}
.purpose-contents .content-body .main-container {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: column;
  gap: 80px;
  max-width: 940px;
  margin: 0 auto;
}
.purpose-contents .content-body .main-container .item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  margin-right: auto;
}
.purpose-contents .content-body .main-container .item__reverce {
  margin-right: 0 !important;
  margin-left: auto;
  flex-direction: row-reverse;
}
.purpose-contents .content-body .main-container .item .text-wrap {
  max-width: 500px;
}
.purpose-contents .content-body .main-container .item .text-wrap__lg {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}
.purpose-contents .content-body .main-container .item .text-wrap__md {
  color: #616161;
}
.purpose-contents .content-body .main-container .item__img {
  width: 80px;
  height: auto;
}
@media (max-width: 600px) {
  .purpose-contents .content-body .main-container {
    margin: 0 16px;
  }
  .purpose-contents .content-body .main-container .item {
    flex-direction: column-reverse;
    gap: 16px;
  }
}

.issue-contents {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
}
.issue-contents .content-body {
  width: calc(100% - 48px);
  margin: 0 24px;
}
.issue-contents .content-body .main-container {
  margin: 0 auto;
}
.issue-contents .content-body .main-container .sub-text {
  margin-bottom: 40px;
}
.issue-contents .content-body .main-container .item-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 120px;
}
.issue-contents .content-body .main-container .item-list .item {
  min-width: 435px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.issue-contents .content-body .main-container .item-list .item__name {
  font-weight: 700;
  margin-bottom: 12px;
  font-size: 20px;
  width: 50%;
  padding-bottom: 12px;
  border-bottom: 2px solid #eee;
  text-align: center;
}
.issue-contents .content-body .main-container .item-list .item__detail {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1100px) {
  .issue-contents .content-body .main-container .item-list .item__detail {
    flex-direction: column;
  }
}
.issue-contents .content-body .main-container .item-list .item__detail .img-wrap {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.issue-contents .content-body .main-container .item-list .item__detail .img-wrap img {
  width: 120px;
  height: auto;
}
.issue-contents .content-body .main-container .item-list .item__detail ul li {
  margin-bottom: 8px;
}
.issue-contents .content-body .main-container .item-list .item__detail ul li::marker {
  color: #616161;
}
@media (max-width: 1100px) {
  .issue-contents .item {
    max-width: 295px !important;
  }
}
@media (max-width: 768px) {
  .issue-contents .content-body .main-container {
    margin: 0 16px;
  }
  .issue-contents .content-body .main-container .item-list {
    flex-direction: column;
    gap: 60px;
  }
  .issue-contents .content-body .main-container .item-list .item__name {
    margin-bottom: 12px;
  }
  .issue-contents .content-body .main-container .item-list .item__detail ul {
    margin: 12px 0 0 0;
  }
}

.persona-contents {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
  background-color: rgba(0, 160, 152, 0.04);
}
.persona-contents .content-body {
  width: calc(100% - 48px);
  margin: 0 24px;
}
.persona-contents .content-body .main-container {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
}
.persona-contents .content-body .main-container .left-container {
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
  gap: 24px;
}
.persona-contents .content-body .main-container .left-container .name-wrap {
  display: flex;
  justify-content: start;
  align-items: center;
}
.persona-contents .content-body .main-container .left-container .name-wrap__img {
  width: 120px;
  height: auto;
  border-radius: 50%;
  background-color: #fff;
}
.persona-contents .content-body .main-container .left-container .name-wrap__name {
  margin-left: 40px;
  font-size: 20px;
  font-weight: 700;
}
.persona-contents .content-body .main-container .right-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 60px;
}
.persona-contents .content-body .main-container .right-container .list-wrap {
  padding: 20px 24px 16px 24px;
  border: 2px solid #00A098;
  border-radius: 12px;
  background-color: #fff;
  position: relative;
}
.persona-contents .content-body .main-container .right-container .list-wrap::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 12px;
  height: 2px;
  background: white;
  z-index: 1;
  width: 64px;
}
.persona-contents .content-body .main-container .right-container .list-wrap__title {
  font-size: 20px;
  font-weight: 700;
  color: #00A098;
  position: absolute;
  top: -20px;
  z-index: 2;
  letter-spacing: 4px;
}
@media (max-width: 768px) {
  .persona-contents .content-body .main-container {
    margin: 0 16px;
    flex-direction: column;
    gap: 60px;
  }
}

.PP-contents {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
}
.PP-contents .content-body {
  width: calc(100% - 48px);
  margin: 0 24px;
}
.PP-contents .content-body .main-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 120px;
}
.PP-contents .content-body .main-container .item {
  width: 100%;
  max-width: 252px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.PP-contents .content-body .main-container .item .img-wrap {
  width: 120px;
  height: auto;
  border-radius: 50%;
}
.PP-contents .content-body .main-container .item .img-wrap img {
  width: 100%;
  height: auto;
}
.PP-contents .content-body .main-container .item .text-lg {
  font-size: 20px;
  font-weight: 700;
  margin: 16px 0 12px 0;
}
.PP-contents .content-body .main-container .item .text-md {
  color: #616161;
}
@media (max-width: 768px) {
  .PP-contents {
    padding: 64px 0;
  }
  .PP-contents .content-body .main-container {
    flex-direction: column;
    gap: 60px;
  }
  .PP-contents .content-body .main-container .text-lg {
    font-size: 18px !important;
    margin: 12px 0 8px 0 !important;
  }
}

.SUI-contents {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
  background-color: rgba(0, 160, 152, 0.04);
}
.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: #00A098;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
  padding: 0 8px;
  letter-spacing: 4px;
  background-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: #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;
  }
}

.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;
}
.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: #00A098;
  border-color: #00A098;
  transition: background-color 0.1s ease;
}
.UID-contents .content-body .main-container .link-figma:hover {
  background-color: rgba(0, 160, 152, 0.04);
}
.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=creators.css.map */