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

.firstview {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-top: 60px;
  gap: 80px;
}
.firstview .content-body .title {
  margin: 0 24px 16px 24px;
}
.firstview .content-body .top-images {
  height: 100%;
  height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 24px;
}
.firstview .content-body .top-images .left-contents {
  height: 100%;
  width: 40px;
  background-color: #fff;
  position: relative;
}
.firstview .content-body .top-images .top-img {
  text-align: end;
  position: relative;
  height: calc(100% - 40px);
  width: 100%;
  overflow: hidden;
}
.firstview .content-body .top-images .top-img img {
  width: auto; /* 幅を自動調整 */
  height: 100%; /* 高さをコンテナの高さに合わせる */
  position: absolute; /* 絶対位置 */
  top: 50%; /* 垂直中央に配置 */
  left: 50%; /* 水平中央に配置 */
  transform: translate(-50%, -50%); /* 中心点を合わせる */
}
.firstview .content-body .top-images .right-contents {
  height: 100%;
  width: 40px;
  background-color: #fff;
  position: relative;
}
.firstview .content-body .top-images .right-contents .box {
  transform: scale(-1, -1);
  position: static;
}
.firstview .content-body .top-images .name-contents {
  position: absolute;
  top: auto;
  right: 0;
  padding: 16px 40px;
  background-color: #fff;
}
.firstview .content-body .top-images .name-contents .name {
  font-weight: 900;
  font-size: 48px;
  letter-spacing: 4px;
  text-align: end;
}
.firstview .content-body .top-images .name-contents .sub-text {
  font-weight: 700;
  font-size: 20px;
  margin-top: 8px;
  letter-spacing: 1px;
}
@media (max-width: 768px) {
  .firstview {
    padding-top: 40px !important;
  }
  .firstview .content-body .title {
    font-size: 28px;
  }
  .firstview .content-body .top-images .name-contents {
    bottom: 0;
    padding: 8px 32px;
  }
  .firstview .content-body .top-images .name-contents .name {
    font-size: 34px;
    letter-spacing: 2px;
  }
  .firstview .content-body .top-images .name-contents .sub-text {
    font-size: 16px;
  }
}

