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

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul[role=list], ol[role=list] {
  list-style: none;
}

li {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img, picture {
  max-width: 100%;
  display: block;
}

input, button, textarea, select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
:root {
  --ease-soft-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.4, 0, 1, 1);
}

@keyframes arrowmove {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(15px);
  }
  100% {
    transform: translateY(0);
  }
}
header {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}
header .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 90vw;
  max-width: 1728px;
  padding: 40px 0 0 0;
}
header .container .logo {
  width: 53px;
  height: 53px;
}
header .container .logo .logo-light {
  display: block;
}
header .container .logo .logo-dark-mode {
  display: none;
}
@media (max-width: 767px) {
  header .container .logo {
    width: 30px;
    height: auto;
  }
}
header .container nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
header .container nav ul {
  display: flex;
  flex-direction: row;
  padding: 0;
}
header .container nav ul li:not(:last-child) {
  padding-right: 100px;
}
@media screen and (max-width: 999px) {
  header .container nav ul li:not(:last-child) {
    padding-right: 50px;
  }
}
header .container nav ul li a {
  position: relative;
}
header .container nav ul li a:after {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0, 1);
  transition: 0.3s;
}
header .container nav ul li a:hover {
  opacity: 0.5;
}
header .container nav ul li a:hover:after {
  transform: scale(1, 1);
}
header .container .icon-menu {
  display: flex;
  flex-direction: row;
}
header .container .icon-menu .mind {
  padding-right: 25px;
}
@media screen and (max-width: 999px) {
  header .container .icon-menu .mind {
    padding-right: 5px;
  }
}
header .container .icon-menu .icon {
  width: 53px;
  height: 53px;
  border: solid 0.56px #3D4951;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(250, 250, 250, 0.5);
}
@media screen and (max-width: 999px) {
  header .container .icon-menu .icon {
    width: 40px;
    height: 40px;
  }
}
header .container .icon-menu .icon img {
  width: 35px;
  height: auto;
}
@media screen and (max-width: 999px) {
  header .container .icon-menu .icon img {
    width: 25px;
  }
}
header .container .icon-menu p {
  opacity: 0;
  line-height: 1.5rem;
  padding: 5px 0 0 0;
}
header .container .icon-menu a {
  display: inline-block;
}
header .container .icon-menu a:hover {
  transform: translateY(-5px);
}
header .container .icon-menu a:hover .icon {
  background-image: linear-gradient(to bottom right, #E5E4CA, #C3D8D8);
}
header .container .icon-menu a:hover p {
  opacity: 1;
}

header .logo .logo-light, footer .logo .logo-light {
  display: block;
}
header .logo .logo-dark-mode, footer .logo .logo-dark-mode {
  display: none;
}

@media screen and (max-width: 767px) {
  header {
    width: 100%;
    top: auto;
    bottom: 0;
  }
  header .container {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    height: auto;
    padding: 0 10px;
    background-image: linear-gradient(to bottom right, #E5E4CA, #C3D8D8);
    z-index: 999;
  }
  header .container .logo {
    position: fixed;
    top: 20px;
    left: 15px;
    z-index: 1000;
    filter: drop-shadow(0 0 1px rgb(255, 255, 255)) drop-shadow(0 0 1px rgba(255, 255, 255, 0.8)) drop-shadow(0 0 1px rgba(255, 255, 255, 0.8));
  }
  header .container #g-menu {
    display: flex;
    height: 40px;
    width: 40px;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    position: relative;
    z-index: 1001;
  }
  header .container #g-menu span,
  header .container #g-menu span:before,
  header .container #g-menu span:after {
    content: "";
    display: block;
    height: 1px;
    width: 25px;
    border-radius: 3px;
    background-color: #3D4951;
    position: absolute;
    transition: transform 0.5s ease;
  }
  header .container #g-menu span:before {
    bottom: 8px;
  }
  header .container #g-menu span:after {
    top: 8px;
  }
  header .container nav {
    transform: none;
    left: 0;
    position: static;
    z-index: 100;
    width: 100%;
    height: 100%;
  }
  header .container nav#global.active #g-menu #g-menu span,
  header .container nav#global.active #g-menu #g-menu span:before,
  header .container nav#global.active #g-menu #g-menu span:after {
    transform: none;
  }
  header .container nav#global.active #g-menu span {
    background-color: rgba(255, 255, 255, 0);
  }
  header .container nav#global.active #g-menu span:before {
    bottom: 0;
    transform: rotate(45deg);
  }
  header .container nav#global.active #g-menu span:after {
    top: 0;
    transform: rotate(-45deg);
  }
  header .container nav#global ul {
    max-height: 0;
    visibility: hidden;
    opacity: 0;
    overflow: hidden;
    transition: opacity 0.2s linear, visibility 0.2s linear;
  }
  header .container nav#global ul li {
    opacity: 0;
    transform: translateY(100px) scale(0.95);
    filter: blur(4px);
    transition: transform 1s var(--ease-soft-out), opacity 1s var(--ease-soft-out), filter 1s var(--ease-soft-out);
  }
  header .container nav#global.active ul {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    position: fixed;
    width: 100vw;
    height: 100vh;
    max-height: 100vh;
    top: 0;
    left: 0;
    margin: 0;
    padding: 100px 0 38px 15px;
    background-color: rgba(249, 248, 245, 0.98);
    visibility: visible;
    opacity: 1;
  }
  header .container nav#global.active ul li {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
  header .container nav#global.active ul li:nth-child(1) {
    transition-delay: 0.1s;
  }
  header .container nav#global.active ul li:nth-child(2) {
    transition-delay: 0.2s;
  }
  header .container nav#global.active ul li:nth-child(3) {
    transition-delay: 0.3s;
  }
  header .container nav#global.active ul li:nth-child(4) {
    transition-delay: 0.4s;
  }
  header .container nav#global.active ul li a span {
    background: linear-gradient(68deg, #C3D8D8, #E5E4CA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-size: 8rem;
    font-weight: 100;
  }
  header .container nav#global.active ul li a:hover {
    opacity: 1;
  }
  header .container nav#global.active ul li a:after {
    transform: scale(0);
  }
  header .container .icon-menu {
    display: flex;
    z-index: 1000;
    flex-direction: row;
    position: fixed;
    top: 17px;
    left: 65px; 
    bottom: auto;
    right: auto;
  }
  header .container .icon-menu.active {
    display: flex;
    z-index: 1000;
    flex-direction: row;
    position: fixed;
    top: 17px;
    left: 65px;
  }
  header .container .icon-menu .mind {
    padding-right: 10px;
  }
  header .container .icon-menu a p {
    display: none;
  }
}
.fixed_container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: transparent;
}
.fixed_container .fixed {
  z-index: 1001;
}
.fixed_container .fixed .date_time {
  position: fixed;
  top: 50%;
  left: 20px;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  letter-spacing: 0.45em;
  font-size: 1.6rem;
  display: flex;
  flex-direction: row;
  z-index: 1001;
}
@media screen and (max-width: 1199px) {
  .fixed_container .fixed .date_time {
    left: 1vw;
  }
}
.fixed_container .fixed .date_time p:nth-of-type(3), .fixed_container .fixed .date_time p:nth-of-type(5) {
  padding: 0 0 20px 0;
}
.fixed_container .fixed .date_time p:nth-of-type(5) {
  padding: 0 0 10px 0;
}
.fixed_container .fixed .date_time p:nth-of-type(6) {
  padding: 10px 0 0 0;
}
.fixed_container .fixed .mode {
  position: fixed;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  display: flex;
  flex-direction: row;
  font-weight: 200;
  font-size: 2rem;
  z-index: 1001;
}
@media screen and (max-width: 1199px) {
  .fixed_container .fixed .mode {
    right: 1vw;
  }
}
.fixed_container .fixed .mode p {
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1.75rem;
}
.fixed_container .fixed .mode p:before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  border: 1px solid #3D4951;
  margin: 0 0 5px 0;
}
.fixed_container .fixed .mode p:nth-child(2) {
  padding: 40px 0 0 0;
}
.fixed_container .fixed .mode p:hover {
  opacity: 0.5;
}
.fixed_container .fixed .mode p.light.active:before {
  background: #A8BABD;
}
.fixed_container .fixed .mode p.dark.active:before {
  background: #8F91AA;
}
@media screen and (max-width: 767px) {
  .fixed_container .fixed .date_time {
    display: none;
  }
  .fixed_container .fixed .mode {
    top: auto;
    right: 10px;
    bottom: 10px;
    transform: none;
    z-index: 1000;
    writing-mode: horizontal-tb;
  }
  .fixed_container .fixed .mode p {
    font-size: 1.2rem;
  }
  .fixed_container .fixed .mode p:nth-child(2) {
    padding: 0 0 0 10px;
  }
  .fixed_container .fixed .mode p:before {
    width: 10px;
    height: 10px;
    border: solid 0.75px #3D4951;
    margin: 0 5px 0 0;
  }
}
.fixed_container .progress {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  align-items: end;
  z-index: 1000;
  transition: all 0.5s ease;
  padding: 10px 20px;
  --after-opacity: 0;
}
.fixed_container .progress::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom right, #E5E4CA, #C3D8D8);
  border-radius: 50%;
  filter: blur(10px);
  z-index: -1;
  opacity: var(--after-opacity);
}
.fixed_container .progress .button {
  position: absolute;
  top: -17px;
  right: -6px;
  width: 24px;
  height: 24px;
  border: 0.75px solid #3D4951;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s ease;
}
.fixed_container .progress p {
  font-size: 2.5rem;
  font-weight: 200;
}
.fixed_container .progress p:nth-child(3) {
  font-size: 4.85rem;
  font-weight: 100;
}
.fixed_container .progress p:nth-child(4) {
  font-size: 1.2rem;
  font-weight: 300;
  text-align: start;
}
@media screen and (max-width: 767px) {
  .fixed_container .progress {
    position: fixed;
    bottom: 55px;
    right: 15px;
    display: flex;
    background-color: rgba(244, 245, 247, 0.8);
    box-shadow: 1px 1px 10px rgb(255, 255, 255);
  }
  .fixed_container .progress.active {
    display: flex;
    bottom: 15px;
    right: 15px;
    transform: none;
    z-index: 999;
  }
  .fixed_container .progress.active p {
    font-size: 2rem;
    font-weight: 200;
  }
  .fixed_container .progress.active p:nth-child(3) {
    font-size: 4.5rem;
    font-weight: 100;
  }
  .fixed_container .progress.active p:nth-child(4) {
    font-size: 1.2rem;
    font-weight: 300;
    text-align: start;
  }
}
.fixed_container .progress.mini {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 0.75px solid #3D4951;
  background-color: #F4F5F7;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 55px;
  right: 15px;
}
@media screen and (max-width: 767px) {
  .fixed_container .progress.mini {
    background-image: linear-gradient(to bottom right, #E5E4CA, #C3D8D8);
  }
}
.fixed_container .progress.mini:before {
  content: "← View More";
  position: absolute;
  top: -20px;
  right: 0;
  text-wrap: nowrap;
  transition: opacity 0.5s ease;
  opacity: 0;
}
.fixed_container .progress.mini .button {
  display: none;
}
.fixed_container .progress.mini p {
  display: none;
}
.fixed_container .progress.mini p:nth-child(3) {
  display: block;
  font-size: 2.3rem;
}
.fixed_container .progress.mini p:nth-child(3) span {
  font-size: 1.7rem;
}
.fixed_container .progress:hover {
  cursor: pointer;
  transform: translateX(5px);
}
@media screen and (max-width: 767px) {
  .fixed_container .progress:hover {
    transform: translateX(0);
  }
}
.fixed_container .progress:hover .button {
  background-image: linear-gradient(to bottom right, #E5E4CA, #C3D8D8);
}
.fixed_container .progress.mini:hover {
  transform: translateX(0);
  background-image: linear-gradient(to bottom right, #E5E4CA, #C3D8D8);
}
.fixed_container .progress.mini:hover:before {
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .fixed_container .archive {
    position: static !important;
    transform: none !important;
    z-index: auto !important;
  }
  .fixed_container body .progress {
    position: fixed !important;
    bottom: 55px !important;
    right: 15px !important;
    top: auto !important;
    left: auto !important;
    z-index: 1000 !important;
  }
  .fixed_container body .progress.mini.active {
    position: fixed !important;
    top: auto !important;
    left: auto !important;
    z-index: 1001 !important;
  }
}

footer {
  width: 100%;
  height: auto;
  background-image: linear-gradient(68deg, #C3D8D8, #E5E4CA);
}
@media screen and (max-width: 767px) {
  footer {
    display: none;
  }
}
footer .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 90vw;
  max-width: 1728px;
  padding: 30px 0;
}
footer .container .logo {
  width: 45px;
  height: 45px;
}
@media (max-width: 767px) {
  footer .container .logo {
    width: 38px;
    height: auto;
  }
}
footer .container nav ul {
  display: flex;
  flex-direction: row;
}
footer .container nav ul li:not(:last-child) {
  padding-right: 90px;
}
footer .container nav ul li a {
  position: relative;
}
footer .container nav ul li a:after {
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scale(0, 1);
  transition: 0.3s;
}
footer .container nav ul li a:hover {
  opacity: 0.5;
}
footer .container nav ul li a:hover:after {
  transform: scale(1, 1);
}
footer p {
  padding: 0 0 4px 0;
  text-align: center;
  font-size: 1rem;
  font-weight: 200;
}

main .home {
  width: 100%;
  height: 770px;
  padding: 0;
}
@media screen and (max-width: 999px) {
  main .home {
    height: 84vh;
  }
}
@media screen and (max-width: 767px) {
  main .home {
    height: 900px;
  }
}
main .home .container {
  padding: 120px 0 0 0;
  height: 100%;
}
@media screen and (max-width: 999px) {
  main .home .container {
    padding: 150px 0 0 0;
  }
}
@media screen and (max-width: 767px) {
  main .home .container {
    padding: 50px 0;
  }
}
@media screen and (max-width: 399px) {
  main .home .container {
    padding: 0;
  }
}
main .home .wrapper {
  height: 100%;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(9, 1fr);
}
@media screen and (max-width: 999px) {
  main .home .wrapper {
    width: 85%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  main .home .wrapper {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(8, 1fr);
  }
}
@media screen and (max-width: 390px) {
  main .home .wrapper {
    padding: 80px 0 0 0;
  }
}
@keyframes slideDownAndFadeIn {
  0% {
    transform: translateY(10px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
main .home .wrapper .card {
  transition: background-color 0.3s ease, color 0.3s ease;
}
main .home .wrapper .card.slide-in {
  animation: slideDownAndFadeIn 5s var(--ease-soft-out) forwards;
}
main .home .wrapper .card:nth-of-type(1) {
  grid-column: 1/5;
  grid-row: 1/4;
}
@media screen and (max-width: 767px) {
  main .home .wrapper .card:nth-of-type(1) {
    overflow: hidden;
  }
}
main .home .wrapper .card:nth-of-type(1) .description p {
  letter-spacing: 0.75em;
}
@media screen and (max-width: 399px) {
  main .home .wrapper .card:nth-of-type(1) .description p {
    font-size: 1.15rem;
  }
}
main .home .wrapper .card:nth-of-type(1) .description h1 {
  font-weight: 100;
}
@media screen and (max-width: 999px) {
  main .home .wrapper .card:nth-of-type(1) .description h1 {
    font-size: 7rem;
  }
}
@media screen and (max-width: 399px) {
  main .home .wrapper .card:nth-of-type(1) .description h1 {
    font-size: min(6rem, 17vw);
    max-width: 80vw;
    white-space: nowrap;
  }
}
main .home .wrapper .card:nth-of-type(1) .description h3 {
  letter-spacing: 1.03em;
  font-weight: 400;
}
@media screen and (max-width: 999px) {
  main .home .wrapper .card:nth-of-type(1) .description h3 {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 767px) {
  main .home .wrapper .card:nth-of-type(1) {
    grid-column: 1/-1;
    grid-row: 2/4;
    align-self: end;
  }
  main .home .wrapper .card:nth-of-type(1) h1 {
    font-size: 6rem;
  }
  main .home .wrapper .card:nth-of-type(1) h3 {
    font-size: 1.4rem;
  }
}
main .home .wrapper .card:nth-of-type(2) {
  grid-column: -3/-1;
  grid-row: 1/4;
  width: auto;
  height: auto;
}
main .home .wrapper .card:nth-of-type(2) .thumb {
  margin: 32px 0 10px 0;
  position: relative;
  display: inline-block;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  main .home .wrapper .card:nth-of-type(2) .thumb {
    margin: 0;
  }
}
main .home .wrapper .card:nth-of-type(2) .thumb::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: auto;
  background: transparent;
  z-index: 2;
}
main .home .wrapper .card:nth-of-type(2) .thumb picture {
  overflow: hidden;
}
main .home .wrapper .card:nth-of-type(2) .thumb img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}
main .home .wrapper .card:nth-of-type(2) .thumb .mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  background: linear-gradient(to bottom right, rgba(229, 228, 202, 0.75), rgba(195, 216, 216, 0.75));
  -webkit-transition: all 0.7s ease;
  z-index: 3;
  transition: opacity 0.7s ease, background 0.7s ease;
}
main .home .wrapper .card:nth-of-type(2) .thumb .mask p {
  color: white;
  letter-spacing: 0.25rem;
  font-size: 2rem;
}
main .home .wrapper .card:nth-of-type(2) .thumb:hover img {
  transform: scale(1.1);
}
main .home .wrapper .card:nth-of-type(2) .thumb:hover .mask {
  opacity: 1;
}
main .home .wrapper .card:nth-of-type(2) h4 {
  letter-spacing: 0.27rem;
  color: #A8BABD;
  font-weight: 400;
  text-align: end;
}
@media screen and (max-width: 767px) {
  main .home .wrapper .card:nth-of-type(2) h4 {
    writing-mode: vertical-rl;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 399px) {
  main .home .wrapper .card:nth-of-type(2) h4 {
    writing-mode: horizontal-tb;
    text-align: start;
  }
}
@media screen and (max-width: 999px) {
  main .home .wrapper .card:nth-of-type(2) {
    grid-column: -4/-1;
    grid-row: 3/4;
  }
}
@media screen and (max-width: 767px) {
  main .home .wrapper .card:nth-of-type(2) {
    grid-column: 1/-1;
    grid-row: 7/-1;
    justify-self: end;
    display: flex;
    flex-direction: row-reverse;
    object-fit: contain;
    align-self: end;
  }
  main .home .wrapper .card:nth-of-type(2) .thumb {
    padding: 0;
    width: 52vw;
    height: auto;
  }
}
@media screen and (max-width: 399px) {
  main .home .wrapper .card:nth-of-type(2) {
    flex-direction: column;
    margin: 0 0 20px 0;
  }
}
main .home .wrapper .card:nth-of-type(3) {
  grid-column: 1/3;
  grid-row: 4/8;
  align-self: center;
  width: 230px;
  height: auto;
  object-fit: contain;
}
@media screen and (max-width: 999px) {
  main .home .wrapper .card:nth-of-type(3) {
    grid-row: 4/6;
  }
}
main .home .wrapper .card:nth-of-type(3) .thumb {
  width: 94%;
  height: 94%;
  position: relative;
}
main .home .wrapper .card:nth-of-type(3) .thumb:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  background: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  opacity: 0;
  border-radius: 0;
  transition: all 0.7s ease;
}
main .home .wrapper .card:nth-of-type(3) .thumb img {
  border-radius: 0;
  transition: border-radius 0.7s ease;
}
main .home .wrapper .card:nth-of-type(3) .thumb:hover img {
  border-radius: 50%;
}
main .home .wrapper .card:nth-of-type(3) .thumb:hover:after {
  border-radius: 50%;
  opacity: 1;
}
@media screen and (max-width: 999px) {
  main .home .wrapper .card:nth-of-type(3) {
    width: 200px;
  }
  main .home .wrapper .card:nth-of-type(3) .thumb:hover:after {
    opacity: 0;
  }
}
@media screen and (max-width: 767px) {
  main .home .wrapper .card:nth-of-type(3) {
    grid-column: 2/-1;
    grid-row: 1/3;
    justify-self: end;
    align-self: flex-start;
    width: auto;
  }
  main .home .wrapper .card:nth-of-type(3) .thumb {
    width: 30vw;
    height: auto;
  }
}
main .home .wrapper .card:nth-of-type(4) {
  grid-column: 4/-2;
  grid-row: 5/8;
  z-index: 2;
}
@media screen and (max-width: 999px) {
  main .home .wrapper .card:nth-of-type(4) {
    grid-column: 4/-1;
    width: 90%;
  }
}
@media screen and (max-width: 767px) {
  main .home .wrapper .card:nth-of-type(4) {
    grid-column: 1/-1;
    grid-row: 4/6;
    align-self: center;
  }
}
main .home .wrapper .card:nth-of-type(4) p:nth-child(1) {
  font-size: 1.7rem;
  letter-spacing: 0.14em;
  line-height: 1.5;
  font-weight: 400;
  color: #A8BABD;
  padding: 0 0 12px 0;
}
@media screen and (max-width: 767px) {
  main .home .wrapper .card:nth-of-type(4) p:nth-child(1) {
    font-size: 1.3rem;
  }
}
main .home .wrapper .card:nth-of-type(4) p:nth-child(2) {
  letter-spacing: 0.06em;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  main .home .wrapper .card:nth-of-type(4) p:nth-child(2) {
    font-size: 1.1rem;
  }
}
main .home .wrapper .card:nth-of-type(5) {
  grid-column: 5/7;
  grid-row: 6/9;
  align-self: center;
  justify-self: center;
  object-fit: contain;
  width: 210px;
  height: 210px;
  position: relative;
  z-index: 1;
}
main .home .wrapper .card:nth-of-type(5) img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}
main .home .wrapper .card:nth-of-type(5)::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/home_03_2.png");
  background-repeat: no-repeat;
  opacity: 0;
  border-radius: 50%;
  clip-path: circle(50% at 50% 50%);
  background-size: 200%;
  background-position: 0 0;
  transition: background-position 3s ease;
  z-index: 2;
}
main .home .wrapper .card:nth-of-type(5):hover::after {
  background-position: 100% 100%;
  opacity: 0.5;
}
@media screen and (max-width: 999px) {
  main .home .wrapper .card:nth-of-type(5) {
    grid-row: 7/10;
    align-self: start;
  }
  main .home .wrapper .card:nth-of-type(5) .thumb {
    width: 80%;
    height: auto;
  }
  main .home .wrapper .card:nth-of-type(5)::after {
    width: 80%;
    height: 80%;
  }
}
@media screen and (max-width: 767px) {
  main .home .wrapper .card:nth-of-type(5) {
    grid-column: 1/2;
    grid-row: 6/8;
    width: auto;
    height: auto;
    justify-self: flex-start;
    align-self: start;
  }
  main .home .wrapper .card:nth-of-type(5)::after {
    width: 100%;
    height: 100%;
  }
  main .home .wrapper .card:nth-of-type(5) .thumb {
    width: 124px;
    height: auto;
  }
}
main .home .wrapper .scroll {
  grid-column: 1/2;
  grid-row: -3/-2;
  justify-self: flex-start;
  align-self: center;
  padding: 0 0 0 15px;
  transform: translateY(30px);
  position: relative;
  bottom: 1%;
}
@media screen and (max-width: 999px) {
  main .home .wrapper .scroll {
    grid-row: -2/-1;
  }
}
main .home .wrapper .scroll a {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 767px) {
  main .home .wrapper .scroll {
    display: none;
  }
}
main .home .wrapper .scroll p {
  letter-spacing: 0.18em;
  padding: 0 0 7px 0;
  white-space: nowrap;
}
main .home .wrapper .scroll .arrow {
  animation: arrowmove 3s ease-in-out infinite;
}
main .home .wrapper .thumb img.light-img,
main .home .wrapper .thumb img.dark-img {
  visibility: hidden;
  max-height: 0;
  opacity: 0;
}
main .home .wrapper .thumb img.light-img.active,
main .home .wrapper .thumb img.dark-img.active {
  visibility: visible;
  max-height: fit-content;
  opacity: 1;
}
main .home .card:nth-of-type(4):hover + .card:nth-of-type(5)::after {
  background-position: 100% 100%;
  opacity: 0.5;
}
main .works {
  padding: 100px 0 50px 0;
}
@media screen and (max-width: 767px) {
  main .works {
    padding: 75px 0;
  }
}
main .works .container .wrapper {
  padding: 50px 0 0 0;
}
@media screen and (max-width: 999px) {
  main .works .container .wrapper {
    padding: 35px 0 0 0;
  }
}
main .works .container .wrapper .card {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  padding: 35px 0;
  border-top: 0.75px solid #848D95;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
@media screen and (max-width: 999px) {
  main .works .container .wrapper .card {
    flex-direction: column;
    height: auto;
  }
}
main .works .container .wrapper .card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(229, 228, 202, 0.5), rgba(195, 216, 216, 0.5));
  transition: all 1.5s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 0;
  z-index: 1;
}
main .works .container .wrapper .card:last-child {
  border-bottom: 0.75px solid #848D95;
}
main .works .container .wrapper .card .thumb {
  aspect-ratio: 2/1.5;
  width: 35%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 1s ease;
  z-index: 2;
}
@media screen and (max-width: 999px) {
  main .works .container .wrapper .card .thumb {
    width: 50%;
    margin: 0 auto;
    padding: 0 0 25px 0;
  }
}
@media screen and (max-width: 767px) {
  main .works .container .wrapper .card .thumb {
    width: 80%;
  }
}
main .works .container .wrapper .card .thumb img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}
main .works .container .wrapper .card .description {
  padding: 0 11px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 60%;
  z-index: 2;
}
@media screen and (max-width: 999px) {
  main .works .container .wrapper .card .description {
    width: 100%;
  }
}
main .works .container .wrapper .card .description .tag {
  display: flex;
  flex-direction: row;
  font-size: 1.2rem;
  flex-wrap: wrap;
}
main .works .container .wrapper .card .description .tag span {
  padding: 5px 8px;
  border-radius: 17px;
  border: 0.5px solid #C6D3DD;
  width: fit-content;
  margin: 0 10px 10px 0;
  color: #3D4951;
}
main .works .container .wrapper .card .description .tag span.tag-自主制作 {
  background-color: #D8E2EA;
}
main .works .container .wrapper .card .description .tag span.tag-Webデザイン {
  background-color: #EDEDDC;
}
main .works .container .wrapper .card .description .tag span.tag-HTML {
  background-color: #E2EBE8;
}
main .works .container .wrapper .card .description .tag span.tag-SCSS {
  background-color: #e8dfe8;
}
main .works .container .wrapper .card .description .tag span.tag-Javascript {
  background-color: #e5efe0;
}
main .works .container .wrapper .card .description .tag span.tag-CSS {
  background-color: #d9dff3;
}
main .works .container .wrapper .card .description .tag span.tag-バナーデザイン {
  background-color: #f1e6e3;
}
main .works .container .wrapper .card .description h3 {
  letter-spacing: 0.075em;
  font-weight: 300;
  line-height: 3.5rem;
  padding: 0;
}
@media screen and (max-width: 999px) {
  main .works .container .wrapper .card .description h3 {
    font-size: 2rem;
    padding: 20px 0;
  }
}
@media screen and (max-width: 767px) {
  main .works .container .wrapper .card .description h3 {
    padding: 20px 0;
    line-height: 1.5em;
  }
}
main .works .container .wrapper .card .description h3 span {
  color: #3D4951;
  font-size: 1.5rem;
  font-weight: 400;
}
main .works .container .wrapper .card .description h3 p {
  color: #6c7f8f;
}
main .works .container .wrapper .card .description .detail span {
  border-bottom: 0.125em solid #848D95;
  font-size: 1.4rem;
  padding: 0 0 4px 0;
}
main .works .container .wrapper .card .description .detail p {
  padding: 10px 0 0 0;
}
@media screen and (max-width: 999px) {
  main .works .container .wrapper .card .description .role {
    padding: 20px 0 0 0;
  }
}
main .works .container .wrapper .card:hover::before {
  opacity: 1;
}
main .works .container .wrapper .card:hover .thumb {
  transform: scale(1.1);
}
main .profile .container {
  text-align: right;
}
main .profile .container .wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media screen and (max-width: 999px) {
  main .profile .container .wrapper {
    align-items: stretch;
  }
}
@media screen and (max-width: 767px) {
  main .profile .container .wrapper {
    flex-direction: column;
    align-items: center;
  }
}
main .profile .container .wrapper .thumb {
  width: 47%;
}
@media screen and (max-width: 999px) {
  main .profile .container .wrapper .thumb {
    width: 45%;
    display: flex;
    align-items: stretch;
  }
}
@media screen and (max-width: 767px) {
  main .profile .container .wrapper .thumb {
    width: 100%;
    padding: 0 0 25px 0;
  }
}
main .profile .container .wrapper .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
main .profile .container .wrapper .description {
  width: 47%;
  text-align: left;
}
@media screen and (max-width: 999px) {
  main .profile .container .wrapper .description {
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  main .profile .container .wrapper .description {
    width: 100%;
  }
}
main .profile .container .wrapper .description h5 {
  letter-spacing: 0.21em;
}
main .profile .container .wrapper .description h5 span {
  padding: 0 0 0 40px;
}
main .profile .container .wrapper .description p {
  padding: 40px 0 0 0;
  line-height: 2;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  main .profile .container .wrapper .description p {
    padding: 20px 0 0 0;
  }
}
main .contact {
  padding: 50px 0 150px 0;
}
main .contact .container {
  max-width: 900px;
}
main .contact .container .wrapper {
  position: relative;
}
main .contact .container .wrapper .card {
  background-image: linear-gradient(68deg, #EAE5DA, #EEE4E4);
  padding: 50px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  main .contact .container .wrapper .card {
    min-height: 320px;
    padding: 40px;
  }
}
@media screen and (max-width: 399px) {
  main .contact .container .wrapper .card {
    padding: 20px;
  }
}
main .contact .container .wrapper .card .description {
  align-self: flex-start;
  text-align: left;
  width: 100%;
}
@media screen and (max-width: 767px) {
  main .contact .container .wrapper .card .description {
    max-width: 100%;
  }
}
@media screen and (max-width: 399px) {
  main .contact .container .wrapper .card .description {
    padding: 10px 0 0 0;
  }
}
main .contact .container .wrapper .card .description h4 {
  letter-spacing: 0.22em;
}
main .contact .container .wrapper .card .description p {
  position: relative;
  letter-spacing: 0.13em;
  line-height: 1.6;
  padding: 25px 0;
}
main .contact .container .wrapper .card .description span {
  display: block;
  letter-spacing: 0.05em;
}
main .contact .container .wrapper .card .more_btn {
  text-align: right;
  margin-left: auto;
  z-index: 3;
}
main .contact .container .wrapper .card .more_btn:hover {
  cursor: pointer;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  z-index: 1050;
  pointer-events: none;
  background-color: rgba(255, 255, 255, 0.9);
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.modal .mask {
  position: relative;
  max-width: 730px;
  width: 70%;
  height: auto;
  /* top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); */
  margin: 20px 0;  
  max-height: 0;
  overflow: hidden;
  background: rgb(249, 248, 245);
  padding: 50px;
  border-radius: 15px;
  z-index: 990;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.5s ease;
  box-sizing: border-box;
}
@media screen and (max-width: 999px) {
  .modal .mask {
    padding: 30px;
  }
}
@media screen and (max-width: 767px) {
  .modal .mask {
    width: 90vw;
  }
}
.modal .mask.active {
  max-height: calc(var(--vh, 1vh) * 90);
  overflow-y: auto;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.modal .mask.is-loading {
  overflow-y: hidden;
}
.modal .mask.is-loading form#contactForm {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.modal .mask.is-loading #form-loader {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.3s 0.2s;
}
.modal .mask .close_btn {
  position: absolute;
  top: 45px;
  right: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease;
}
.modal .mask .close_btn span, .modal .mask .close_btn span:before, .modal .mask .close_btn span:after {
  content: "";
  display: block;
  height: 0.75px;
  width: 25px;
  background-color: #3D4951;
  transition: all 0.5s ease;
}
.modal .mask .close_btn span {
  background-color: rgba(255, 255, 255, 0);
}
.modal .mask .close_btn span:before {
  bottom: 0;
  transform: rotate(45deg);
}
.modal .mask .close_btn span:after {
  top: 0;
  transform: rotate(-45deg);
}
.modal .mask .close_btn p {
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  margin: 10px 0 0 0;
  padding: 0;
  color: #3D4951;
}
.modal .mask .close_btn:hover {
  opacity: 0.3;
  cursor: pointer;
  transform: scale(1.05);
}
.modal .mask form {
  width: 100%;
  padding: 20px 0 0 0;
  display: flex;
  flex-direction: column;
  justify-content: left;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .modal .mask form {
    padding: 40px 0 0 0;
  }
}
.modal .mask form label {
  display: inline-block;
  align-self: flex-start;
  margin: 28px 0 8px 0;
  border-radius: 1px;
  letter-spacing: 0.1em;
}
.modal .mask form label:first-of-type {
  margin: 0 0 8px 0;
}
.modal .mask form label.required span {
  color: #ff0000;
}
.modal .mask form input {
  height: 50px;
}
.modal .mask form input, .modal .mask form textarea {
  border: solid 0.5px #3D4951;
  background: #FFFFFF;
  border-radius: 5px;
  transform: translateX(2px);
  padding: 5px 15px;
  transition: all 0.3s ease;
}
.modal .mask form input.has-error, .modal .mask form textarea.has-error {
  border: solid 1px #ff0000;
}
.modal .mask form input::placeholder,
.modal .mask form textarea::placeholder {
  opacity: 1;
  font-size: 1.2rem;
  color: #96b3b3;
  padding: 5px 0;
  letter-spacing: 0.06em;
}
.modal .mask form input:not(:placeholder-shown),
.modal .mask form textarea:not(:placeholder-shown),
.modal .mask form input:focus,
.modal .mask form textarea:focus {
  background-color: white;
  border: solid 1.5px #96b3b3;
}
.modal .mask form input:focus,
.modal .mask form textarea:focus {
  outline: none;
  box-shadow: none;
  background: rgba(195, 216, 216, 0.1);
  border: solid 2px #C3D8D8;
}
.modal .mask form #consent {
  display: none;
}
.modal .mask form p {
  font-size: 1rem;
  color: #3D4951;
  padding: 10px 0 0 0;
}
.modal .mask form .privacy_consent {
  padding: 15px 0 0 0;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.modal .mask form .privacy_consent .privacy-text {
  font-size: 10px;
  padding: 0;
}
.modal .mask form #react-toggle {
  display: flex;
  flex-direction: column;
  width: auto;
  position: relative;
}
.modal .mask form #react-toggle label {
  padding: 0;
  margin: 0;
}
.modal .mask form #react-toggle .consent-wrapper {
  display: flex;
  flex-direction: column;
  width: auto;
}
.modal .mask form #react-toggle .consent-wrapper .consent-error-message {
  position: absolute;
  top: 32px;
  left: 0;
  width: max-content;
  white-space: nowrap;
  display: block;
  font-size: 1.2rem;
  padding: 5px 0 0 0;
  border-radius: 4px;
  color: #ff0000;
}
.modal .mask form #react-toggle .consent-wrapper .consent-horizontal-group {
  display: flex;
  align-items: center;
}
.modal .mask form #react-toggle .consent-wrapper .consent-horizontal-group .MuiFormControlLabel-root {
  margin-right: 8px;
  margin-left: -11px;
  background-image: none;
}
.modal .mask form .send_btn {
  align-self: flex-end;
  position: relative;
  height: fit-content;
  display: inline-block;
  border: 0.75px solid #3D4951;
  padding: 16px 16px;
  margin: 20px 0 0 0;
  transition: all 0.5s ease;
}
.modal .mask form .send_btn::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: linear-gradient(68deg, #D7DEDE, #FFFBF1);
  opacity: 0;
  transition: all 0.5s ease;
  z-index: 1;
}
.modal .mask form .send_btn:hover {
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .modal .mask form .send_btn {
    margin: 40px 0 0 0;
  }
}
.modal .mask form .send_btn button {
  display: flex;
  align-items: center;
  justify-content: end;
  position: relative;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  color: #3D4951;
  font-size: 1.6rem;
  font-weight: 300;
  z-index: 2;
}
.modal .mask form .send_btn button span {
  margin: 0 30px;
  letter-spacing: 0.09em;
}
.modal .mask form .send_btn button img {
  width: 25px;
  height: auto;
}
.modal .mask form .send_btn:hover {
  transform: scale(1.05);
}
.modal .mask form .send_btn:hover::after {
  opacity: 1;
}
.modal .mask form .field-error-message {
  color: #ff0000;
  font-size: 1.2rem;
  padding: 5px 0 5px 0;
}
.modal .mask .loader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(249, 248, 245, 0.95);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s;
}
.modal .mask .loader p {
  color: #3D4951;
  padding: 20px;
  font-size: 1.6rem;
  letter-spacing: 0.5em;
  font-weight: 300;
  text-align: center;
}
.modal .mask .loader .spinner {
  width: 50px;
  height: 50px;
  border: 5px solid #EAE5DA;
  border-top: 5px solid #C3D8D8;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

html.dark main .home .card:nth-of-type(1) {
  grid-column: 3/-1;
  grid-row: 1/4;
}
@media screen and (max-width: 767px) {
  html.dark main .home .card:nth-of-type(1) {
    grid-column: 1/-1;
    grid-row: 2/5;
    align-self: center;
    z-index: 2;
  }
}
html.dark main .home .card:nth-of-type(2) {
  grid-column: 1/3;
  grid-row: 4/-3;
  display: flex;
  flex-direction: column-reverse;
}
@media screen and (max-width: 999px) {
  html.dark main .home .card:nth-of-type(2) {
    grid-column: 4/8;
    grid-row: 4/6;
    align-self: start;
  }
}
@media screen and (max-width: 767px) {
  html.dark main .home .card:nth-of-type(2) {
    width: 100%;
    grid-column: 1/-1;
    grid-row: 1/2;
    flex-direction: column;
  }
  html.dark main .home .card:nth-of-type(2) .thumb {
    width: 100%;
    height: auto;
    aspect-ratio: 3.5/1;
  }
  html.dark main .home .card:nth-of-type(2) .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  html.dark main .home .card:nth-of-type(2) h4 {
    writing-mode: horizontal-tb;
  }
}
html.dark main .home .card:nth-of-type(2) .mask {
  background: linear-gradient(68deg, rgba(65, 82, 123, 0.5), rgba(101, 94, 112, 0.5));
}
html.dark main .home .card:nth-of-type(2) .thumb {
  margin: 0;
}
html.dark main .home .card:nth-of-type(3) {
  grid-column: 1/3;
  grid-row: 1/4;
  align-self: self-start;
}
@media screen and (max-width: 999px) {
  html.dark main .home .card:nth-of-type(3) {
    width: 80%;
    height: auto;
    justify-self: start;
    grid-column: 1/3;
  }
}
@media screen and (max-width: 767px) {
  html.dark main .home .card:nth-of-type(3) {
    grid-column: 2/3;
    grid-row: 4/7;
    align-self: center;
    justify-self: end;
    width: auto;
    z-index: 1;
  }
}
html.dark main .home .card:nth-of-type(4) {
  grid-column: 4/-2;
  grid-row: 6/9;
  z-index: 2;
  align-self: end;
}
@media screen and (max-width: 999px) {
  html.dark main .home .card:nth-of-type(4) {
    grid-column: 1/6;
    grid-row: 6/10;
    align-self: center;
    justify-self: start;
  }
}
@media screen and (max-width: 767px) {
  html.dark main .home .card:nth-of-type(4) {
    width: 100%;
    grid-column: 1/-1;
    grid-row: 7/-1;
  }
}
html.dark main .home .card:nth-of-type(5) {
  grid-row: 4/8;
  justify-self: end;
}
@media screen and (max-width: 999px) {
  html.dark main .home .card:nth-of-type(5) {
    grid-column: 1/4;
    grid-row: 6/8;
    justify-self: center;
    align-self: center;
  }
}
@media screen and (max-width: 767px) {
  html.dark main .home .card:nth-of-type(5) {
    grid-column: 1/2;
    grid-row: 5/7;
    justify-self: start;
    align-self: end;
  }
}

@media (orientation: portrait) {
  .thanks_page {
    min-height: calc(100vh - 105px);
    display: flex;
    flex-grow: 1;
    padding: 0;
    justify-content: center;
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .thanks_page {
    min-height: 100vh;
    justify-content: start;
  }
}
.thanks_page .content {
  padding: 150px 0 0 0;
  margin: 0 auto;
}
@media (orientation: portrait) {
  .thanks_page .content {
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .thanks_page .content {
    padding: 100px 0 0 0;
  }
}
.thanks_page .content .wrapper {
  background-image: linear-gradient(68deg, #D7DEDE, #FFFBF1);
  margin: 0 auto;
  padding: 50px 100px;
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 999px) {
  .thanks_page .content .wrapper {
    max-width: 90vw;
    padding: 30px 80px;
  }
}
@media screen and (max-width: 767px) {
  .thanks_page .content .wrapper {
    padding: 80px 35px;
  }
}
@media screen and (max-width: 399px) {
  .thanks_page .content .wrapper {
    padding: 30px 35px;
  }
}
.thanks_page .content .wrapper h1 {
  text-align: center;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .thanks_page .content .wrapper h1 {
    font-size: 5rem;
    line-height: 1.25;
  }
}
.thanks_page .content .wrapper p {
  font-size: 1.6rem;
  letter-spacing: 0.75em;
  font-weight: 300;
  padding: 0 0 25px 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .thanks_page .content .wrapper p {
    font-size: 1.5rem;
    letter-spacing: 0.35em;
  }
}
.thanks_page .content .wrapper .description p {
  text-align: center;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  line-height: 1.75;
  padding: 15px 0;
}

html, body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.container {
  max-width: 1024px;
  margin: 0 auto;
}
@media screen and (max-width: 1199px) {
  .container {
    width: 90%;
  }
}

.wrapper {
  padding: 50px 0 0 0;
}

section {
  padding: 50px 0;
}

img {
  width: 100%;
  height: auto;
}

ul {
  margin: 0;
}

html {
  font-size: 62.5%;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

body {
  font-size: 1.3rem;
}
@media screen and (max-width: 767px) {
  body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
  }
}

h1 {
  font-size: 10rem;
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
}

h2 {
  font-size: 4rem;
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: normal;
  letter-spacing: 0.775rem;
  text-align: center;
  line-height: 1;
  margin: 0 auto;
}
h2 span {
  font-size: 1.6rem;
  letter-spacing: 0.35em;
}

.heading {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: max-content;
  margin: 0 auto;
  white-space: nowrap;
}
.heading h2 {
  margin: 0;
}
.heading .sub_title {
  display: flex;
  justify-content: space-between;
  width: 94%;
  margin: 0 auto;
  flex-wrap: nowrap;
}
.heading .sub_title span {
  font-size: 1.6rem;
  letter-spacing: 0;
  display: inline-block;
  font-weight: 350;
  padding: 10px 0 0 0;
}

h3 {
  font-size: 2.4rem;
  font-weight: 300;
}

h4 {
  font-size: 2rem;
  font-weight: 300;
}

h5 {
  font-size: 1.5rem;
  font-weight: 300;
  margin: 0;
}

a {
  text-decoration: none;
}
a:hover {
  cursor: pointer;
}

.arrow {
  width: 48px;
  height: 48px;
  border: solid 1px #3D4951;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.arrow img {
  rotate: -90deg;
  width: 30px;
}

.previous, .next {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.previous div, .next div {
  width: 48px;
  height: 48px;
  border: solid 0.75px #3D4951;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s ease;
  position: relative;
}
.previous div img, .next div img {
  width: 30px;
}
.previous div:after, .next div:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to bottom right, #E5E4CA, #C3D8D8);
  opacity: 0;
  border-radius: 50%;
  z-index: -1;
}
.previous p, .next p {
  opacity: 0;
  line-height: 1.5rem;
  padding: 5px 0 0 0;
  transition: opacity 0.5s ease;
}
@media screen and (max-width: 767px) {
  .previous p, .next p {
    opacity: 1;
  }
}
.previous:hover div:after, .previous:hover p, .next:hover div:after, .next:hover p {
  opacity: 1;
}

.previous:hover {
  transform: translateX(-3px);
}

.next img {
  rotate: 180deg;
}
.next:hover {
  transform: translateX(3px);
}
.next.workspage {
  margin: 20px 0 0 0;
}
.next.workspage img {
  rotate: -90deg;
}
.next.workspage p {
  opacity: 1;
}
.next.workspage:hover {
  transform: translateY(3px);
}

.more_btn {
  position: relative;
  height: fit-content;
  display: inline-block;
  border: 0.75px solid #3D4951;
  padding: 16px 16px;
  margin: 20px 0 0 0;
  transition: all 0.5s ease;
}
.more_btn::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: linear-gradient(68deg, #D7DEDE, #FFFBF1);
  opacity: 0;
  transition: all 0.5s ease;
  z-index: 1;
}
@media screen and (max-width: 999px) {
  .more_btn {
    margin: 35px 0 0 0;
  }
}
.more_btn a {
  display: flex;
  align-items: center;
  justify-content: end;
  position: relative;
  width: 100%;
  text-decoration: none;
  color: #3D4951;
  font-size: 1.6rem;
  font-weight: 300;
  z-index: 2;
}
.more_btn a span {
  margin: 0 30px;
  letter-spacing: 0.09em;
}
.more_btn a img {
  width: 25px;
  height: auto;
}
.more_btn:hover {
  transform: scale(1.05);
}
.more_btn:hover:after {
  opacity: 1;
}

.link_btn {
  display: block;
  background-image: linear-gradient(68deg, #C3D8D8, #E5E4CA);
  padding: 20px;
  aspect-ratio: 2.7/1;
  width: 370px;
  height: auto;
  position: relative;
  margin: 20px 0 0 0;
  transition: transform 0.5s ease;
}
@media screen and (max-width: 767px) {
  .link_btn {
    width: 100%;
  }
}
.link_btn .card {
  width: 85%;
}
.link_btn .card h2 {
  color: #FFFFFF;
  padding: 0 0 5px 0;
  font-family: "Roboto", sans-serif;
  font-weight: 100;
  letter-spacing: 0;
  text-align: start;
}
.link_btn img {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 23px;
  height: auto;
}
.link_btn:hover {
  transform: scale(1.05);
}

.rob_font {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

.jos_font {
  font-family: "Jost", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
}

.br_thousand {
  display: none;
}
@media screen and (max-width: 999px) {
  .br_thousand {
    display: block;
  }
}

.br_desc {
  display: none;
}
@media screen and (max-width: 767px) {
  .br_desc {
    display: block;
  }
}

.br_sp_mini {
  display: none;
}
@media screen and (max-width: 390px) {
  .br_sp_mini {
    display: block;
  }
}

html {
  background-color: #F4F5F7;
  color: #3D4951;
  transition: background-color 0.5s ease, color 0.5s ease;
}
html a p, html a {
  color: #3D4951;
  transition: all 0.3s;
}
html header li a p {
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.9), 0 1px 5px rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 767px) {
  html header li a p {
    text-shadow: none;
  }
}
html header li a:after, html footer li a:after {
  background: #3D4951;
}
html .scroll {
  transition: background 0.3s ease;
}
html .scroll:hover .arrow {
  background: linear-gradient(to bottom right, #E5E4CA, #C3D8D8);
}
html .home {
  background: linear-gradient(68deg, #D7DEDE, #FFFBF1);
}
html.dark {
  background-color: #292A2D;
  color: #FFFFFF;
}
html.dark a p, html.dark a {
  color: #FFFFFF;
}
html.dark .fixed .mode p:before {
  border: 1px solid #FFFFFF;
}
@media screen and (max-width: 767px) {
  html.dark .progress {
    background-color: rgba(41, 42, 45, 0.8);
    box-shadow: 1px 1px 10px rgb(32, 32, 32);
  }
}
html.dark .progress::after {
  background-image: linear-gradient(68deg, rgb(65, 82, 123), rgb(101, 94, 112));
}
html.dark .progress:hover .button {
  background-image: linear-gradient(68deg, rgba(65, 82, 123, 0.5), rgba(101, 94, 112, 0.5));
}
html.dark .progress .button {
  border: 0.75px solid #FFFFFF;
}
html.dark .progress.mini {
  background-color: #292A2D;
  border: 0.75px solid #FFFFFF;
}
@media screen and (max-width: 767px) {
  html.dark .progress.mini {
    background-image: linear-gradient(68deg, rgb(65, 82, 123), rgb(101, 94, 112));
  }
}
html.dark .progress.mini:hover {
  background-image: linear-gradient(68deg, rgb(65, 82, 123), rgb(101, 94, 112));
}
html.dark .scroll:hover .arrow {
  background: linear-gradient(68deg, #41527B, #655E70);
}
html.dark .arrow {
  border: solid 1px #FFFFFF;
}
html.dark .arrow img {
  filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(360deg) brightness(100%) contrast(100%);
}
html.dark .link_btn {
  background-image: linear-gradient(68deg, #41527B, #655E70);
}
html.dark .link_btn img {
  filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(360deg) brightness(100%) contrast(100%);
}
html.dark header li a span {
  text-shadow: 0 1px 3px rgba(41, 42, 45, 0.9), 0 1px 5px rgba(41, 42, 45, 0.5);
}
@media screen and (max-width: 767px) {
  html.dark header li a span {
    text-shadow: none;
  }
}
@media screen and (max-width: 767px) {
  html.dark header .logo {
    filter: drop-shadow(0 0 1px rgb(0, 0, 0)) drop-shadow(0 0 1px rgba(0, 0, 0, 0.8));
  }
}
html.dark header .logo .logo-dark-mode, html.dark footer .logo .logo-dark-mode {
  display: block;
}
html.dark header .logo .logo-light, html.dark footer .logo .logo-light {
  display: none;
}
html.dark header li a:after, html.dark footer li a:after {
  background: #FFFFFF;
}
html.dark header .icon-menu a:hover .icon, html.dark footer .icon-menu a:hover .icon {
  background-image: linear-gradient(68deg, rgba(65, 82, 123, 0.5), rgba(101, 94, 112, 0.5));
}
@media screen and (max-width: 767px) {
  html.dark header .container, html.dark footer .container {
    background-image: linear-gradient(68deg, #2C364B, #655E70);
  }
  html.dark header nav#global #g-menu span, html.dark header nav#global #g-menu span:before, html.dark header nav#global #g-menu span:after, html.dark footer nav#global #g-menu span, html.dark footer nav#global #g-menu span:before, html.dark footer nav#global #g-menu span:after {
    background-color: #FFFFFF;
  }
  html.dark header nav#global.active ul, html.dark footer nav#global.active ul {
    background-color: rgba(44, 54, 75, 0.98);
  }
  html.dark header nav#global.active ul li a span, html.dark footer nav#global.active ul li a span {
    background: linear-gradient(68deg, #41527B, #655E70);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }
}
html.dark .home {
  background: linear-gradient(68deg, #2C364B, #655E70);
}
html.dark .home .wrapper .card:nth-of-type(2) h4, html.dark .home .wrapper .card:nth-of-type(4) p:nth-child(1) {
  color: #8F91AA;
}
html.dark .home .wrapper .card:nth-of-type(2) .mask {
  background-image: linear-gradient(68deg, rgba(65, 82, 123, 0.5), rgba(101, 94, 112, 0.5));
}
html.dark .works .container .wrapper .card::before {
  background: linear-gradient(to right, rgba(65, 82, 123, 0.5), rgba(101, 94, 112, 0.5));
}
html.dark .works .container .wrapper .card .tag span {
  background-color: #8F91AA;
  border: 0.5px solid #8F91AA;
}
html.dark .works .container .wrapper .card h3 p {
  color: #8F91AA;
}
html.dark .works .container .wrapper .card h3 span {
  color: #FFFFFF;
}
html.dark .previous div, html.dark .next div {
  border: solid 0.75px #FFFFFF;
}
html.dark .previous div img, html.dark .next div img {
  filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(360deg) brightness(100%) contrast(100%);
}
html.dark .previous div:after, html.dark .next div:after {
  background-image: linear-gradient(68deg, #41527B, #655E70);
}
html.dark .more_btn {
  border: 0.75px solid #FFFFFF;
}
html.dark .more_btn::after {
  background-image: linear-gradient(68deg, rgba(65, 82, 123, 0.5), rgba(101, 94, 112, 0.5));
}
html.dark .more_btn img {
  filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(360deg) brightness(100%) contrast(100%);
}
html.dark .contact .container .wrapper .card {
  background: linear-gradient(68deg, #41527B, #655E70);
}
html.dark .contact .container .wrapper .card .more_btn {
  border: 0.75px solid #FFFFFF;
}
html.dark .contact .container .wrapper .card .more_btn::after {
  background-image: linear-gradient(68deg, rgba(65, 82, 123, 0.5), rgba(101, 94, 112, 0.5));
}
html.dark .contact .container .wrapper .card .more_btn button {
  color: #FFFFFF;
}
html.dark .modal {
  background-color: rgba(31, 31, 43, 0.8);
}
html.dark .modal .mask {
  background-color: rgb(44, 46, 55);
}
html.dark .modal .mask .close_btn span:before, html.dark .modal .mask .close_btn span:after {
  background-color: rgb(255, 255, 255);
}
html.dark .modal .mask .close_btn p {
  color: #FFFFFF;
}
html.dark .modal .mask form input, html.dark .modal .mask form textarea {
  border: solid 0.5px #8e9dbf;
  background: #58586e;
  color: #FFFFFF;
}
html.dark .modal .mask form input::placeholder,
html.dark .modal .mask form textarea::placeholder {
  color: #8e9dbf;
}
html.dark .modal .mask form input:not(:placeholder-shown),
html.dark .modal .mask form textarea:not(:placeholder-shown),
html.dark .modal .mask form input:focus,
html.dark .modal .mask form textarea:focus {
  background-color: #3e3e4e;
  border: solid 1.5px #8e9dbf;
}
html.dark .modal .mask form input:focus,
html.dark .modal .mask form textarea:focus {
  background: #3e3e4e;
  border: solid 1.5px #8e9dbf;
}
html.dark .modal .mask form p {
  color: #FFFFFF;
}
html.dark .modal .mask form .send_btn {
  border: 0.75px solid #FFFFFF;
}
html.dark .modal .mask form .send_btn:after {
  background-image: linear-gradient(68deg, rgba(65, 82, 123, 0.5), rgba(101, 94, 112, 0.5));
}
html.dark .modal .mask form .send_btn button {
  color: #FFFFFF;
}
html.dark .modal .mask form .send_btn button span {
  color: #FFFFFF;
}
html.dark .modal .mask form .send_btn button img {
  filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(360deg) brightness(100%) contrast(100%);
}
html.dark .modal .mask .loader {
  background-color: #292A2D;
}
html.dark .modal .mask .loader .spinner {
  border: 5px solid #5f6063;
  border-top: 5px solid #29314c;
}
html.dark .modal .mask .loader p {
  color: #FFFFFF;
}
html.dark .detail .container {
  border-bottom: 0.75px solid #FFFFFF;
}
html.dark .detail .container .wrapper .thumb {
  filter: drop-shadow(13px 13px 6px rgb(23, 23, 27));
}
html.dark .detail .container .wrapper .description dl dd a {
  border-bottom: 1px solid #FFFFFF;
}
html.dark .project .container .description .card h5 {
  background-image: linear-gradient(68deg, #41527B, #655E70);
}
html.dark .introduction .container {
  background-image: linear-gradient(68deg, #2C364B, #655E70);
}
html.dark .skill p {
  background-image: linear-gradient(68deg, #41527B, #655E70);
}
html.dark .skills .container .wrapper .card:after {
  background: #FFFFFF;
}
html.dark .biography .container .wrapper:after {
  background: #FFFFFF;
}
html.dark .biography .container .wrapper .description dl::before {
  background: #FFFFFF;
}
html.dark .biography .container .link_btn .secretForm form button div {
  border: solid 0.75px #FFFFFF;
}
html.dark .favorite .container .wrapper .card .mask {
  background: rgba(44, 54, 75, 0.9);
}
html.dark .favorite .container .wrapper .card .mask span:before,
html.dark .favorite .container .wrapper .card .mask span:after {
  background-color: #FFFFFF;
}
html.dark .favorite .container .wrapper .card .mask p {
  color: #FFFFFF;
}
html.dark .InsideMyHead .container .title {
  background-image: linear-gradient(68deg, #41527B, #655E70);
}
html.dark .InsideMyHead .container .pagination_btn .about h3 {
  color: #8F91AA;
}
html.dark .InsideMyHead .container .wrapper .card span {
  background-color: #202226;
}
html.dark .InsideMyHead .container .wrapper .card:last-child span {
  display: block;
  max-width: none;
  background-color: transparent;
  padding: 0;
  font-size: 1.4rem;
  margin: 0 0 20px 0;
  letter-spacing: 0.1em;
  font-weight: 300;
}
html.dark .modal-overlay {
  background: rgba(32, 34, 38, 0.9);
}
html.dark .modal-overlay .modal-content .close_btn p {
  color: #FFFFFF;
}
html.dark .modal-overlay .modal-content .close_btn span:before,
html.dark .modal-overlay .modal-content .close_btn span:after {
  background-color: #FFFFFF;
}
html.dark footer {
  background-image: linear-gradient(68deg, #2C364B, #655E70);
}
html.dark .thanks_page .content .wrapper {
  background-image: linear-gradient(68deg, #2C364B, #655E70);
}
html.dark .download_page .container .wrapper a span {
  background-image: linear-gradient(68deg, rgb(65, 82, 123), rgb(101, 94, 112));
}
html.dark .download_page .container .wrapper a .thumb {
  filter: drop-shadow(13px 13px 6px rgb(23, 23, 27));
}

html.dark img {
  filter: brightness(0.8) saturate(0.94);
}

.slideUpAndFadeIn {
  transform: translateY(10px);
  opacity: 0;
  transition: all 2s ease;
}
.slideUpAndFadeIn.show {
  transform: translateY(0);
  opacity: 1;
}

.slideIn h3,
.slideIn span,
.slideIn .thumb {
  transform: translateX(50px);
  opacity: 0;
  transition: transform 1s ease, opacity 1s ease;
}
.slideIn h3.show,
.slideIn span.show,
.slideIn .thumb.show {
  transform: translateY(0);
  opacity: 1;
}

* {
  box-sizing: border-box;
}

@media screen and (max-width: 767px) {
  .single-works .detail {
    padding: 80px 0;
  }
}

.detail .container {
  border-bottom: 0.75px solid #3D4951;
}
.detail .container .wrapper {
  display: flex;
  gap: 30px;
  align-items: stretch;
  flex-wrap: wrap;
}
@media screen and (max-width: 999px) {
  .detail .container .wrapper {
    flex-direction: column;
    gap: 10px;
  }
}
@media screen and (max-width: 767px) {
  .detail .container .wrapper {
    padding: 10px 0;
  }
}
.detail .container .wrapper .description {
  flex: 0.7;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 999px) {
  .detail .container .wrapper .description {
    order: 3;
  }
}
.detail .container .wrapper .description h2 {
  font-family: "Jost", "Noto Sans JP", sans-serif;
  font-weight: 300;
  line-height: 1.35;
  text-align: left;
  padding: 0 0 30px 0;
  margin: 0 auto 0 0;
}
@media screen and (max-width: 767px) {
  .detail .container .wrapper .description h2 {
    font-size: 3.5rem;
  }
}
.detail .container .wrapper .description h2 span {
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0;
}
.detail .container .wrapper .description dl {
  padding: 0 0 20px 0;
}
.detail .container .wrapper .description dl dt {
  font-weight: 700;
  padding: 0 0 3px 0;
  letter-spacing: 0.25em;
}
.detail .container .wrapper .description dl dd a {
  border-bottom: 1px solid #3D4951;
}
.detail .container .wrapper .description dl dd a:hover {
  cursor: pointer;
  opacity: 0.5;
}
@media screen and (max-width: 999px) {
  .detail .container .wrapper .description .link_btn {
    margin: 20px 0 40px 0;
  }
}
.detail .container .wrapper .description .link_btn h2 {
  color: #FFFFFF;
  padding: 0 0 5px 0;
  font-family: "Roboto", sans-serif;
  font-weight: 100;
}
.detail .container .wrapper .description .link_btn p {
  letter-spacing: 0.4em;
  line-height: 1.6;
}
.detail .container .wrapper .thumb {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(5px 5px 5px rgb(104, 104, 104));
  position: relative;
}
@media screen and (max-width: 999px) {
  .detail .container .wrapper .thumb {
    order: 1;
    width: 50%;
    margin: 0 auto;
    position: relative;
  }
}
@media screen and (max-width: 767px) {
  .detail .container .wrapper .thumb {
    width: 80%;
    padding: 0 0 20px 0;
  }
}
.detail .container .wrapper .thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.detail .container .wrapper .thumb.sp {
  height: 435px;
  width: auto;
  filter: drop-shadow(13px 13px 6px rgb(152, 152, 152));
}
@media screen and (max-width: 767px) {
  .detail .container .wrapper .thumb.sp {
    height: auto;
    filter: drop-shadow(5px 5px 6px rgb(122, 122, 122));
  }
}
.detail .container .pagination_btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 0 15px 0;
}
@media screen and (max-width: 999px) {
  .detail .container .pagination_btn {
    order: 2;
    width: 90%;
    margin: 0 auto;
    z-index: 10;
    padding: 0;
  }
}

@media screen and (max-width: 767px) {
  .project {
    padding: 0 0 70px 0;
  }
}
.project .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .project .container {
    flex-direction: column;
  }
}
.project .container .thumb {
  width: 40%;
}
.project .container .thumb img {
  border: 0.5px solid #3D4951;
}
.project .container .thumb img:first-child {
  margin: 0 0 20px 0;
}
@media screen and (max-width: 767px) {
  .project .container .thumb {
    width: 100%;
    height: 200px;
    overflow-y: scroll;
    border: 0.75px solid #3D4951;
    margin: 0 0 30px 0;
  }
  .project .container .thumb img {
    width: 100%;
    height: auto;
    max-width: none;
    max-height: none;
  }
}
.project .container .thumb.banner {
  border: none;
}
@media screen and (max-width: 767px) {
  .project .container .thumb.banner {
    overflow-y: unset;
    height: auto;
  }
}
.project .container .thumb.banner img:first-child {
  border: none;
}
.project .container .description {
  width: 55%;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .project .container .description {
    width: 100%;
  }
}
.project .container .description .card {
  padding: 0 0 35px 0;
}
.project .container .description .card h5 {
  display: inline-block;
  padding: 1px 3px;
  background-image: linear-gradient(to bottom right, #C3D8D8, #E5E4CA);
  font-weight: 400;
  letter-spacing: 0.12em;
  margin: 0 0 8px 0;
}
.project .container .description .card p {
  letter-spacing: 0.2em;
  line-height: 1.7;
  padding: 0 0 0 3px;
}
.project .container .description .more_btn {
  margin: 0 0 50px auto;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(249, 248, 245, 0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.modal-overlay.is-active {
  visibility: visible;
  opacity: 1;
}
.modal-overlay .modal-content {
  position: relative;
  width: 80vw;
  height: 80vh;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .modal-overlay .modal-content {
    width: 90vw;
    height: auto;
  }
}
.modal-overlay .modal-content img {
  width: auto;
  height: auto;
  object-fit: contain;
  min-width: 0;
  min-height: 0;
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: auto;
}
.modal-overlay .modal-content .close_btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease;
  position: absolute;
  top: -50px;
  right: 0;
  z-index: 10000;
}
.modal-overlay .modal-content .close_btn p {
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  margin: 5px 0 0 0;
  padding: 0;
  color: #3D4951;
}
.modal-overlay .modal-content .close_btn:hover {
  opacity: 0.3;
  cursor: pointer;
  transform: scale(1.05);
}
.modal-overlay .modal-content .close_btn span:before,
.modal-overlay .modal-content .close_btn span:after {
  content: "";
  display: block;
  height: 0.75px;
  width: 25px;
  background-color: #3D4951;
  transition: all 0.5s ease;
}
.modal-overlay .modal-content .close_btn span {
  position: relative;
  height: 10px;
}
.modal-overlay .modal-content .close_btn span:before {
  bottom: 0;
  transform: rotate(45deg);
}
.modal-overlay .modal-content .close_btn span:after {
  top: 0;
  transform: rotate(-45deg);
}

.skill {
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding: 50px 0 0 0;
}
@media screen and (max-width: 767px) {
  .skill {
    flex-wrap: wrap;
    padding: 30px 0 0 0;
  }
}
.skill p {
  background-image: linear-gradient(68deg, #C3D8D8, #E5E4CA);
  margin: 0 10px 0 0;
  padding: 5px 10px;
  border-radius: 18px;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .skill p {
    margin: 10px 10px 0 0;
  }
}

.introduction {
  margin: 100px 0 0 0;
}
@media screen and (max-width: 767px) {
  .introduction {
    margin: 30px 0 0 0;
  }
}
.introduction .container {
  background-image: linear-gradient(68deg, #D7DEDE, #FFFBF1);
  padding: 50px;
}
@media screen and (max-width: 767px) {
  .introduction .container {
    padding: 30px;
  }
}
@media screen and (max-width: 767px) {
  .introduction .container h1 {
    font-size: 5rem;
  }
}
.introduction .container .wrapper {
  padding: 10px 0 10px 0;
}
.introduction .container .wrapper .card {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media screen and (max-width: 999px) {
  .introduction .container .wrapper .card {
    display: block;
  }
  .introduction .container .wrapper .card::after {
    content: "";
    display: block;
    clear: both;
  }
}
.introduction .container .wrapper .card .thumb {
  width: 25%;
}
@media screen and (max-width: 999px) {
  .introduction .container .wrapper .card .thumb {
    float: left;
    width: 35%;
    margin: 0 35px 0 0;
  }
  .introduction .container .wrapper .card .thumb img {
    width: 100%;
    height: auto;
  }
}
.introduction .container .wrapper .card .description {
  width: 70%;
}
@media screen and (max-width: 999px) {
  .introduction .container .wrapper .card .description {
    width: auto;
    display: block;
  }
}
.introduction .container .wrapper .card .description h4 {
  letter-spacing: 0.21em;
}
@media screen and (max-width: 999px) {
  .introduction .container .wrapper .card .description h4 {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .introduction .container .wrapper .card .description h4 {
    line-height: 1;
  }
}
.introduction .container .wrapper .card .description h4 span {
  padding: 0 0 0 20px;
}
@media screen and (max-width: 767px) {
  .introduction .container .wrapper .card .description h4 span {
    padding: 0;
    font-size: 1.2rem;
  }
}
.introduction .container .wrapper .card .description p {
  font-size: 1.4rem;
  line-height: 2.2;
  letter-spacing: 0.06em;
  padding: 30px 0 0 0;
  font-weight: 350;
}
@media screen and (max-width: 999px) {
  .introduction .container .wrapper .card .description p {
    display: block;
  }
}
.introduction .container .wrapper .card:nth-of-type(2) {
  padding: 60px 0 0 0;
  flex-direction: row-reverse;
}
.introduction .container .wrapper .card:nth-of-type(2) .description {
  width: 70%;
}
@media screen and (max-width: 999px) {
  .introduction .container .wrapper .card:nth-of-type(2) .description {
    width: auto;
  }
}
.introduction .container .wrapper .card:nth-of-type(2) .thumb {
  width: 25%;
}
@media screen and (max-width: 999px) {
  .introduction .container .wrapper .card:nth-of-type(2) .thumb {
    float: right;
    margin: 0 0 0 20px;
  }
}
@media screen and (max-width: 767px) {
  .introduction .container .wrapper .card:nth-of-type(2) .thumb {
    width: 40%;
  }
}
.introduction .container .wrapper .card:nth-of-type(2) p:nth-of-type(1) {
  font-size: 1.6rem;
  line-height: 1.6;
}
@media screen and (max-width: 999px) {
  .introduction .container .wrapper .card::after {
    content: "";
    display: block;
    clear: both;
  }
}

.skills .container {
  width: 75%;
}
@media screen and (max-width: 999px) {
  .skills .container {
    width: 90%;
  }
}
.skills .container .wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .skills .container .wrapper {
    flex-direction: column;
    width: 80%;
    margin: 0 auto;
    padding: 30px 0 0 0;
  }
}
.skills .container .wrapper .card {
  width: 28%;
  position: relative;
  padding: 0 2.5%;
}
@media screen and (max-width: 999px) {
  .skills .container .wrapper .card {
    width: 29%;
    padding: 0 2%;
  }
}
@media screen and (max-width: 767px) {
  .skills .container .wrapper .card {
    width: 100%;
    padding: 35px 0;
  }
}
.skills .container .wrapper .card:after {
  position: absolute;
  content: "";
  background: #3D4951;
  height: 100%;
  width: 1px;
  top: 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  .skills .container .wrapper .card:after {
    height: 1px;
    width: 100%;
    top: auto;
    bottom: 0;
    right: 0;
  }
}
.skills .container .wrapper .card:last-of-type:after {
  display: none;
}
.skills .container .wrapper .card .description h3 {
  text-align: center;
  font-weight: 200;
}
.skills .container .wrapper .card .description p {
  padding: 20px 0 0 0;
  font-size: 1.4rem;
  line-height: 1.85;
  letter-spacing: 0.06em;
  font-weight: 350;
}

.biography .container .wrapper {
  position: relative;
}
.biography .container .wrapper:after {
  content: "";
  position: absolute;
  width: 1px;
  background: #3D4951;
  height: 100%;
  top: 0;
  left: 0;
}
.biography .container .wrapper .description {
  width: 94%;
  margin: 0 0 0 auto;
}
.biography .container .wrapper .description dl {
  width: 100%;
  font-size: 1.4rem;
  line-height: 1.85;
  letter-spacing: 0.06em;
  font-weight: 350;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 0 0 50px 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .biography .container .wrapper .description dl {
    flex-direction: column;
    gap: 10px;
  }
}
.biography .container .wrapper .description dl:before {
  content: "";
  position: absolute;
  background: #3D4951;
  width: 4%;
  height: 1px;
  top: 10px;
  left: -6.4%;
}
.biography .container .wrapper .description dl dt {
  width: 7%;
}
.biography .container .wrapper .description dl dt:nth-of-type(2) {
  width: 17%;
}
@media screen and (max-width: 767px) {
  .biography .container .wrapper .description dl dt:nth-of-type(2) {
    width: 50%;
  }
}
.biography .container .wrapper .description dl dd {
  width: 70%;
}
@media screen and (max-width: 767px) {
  .biography .container .wrapper .description dl dd {
    width: 100%;
  }
}
.biography .container .link_btn {
  margin: 0 0 50px auto;
  z-index: 9999 !important;
  pointer-events: auto !important;
}
@media screen and (max-width: 767px) {
  .biography .container .link_btn {
    margin: 20px 0 0 0;
  }
}
.biography .container .link_btn:hover {
  cursor: pointer;
}
.biography .container .link_btn:has(.secretForm.active):hover {
  transform: none;
}
.biography .container .link_btn:has(.secretForm.active) .card img {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}
.biography .container .link_btn .secretForm {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, opacity 0.5s ease;
}
.biography .container .link_btn .secretForm.active {
  opacity: 1;
  max-height: 300px;
}
.biography .container .link_btn .secretForm form {
  margin: 10px 0 0 0;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.biography .container .link_btn .secretForm form input {
  width: 100%;
  height: 50px;
  border: solid 0.5px #3D4951;
  background: #FFFFFF;
  border-radius: 5px;
  transform: translateX(1px);
  padding: 5px 15px;
  transition: all 0.3s ease;
}
.biography .container .link_btn .secretForm form input::placeholder {
  opacity: 1;
  font-size: 1.2rem;
  color: #96b3b3;
  padding: 5px 0;
  letter-spacing: 0.06em;
}
.biography .container .link_btn .secretForm form input:not(:placeholder-shown), .biography .container .link_btn .secretForm form input:focus {
  background-color: white;
  border: solid 1.5px #96b3b3;
}
.biography .container .link_btn .secretForm form input:focus {
  outline: none;
  box-shadow: none;
  background: white;
  border: solid 2px #ebefef;
}
.biography .container .link_btn .secretForm form input.error {
  border: solid 1px #ff0000;
}
.biography .container .link_btn .secretForm form button {
  border: none;
  background: none;
  padding: 0 0 0 20px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.biography .container .link_btn .secretForm form button div {
  width: 48px;
  height: 48px;
  border: solid 0.75px #3D4951;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s ease;
  position: static;
}
.biography .container .link_btn .secretForm form button div:after {
  content: none !important;
  opacity: 0 !important;
  position: static;
  z-index: auto;
}
.biography .container .link_btn .secretForm form button div img {
  position: static;
  opacity: 1;
  transition: opacity 0.5s ease;
  margin: 0;
  padding: 0;
  width: 30px;
  height: auto;
  rotate: 0deg;
  visibility: visible;
}
.biography .container .link_btn .secretForm form button:hover {
  transform: none;
}
.biography .container .link_btn .secretForm form button:hover div:after {
  opacity: 0;
}

.favorite .container .wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.favorite .container .wrapper .card {
  flex: 0 0 25%;
  box-sizing: border-box;
  padding: 20px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .favorite .container .wrapper .card {
    flex: 0 0 50%;
  }
}
.favorite .container .wrapper .card:nth-of-type(7) {
  flex: 0 0 27%;
}
@media screen and (max-width: 767px) {
  .favorite .container .wrapper .card:nth-of-type(7) {
    flex: 0 0 55%;
  }
}
.favorite .container .wrapper .card:nth-of-type(8) {
  flex: 0 0 23%;
}
@media screen and (max-width: 767px) {
  .favorite .container .wrapper .card:nth-of-type(8) {
    flex: 0 0 45%;
  }
}
.favorite .container .wrapper .card .thumb {
  width: 100%;
  transition: all 0.5s ease;
  overflow: hidden;
}
.favorite .container .wrapper .card .description {
  text-align: left;
}
.favorite .container .wrapper .card .description p {
  font-size: 2rem;
  font-weight: 100;
  line-height: 1.25;
  padding: 5px 0 0 0;
}
@media screen and (max-width: 767px) {
  .favorite .container .wrapper .card .description p {
    font-size: 1.5rem;
  }
}
.favorite .container .wrapper .card .mask {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  height: auto;
  background: rgba(249, 248, 245, 0.9);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: left;
  padding: 50px;
  border-radius: 70px;
  z-index: 2;
}
@media screen and (max-width: 999px) {
  .favorite .container .wrapper .card .mask {
    width: 100%;
  }
}
@media screen and (max-width: 399px) {
  .favorite .container .wrapper .card .mask {
    height: 80%;
  }
}
.favorite .container .wrapper .card .mask h3 {
  font-weight: 200;
  padding: 0 0 20px 0;
  letter-spacing: 0.25em;
  line-height: 1.2;
}
.favorite .container .wrapper .card .mask p {
  line-height: 1.85;
  padding: 0 0 30px 0;
}
.favorite .container .wrapper .card .mask span,
.favorite .container .wrapper .card .mask span:before,
.favorite .container .wrapper .card .mask span:after {
  content: "";
  display: block;
  height: 0.75px;
  width: 25px;
  background-color: #3D4951;
  transition: all 0.5s ease;
}
.favorite .container .wrapper .card .mask span {
  background-color: rgba(255, 255, 255, 0);
}
.favorite .container .wrapper .card .mask span:before {
  bottom: 0;
  transform: rotate(45deg);
}
.favorite .container .wrapper .card .mask span:after {
  top: 0;
  transform: rotate(-45deg);
}
.favorite .container .wrapper .card .mask .close_btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.3s ease;
}
.favorite .container .wrapper .card .mask .close_btn p {
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  margin: 10px 0 0 0;
  padding: 0;
  color: #3D4951;
}
.favorite .container .wrapper .card .mask .close_btn:hover {
  opacity: 0.3;
  cursor: pointer;
  transform: scale(1.05);
}
.favorite .container .wrapper .card .mask.active {
  opacity: 1;
  pointer-events: auto;
}
.favorite .container .wrapper .card:hover .thumb {
  transform: scale(1.05);
  cursor: pointer;
}

.InsideMyHead {
  padding: 150px 0 0 0;
}
@media screen and (max-width: 767px) {
  .InsideMyHead {
    padding: 80px 0 0 0;
  }
}
.InsideMyHead .container .title {
  background-image: linear-gradient(68deg, #D7DEDE, #FFFBF1);
  padding: 40px;
}
@media screen and (max-width: 767px) {
  .InsideMyHead .container .title {
    padding: 30px;
  }
}
@media screen and (max-width: 767px) {
  .InsideMyHead .container .title h1 {
    font-size: 5rem;
  }
}
.InsideMyHead .container .title h3 {
  font-weight: 200;
  letter-spacing: 1.35em;
  padding: 0 0 20px 0;
}
@media screen and (max-width: 999px) {
  .InsideMyHead .container .title h3 {
    font-size: 1.75rem;
  }
}
@media screen and (max-width: 767px) {
  .InsideMyHead .container .title h3 {
    letter-spacing: 0.75em;
  }
}
.InsideMyHead .container .title p {
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .InsideMyHead .container .title p {
    font-size: 1.1rem;
  }
}
.InsideMyHead .container .pagination_btn {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 50px 0 0 0;
}
@media screen and (max-width: 767px) {
  .InsideMyHead .container .pagination_btn {
    padding: 10px 0 0 0;
  }
}
.InsideMyHead .container .pagination_btn .previous {
  margin: 0 20px 0 0;
}
@media screen and (max-width: 767px) {
  .InsideMyHead .container .pagination_btn .previous {
    margin: 0;
  }
}
.InsideMyHead .container .pagination_btn .about {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 13px 10px 30px 10px;
  margin-right: auto;
}
.InsideMyHead .container .pagination_btn .about img {
  width: 85px;
  height: auto;
  padding: 0 20px 0 0;
}
@media screen and (max-width: 399px) {
  .InsideMyHead .container .pagination_btn .about img {
    display: none;
  }
}
.InsideMyHead .container .pagination_btn .about h3 {
  color: #97A6B1;
}
@media screen and (max-width: 767px) {
  .InsideMyHead .container .pagination_btn .about h3 {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .InsideMyHead .container .wrapper {
    padding: 30px 0 0 0;
  }
}
.InsideMyHead .container .wrapper .card {
  display: block;
  padding: 0 0 70px 0;
  overflow: hidden;
}
.InsideMyHead .container .wrapper .card h3 {
  font-size: 2rem;
  letter-spacing: 0.05em;
  padding: 0 0 20px 0;
}
.InsideMyHead .container .wrapper .card .description {
  display: block;
  width: auto;
}
.InsideMyHead .container .wrapper .card .description .thumb {
  float: left;
  max-width: 30%;
  margin: 0 20px 10px 0;
  clear: left;
}
@media screen and (max-width: 767px) {
  .InsideMyHead .container .wrapper .card .description .thumb {
    max-width: 58%;
  }
}
.InsideMyHead .container .wrapper .card .description span {
  display: inline-block;
  max-width: 100%;
  background-color: #FFFFFF;
  padding: 3px 5px;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  font-weight: 300;
  word-break: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  margin: 0 10px 10px 0;
  text-wrap: wrap;
}
.InsideMyHead .container .wrapper .card .description::after {
  content: "";
  display: block;
  clear: both;
}
.InsideMyHead .container .wrapper .card:nth-of-type(2) .thumb {
  float: right;
  margin: 10px 0 10px 20px;
}
@media screen and (max-width: 999px) {
  .InsideMyHead .container .wrapper .card:nth-of-type(2) .thumb {
    float: left;
    margin: 0 10px 10px 0;
  }
}
@media screen and (max-width: 767px) {
  .InsideMyHead .container .wrapper .card:nth-of-type(2) .thumb {
    max-width: 58%;
  }
}
@media screen and (max-width: 767px) {
  .InsideMyHead .container .wrapper .card:nth-of-type(3) .thumb {
    width: 50%;
  }
}
.InsideMyHead .container .wrapper .card.last-child .description span {
  display: block;
  max-width: none;
  background-color: transparent;
  padding: 0;
  font-size: 1.4rem;
  margin: 0 0 20px 0;
  letter-spacing: 0.1em;
  font-weight: 300;
}

.download_page {
  padding: 100px 0 50px 0;
}
@media (orientation: portrait) {
  .download_page {
    min-height: calc(100vh - 105px);
    display: flex;
    flex-grow: 1;
    padding: 0;
    justify-content: center;
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .download_page {
    min-height: 100vh;
    justify-content: start;
    padding: 75px 0;
  }
}
.download_page .container {
  width: 800px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
@media (orientation: portrait) {
  .download_page .container {
    max-width: 800px;
    width: 90%;
  }
}
@media screen and (max-width: 999px) {
  .download_page .container {
    max-width: 800px;
    width: 90%;
  }
}
.download_page .container .header_text {
  text-align: center;
  padding: 15px 0 0 0;
}
.download_page .container .wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .download_page .container .wrapper {
    flex-direction: column;
  }
}
.download_page .container .wrapper .card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 50%;
  transition: transform 0.3s ease;
}
@media screen and (max-width: 767px) {
  .download_page .container .wrapper .card {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .download_page .container .wrapper .card:first-of-type {
    padding: 0 0 70px 0;
  }
}
.download_page .container .wrapper .card:hover {
  transform: scale(1.05);
}
.download_page .container .wrapper .card span {
  background-image: linear-gradient(68deg, #C3D8D8, #E5E4CA);
  padding: 5px 11px;
  border-radius: 17px;
  margin: 0 0 10px 0;
}
.download_page .container .wrapper .card p {
  padding: 10px 0 0 0;
}
.download_page .container .wrapper .card .thumb {
  width: 50%;
  height: auto;
  filter: drop-shadow(5px 5px 4px rgb(204, 204, 204));
}
.download_page .container .warning {
  font-size: 1.2rem;
  color: #858f95;
  padding: 50px 0 0 0;
  text-align: center;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/*# sourceMappingURL=style.css.map */