.contents-list {
  background-color: #F5F5F5;
}
.contents-list .content-body {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 80px;
  margin: 0 24px;
  width: calc(100% - 48px);
  max-width: 1352px !important;
}
.contents-list .content-body .list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}
.contents-list .content-body .list__item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.contents-list .content-body .list__item__title {
  font-size: 24px;
}
.contents-list .content-body .list__item img {
  max-width: 314px;
  width: 100%;
  height: 200px;
  background-color: #fff;
  border-radius: 8px;
}
@media (max-width: 1400px) {
  .contents-list .content-body {
    gap: 80px !important;
    margin-bottom: 40px;
  }
  .contents-list .content-body .list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 314px));
    gap: 80px 48px;
    justify-content: center;
  }
  .contents-list .content-body .list__item {
    gap: 8px !important;
    width: auto;
  }
  .contents-list .content-body img {
    height: 120px;
  }
}
@media (max-width: 972px) {
  .contents-list .contents-title {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .contents-list .content-body .list {
    gap: 40px 24px;
  }
  .contents-list .content-body .list__item__title {
    font-size: 20px;
  }
  .contents-list .content-body .list__item .img-wrap {
    aspect-ratio: 157/100;
    block-size: 100%;
    inline-size: auto;
    max-inline-size: 100%;
  }
  .contents-list .content-body .list__item img {
    width: 100%;
    height: 100%;
  }
}

.profile-contents .content-body {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 80px;
  margin: 0 24px;
  width: calc(100% - 48px);
}
.profile-contents .content-body .profile {
  display: flex;
  justify-content: center;
  gap: 80px;
}
.profile-contents .content-body .profile .left-contents {
  width: 350px;
  min-width: 350px;
  height: 500px;
  border-radius: 8px;
}
.profile-contents .content-body .profile .right-contents {
  min-width: 340px;
}
.profile-contents .content-body .profile .right-contents .name-wrap {
  display: flex;
  justify-content: start;
  flex-direction: column;
  gap: 8px;
}
.profile-contents .content-body .profile .right-contents .name-wrap .name-en {
  font-size: 44px;
  letter-spacing: 4px;
}
.profile-contents .content-body .profile .right-contents .name-wrap .sub-name-wrap {
  display: flex;
  justify-content: start;
  flex-direction: column;
  gap: 8px;
}
.profile-contents .content-body .profile .right-contents .name-wrap .sub-name-wrap .sub-name {
  display: flex;
  align-items: center;
  gap: 24px;
}
.profile-contents .content-body .profile .right-contents .name-wrap .sub-name-wrap .sub-name__jp {
  font-size: 18px;
  font-weight: 500;
  color: #616161;
}
.profile-contents .content-body .profile .right-contents .name-wrap .sub-name-wrap .sub-name__birth {
  font-size: 16px;
  font-weight: 400;
  color: #616161;
}
.profile-contents .content-body .profile .right-contents .name-wrap .sub-name-wrap .job {
  font-size: 16px;
  font-weight: 600;
  color: #616161;
  letter-spacing: 1px;
}
.profile-contents .content-body .profile .right-contents .detail {
  margin: 56px 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  max-width: 600px;
}
.profile-contents .content-body .profile .right-contents .skill-wrap {
  display: flex;
  justify-content: start;
  flex-direction: column;
  gap: 16px;
}
.profile-contents .content-body .profile .right-contents .skill-wrap .skill-title {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 2px;
}
.profile-contents .content-body .profile .right-contents .skill-wrap .skill-list {
  display: flex;
  justify-content: start;
  flex-direction: column;
  gap: 8px;
}
.profile-contents .content-body .profile .right-contents .skill-wrap .skill-list .skill-item {
  display: flex;
  align-items: center;
  font-size: 16px;
}
.profile-contents .content-body .profile .right-contents .skill-wrap .skill-list .skill-item__title {
  font-weight: 600;
  letter-spacing: 1;
  width: 120px;
}
.profile-contents .content-body .profile .right-contents .skill-wrap .skill-list .skill-item__detail {
  font-weight: 500;
}
@media (max-width: 768px) {
  .profile-contents .content-body {
    gap: 40px !important;
  }
  .profile-contents .contents-title {
    font-size: 28px;
  }
  .profile-contents .profile {
    flex-direction: column;
    align-items: center;
    gap: 40px !important;
    margin: 0 24px;
    width: calc(100% - 48px);
  }
  .profile-contents .profile .left-contents {
    width: 327px !important;
    min-width: 327px !important;
  }
  .profile-contents .profile .right-contents .name-en {
    font-size: 34px !important;
    letter-spacing: 3px !important;
  }
  .profile-contents .profile .right-contents .detail {
    margin: 40px 0 !important;
  }
  .profile-contents .profile .right-contents .skill-item {
    align-items: baseline !important;
  }
}

.what-contents {
  background-color: #F5F5F5;
}
.what-contents .content-body {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 80px;
  margin: 0 24px;
  width: calc(100% - 48px);
}
.what-contents .content-body .list {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  max-width: 1120px;
  width: 100%;
  box-sizing: border-box;
}
.what-contents .content-body .list__item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  max-width: 314px;
  padding: 16px;
  background-color: #fff;
  border-radius: 12px;
}
.what-contents .content-body .list__item__title {
  font-size: 24px;
  margin-bottom: 8px;
}
.what-contents .content-body .list__item .item-img {
  width: 160px;
  height: 160px;
}
.what-contents .content-body .list__item .mr {
  margin-right: 52px;
}
.what-contents .content-body .list__item__text {
  font-weight: 500;
  font-size: 14px;
  color: #616161;
}
.what-contents .content-body .list .middle {
  margin: 0 16px;
}
@media (max-width: 768px) {
  .what-contents .contents-title {
    font-size: 28px;
  }
  .what-contents .list {
    flex-direction: column;
    align-items: center !important;
    justify-content: center !important;
    gap: 40px !important;
  }
  .what-contents .list__item {
    gap: 0 !important;
    max-width: 280px !important;
  }
  .what-contents .list__item__title {
    margin: 0 !important;
  }
}

.ds-contents .content-body {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 80px;
  margin: 0 24px;
  width: calc(100% - 48px);
  max-width: 1120px;
}
.ds-contents .content-body .contents-title {
  text-align: center;
}
.ds-contents .content-body .flex-contents {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
}
.ds-contents .content-body .flex-contents .left-contents {
  width: 220px;
  min-width: 220px;
  margin: 16px 0;
}
.ds-contents .content-body .flex-contents .right-contents {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.ds-contents .content-body .flex-contents .right-contents__title-wrap__category {
  font-size: 14px;
}
.ds-contents .content-body .flex-contents .right-contents__title-wrap__title {
  font-size: 20px;
  font-weight: bold;
}
.ds-contents .content-body .flex-contents .right-contents .ds-lead {
  max-width: 600px;
  font-size: 16px;
  line-height: 26px;
  color: #000;
  text-align: start;
  margin: 0;
}
.ds-contents .content-body .flex-contents .right-contents .ds-lead__sub {
  font-size: 14px;
  color: #616161;
  line-height: unset;
}
.ds-contents .content-body .flex-contents .right-contents .ds-actions {
  display: flex;
  justify-content: start;
  align-items: center;
}
.ds-contents .content-body .flex-contents .right-contents .ds-actions .ds-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border: 1px solid #000;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  color: #000;
  background: #fff;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.ds-contents .content-body .flex-contents .right-contents .ds-actions .ds-button:hover {
  color: #fff;
  background-color: #000;
}
.ds-contents .content-body .flex-contents .right-contents .ds-actions .ds-button:active {
  transform: translateY(1px);
}
.ds-contents .content-body .flex-contents .right-contents .ds-actions .ds-button .material-symbols-outlined {
  font-size: 18px;
  line-height: 1;
}
@media (max-width: 768px) {
  .ds-contents .content-body .contents-title {
    font-size: 28px;
  }
  .ds-contents .content-body .flex-contents {
    flex-direction: column;
    gap: 16px;
  }
  .ds-contents .content-body .flex-contents .right-contents {
    gap: 16px;
  }
}

.works-contents {
  background-color: #F5F5F5;
}
.works-contents .content-body {
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 40px;
  margin: 0 24px;
  width: calc(100% - 48px);
}
.works-contents .content-body .contents-title {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.works-contents .content-body .contents-title .sub-text {
  font-family: "Noto Sans JP";
  font-size: 16px;
  color: #616161;
  font-weight: 500;
  margin-top: 4px;
}
.works-contents .content-body .category-title {
  font-size: 20px;
  font-weight: 800;
  padding: 8px 40px;
  background-color: #000;
  color: #fff;
  line-height: 1;
  border-radius: 50px;
}
.works-contents .content-body .mt-40 {
  margin-top: 40px;
}
.works-contents .content-body .list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1120px;
  width: 100%;
  box-sizing: border-box;
}
.works-contents .content-body .list:last-child {
  margin-bottom: 160px;
}
.works-contents .content-body .list__item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 314px;
  margin: 0 auto 56px auto;
}
.works-contents .content-body .list__item img {
  max-width: 346px;
  width: 100%;
  height: 200px;
  border-radius: 8px;
}
.works-contents .content-body .list__item .text-wrap {
  text-align: center;
}
.works-contents .content-body .list__item__title {
  font-size: 20px;
  font-weight: 600;
  height: 28px;
}
.works-contents .content-body .list__item__text {
  font-weight: 500;
  color: #616161;
  font-size: 14px;
  letter-spacing: 1px;
  margin: 4px 0;
}
.works-contents .content-body .list__item__day {
  font-weight: 500;
  color: #616161;
  font-size: 14px;
  letter-spacing: 1px;
}
@media (max-width: 1080px) {
  .works-contents .content-body .list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 40px !important;
    justify-content: center;
    align-items: center;
  }
  .works-contents .content-body .list__item {
    gap: 8px !important;
    max-width: 500px;
  }
  .works-contents .content-body .list__item__title {
    font-size: 18px !important;
    height: auto !important;
  }
  .works-contents .contents-title {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .works-contents .content-body .list {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.box {
  position: absolute;
  bottom: 0;
}
.box-sm {
  width: 6px;
  height: 8px;
  background-color: #000;
  margin-bottom: 16px;
}
.box-md {
  width: 6px;
  height: 40px;
  background-color: #000;
  margin-bottom: 40px;
}
.box-lg {
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-left: 1px solid #000;
  border-bottom: 1px solid #000;
}

.content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 80px;
}

.img-wrap {
  position: relative;
  max-width: 314px;
  width: 100%;
  height: 200px;
  cursor: pointer;
  box-sizing: border-box;
}
.img-wrap .img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* 50%透過の黒 */
  opacity: 0; /* 初期状態は透明 */
  transition: opacity 0.3s ease; /* フェードインのトランジション */
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}
.img-wrap .img-overlay__text {
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 16px;
  border: 1px solid #fff;
  color: #fff;
}
.img-wrap:hover .img-overlay {
  opacity: 1; /* ホバー時にオーバーレイが表示 */
}

#loading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8); /* 半透明の背景 */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999; /* 他の要素の上に表示 */
  transition: opacity 0.3s; /* フェードアウトのアニメーション */
}
#loading img {
  width: auto;
  height: 56px;
  margin-bottom: 16px;
}
#loading #loadingBar-wrap {
  width: 200px; /* 最大幅 */
  height: 4px;
  background-color: #ddd; /* バーの背景 */
  overflow: hidden; /* オーバーフローを隠す */
  position: relative;
  border-radius: 8px;
}
#loading #loadingBar-wrap #loadingBar {
  width: 0;
  height: 4px;
  border-radius: 8px;
  background-color: #000; /* バーの色 */
  transition: width 1s ease-in-out; /* スムーズなアニメーション */
}

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

#top-content {
  transition: opacity 0.5s ease; /* フェードインのアニメーション */
}

.disp-none {
  display: none !important;
}/*# sourceMappingURL=home.css.map */