/* [project]/styles/globals.scss.css [app-client] (css) */
*, :before, :after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:where([hidden]:not([hidden="until-found"])) {
  display: none !important;
}

:where(html) {
  tab-size: 2;
  --lightningcss-light: initial;
  --lightningcss-dark: ;
  color-scheme: light;
  scrollbar-gutter: stable;
  -webkit-text-size-adjust: none;
  interpolate-size: allow-keywords;
  line-height: 1.5;
}

:where(html:has(dialog:modal[open])) {
  overflow: clip;
}

@media (prefers-reduced-motion: no-preference) {
  :where(html:focus-within) {
    scroll-behavior: smooth;
  }
}

:where(body) {
  font-family: system-ui, sans-serif;
  line-height: inherit;
  -webkit-font-smoothing: antialiased;
}

:where(button) {
  all: unset;
}

:where(input, button, textarea, select) {
  font: inherit;
  font-variation-settings: inherit;
  font-feature-settings: inherit;
  color: inherit;
  letter-spacing: inherit;
  word-spacing: inherit;
}

:where(textarea) {
  resize: vertical;
  resize: block;
}

:where(button, label, select, summary, [role="button"], [role="option"]) {
  cursor: pointer;
}

:where(:disabled, label:has( > :disabled)) {
  cursor: not-allowed;
}

:where(a) {
  color: inherit;
  text-underline-offset: .2ex;
}

:where(ul, ol) {
  list-style: none;
}

:where(img, svg, video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, picture, svg, video) {
  max-inline-size: 100%;
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(h1, h2, h3) {
  line-height: calc(1em + .5rem);
}

:where(hr) {
  block-size: 0;
  color: inherit;
  border: none;
  border-block-start: 1px solid;
  overflow: visible;
}

:where(dialog, [popover]) {
  inset: unset;
  max-width: unset;
  max-height: unset;
  overflow: unset;
  color: inherit;
  background: none;
  border: none;
}

:where(dialog:not([open], [popover]), [popover]:not(:popover-open)) {
  display: none !important;
}

:where(:focus-visible) {
  outline-offset: 1px;
  outline: 3px solid canvastext;
  box-shadow: 0 0 0 5px canvas;
}

:where(:focus-visible, :target) {
  scroll-margin-block: 8vh;
}

:where(.visually-hidden:not(:focus-within, :active)) {
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  -webkit-user-select: none !important;
  user-select: none !important;
  border: 0 !important;
  width: 1px !important;
  height: 1px !important;
  position: absolute !important;
  overflow: hidden !important;
}

.title {
  color: #aa8f7b;
  font-family: Josefin Sans, sans-serif;
  display: flex;
  overflow: hidden;
}

.title span {
  transition: transform .5s cubic-bezier(.215, .61, .355, 1);
  display: block;
  transform: translate(0, 105%);
}

.title.-visible span {
  transform: translate(0);
}

.title span:nth-child(2) {
  transition-delay: 60ms;
}

.title span:nth-child(3) {
  transition-delay: .12s;
}

.title span:nth-child(4) {
  transition-delay: .18s;
}

.title span:nth-child(5) {
  transition-delay: .24s;
}

.title span:nth-child(6) {
  transition-delay: .3s;
}

.title span:nth-child(7) {
  transition-delay: .36s;
}

.title span:nth-child(8) {
  transition-delay: .42s;
}

.title span:nth-child(9) {
  transition-delay: .48s;
}

.title span:nth-child(10) {
  transition-delay: .54s;
}

.title span:nth-child(11) {
  transition-delay: .6s;
}

.title span:nth-child(12) {
  transition-delay: .66s;
}

.title span:nth-child(13) {
  transition-delay: .72s;
}

.title span:nth-child(14) {
  transition-delay: .78s;
}

.loading {
  z-index: 999;
  opacity: .4;
  background-color: #0d1014;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
}

.loading-body {
  height: 125rem;
}

@keyframes spin {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(359deg);
  }
}

.circle-border {
  background: linear-gradient(0deg, #3ff9dc1a 33%, #5dffe7 100%);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 200px;
  padding: 3px;
  animation: .8s linear infinite spin;
  display: flex;
}

.circle-core {
  background-color: #1d2630;
  border-radius: 50%;
  width: 95%;
  height: 95%;
}

.spinner-box {
  width: 100%;
  position: absolute;
  top: 42%;
  left: 44%;
}

@media screen and (max-width: 500px) {
  .loading {
    z-index: 999;
    opacity: .4;
    background-color: #1d2630;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
  }

  .loading-body {
    height: 125rem;
  }

  .circle-border {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    padding: 3px;
  }

  .spinner-box {
    width: 300px;
    top: 40%;
    left: 34%;
  }

  @keyframes spin {
    from {
      transform: rotate(0);
    }

    to {
      transform: rotate(359deg);
    }
  }
}

body {
  transition-property: opacity, background-color, transform, filter;
  transition-duration: .5s;
  transition-timing-function: ease-in-out;
}

.page-transition {
  filter: blur(12px);
  opacity: 0;
  background-color: #fff;
  transform: translateY(20px);
}

.logo {
  position: relative;
  width: 210px !important;
  height: 80px !important;
}

.header {
  z-index: 50;
  padding-bottom: 0;
}

.header_container {
  justify-content: space-around;
  align-items: center;
  width: 100%;
  max-width: 1100px;
  margin-inline: auto;
  display: flex;
}

.header nav {
  margin-left: auto;
}

.header li {
  margin-right: 15px;
  display: inline-block;
}

.header li:nth-child(6) {
  color: #fff;
  background-color: #222323;
  width: 90px;
  margin-right: 0;
  padding: 5px 10px;
}

.header li a {
  transition: color .3s;
}

.header li a:hover {
  color: #4485ff;
  color: lab(56.1927% 11.0934 -68.2153);
}

.header_btn_contact {
  color: #fff;
  cursor: pointer;
  background-color: #4485ff;
  background-color: lab(56.1927% 11.0934 -68.2153);
  border-radius: 20px;
  padding: 5px 10px;
  transition: color .3s;
  display: inline-block;
}

.header_btn_contact:hover {
  opacity: .7;
}

.humburger {
  display: none;
}

.hamburger-btn__parts {
  background-color: #000;
  width: 100%;
  height: .125rem;
  transition: transform .5s, opacity .5s;
  display: block;
  position: absolute;
}

.hamburger-btn__parts.-top {
  top: 0;
}

.hamburger-btn__parts.-middle {
  margin-inline: auto;
  top: 0;
  bottom: 0;
}

.hamburger-btn__parts.-bottom {
  bottom: 0;
}

.hamburger-btn.active .hamburger-btn__parts.-top {
  transform: translateY(.625rem)rotate(-45deg);
}

.hamburger-btn.active .hamburger-btn__parts.-middle {
  opacity: 0;
}

.hamburger-btn.active .hamburger-btn__parts.-bottom {
  transform: translateY(-4px)rotate(45deg);
}

.hamburger, .hamburger-btn {
  display: none;
}

@media screen and (max-width: 500px) {
  .hamburger {
    z-index: 10;
    background-color: #333;
    width: 100vw;
    height: 100vh;
    font-family: futura-pt-bold, sans-serif;
    font-size: 16px;
    transition: all .3s;
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    transform: translateX(100vw);
  }

  .hamburger-btn {
    z-index: 20;
    width: 25px;
    height: 16px;
    display: block;
    position: relative;
  }

  .hamburger__lists {
    background-color: #fff;
    background-color: lab(100% 0 0);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    padding: 0;
    display: flex;
  }

  .hamburger__list {
    color: #000;
    text-align: center;
    font-size: 1rem;
    list-style: none;
  }

  .hamburger__list + .hamburger__list {
    padding-top: 50px;
  }

  .hamburger__link {
    color: #000;
    font-family: futura-pt-bold, sans-serif;
    text-decoration: none;
  }
}

.hamburger.active {
  transform: translateX(0);
}

@media screen and (max-width: 1024px) {
  .header {
    background: #fff;
    width: 100%;
    padding: 10px;
    display: flex;
    position: fixed;
    top: 0;
  }

  .header nav {
    display: none;
  }

  .logo {
    position: relative;
    width: 140px !important;
    height: 40px !important;
  }
}

@media screen and (max-width: 500px) {
  .header {
    width: 100%;
    padding: 10px 20px;
  }

  .header_container {
    flex-direction: column;
    align-items: flex-start;
  }

  .humburger {
    top: 5px;
    right: 20px;
  }

  .mobileLogo {
    width: 190px;
    height: 60px;
    top: 10px;
  }

  .logo {
    position: relative;
    width: 140px !important;
    height: 40px !important;
  }
}

.footer {
  border-top: 2px solid #4485ff;
  border-top: 2px solid lab(56.1927% 11.0934 -68.2153);
}

.footer__container {
  justify-content: space-around;
  gap: 3.75rem 7.5rem;
  width: 100%;
  margin: 0 auto;
  padding-block: 30px;
  display: flex;
}

.footer__list {
  text-align: left;
  margin-block: 10px;
  font-weight: 600;
}

.footer__logo {
  text-align: left;
  font-size: 30px;
  font-weight: bold;
  position: relative;
  bottom: 1.25rem;
  width: 220px !important;
  height: 100px !important;
}

.footer__text {
  text-align: center;
  width: 100%;
  margin: 0;
  padding: .625rem;
  font-size: 16px;
  font-weight: 600;
}

@media screen and (max-width: 500px) {
  .footer ul {
    margin-left: 30px;
  }

  .footer__container {
    color: #fff;
    color: lab(100% 0 0);
    text-align: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    gap: 10px;
    width: 90%;
    margin: 0 auto;
    display: flex;
  }
}

.tab-1 {
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1200px;
  margin: 20px auto;
  display: flex;
}

.tab-1 label {
  color: #535353;
  text-align: center;
  cursor: pointer;
  background-color: #e9f0f6;
  border-bottom: 1px solid #f0f0f0;
  border-radius: 0;
  flex: 1;
  order: -1;
  min-width: 100px;
  padding: .9em 1em .5em;
  font-size: 18px;
  font-weight: bold;
}

.tab-1 label:hover {
  opacity: .8;
}

.tab-1 input {
  display: none;
}

.tab-1 div {
  background-color: #fff;
  background-color: lab(100% 0 0);
  width: 100%;
  padding: 1.5em 1em;
  display: none;
}

.tab-1 .active {
  color: #333;
  background-color: #fff;
  background-color: lab(100% 0 0);
  border: 1px solid #f0f0f0;
  border-top: 4px solid oklch(63.8% .194 261.57);
  border-bottom-color: oklch(100% 0 0);
  border-radius: 5px;
}

.tab-1 .active + div {
  display: block;
}

.license ul {
  text-align: left;
}

.license__table {
  margin-top: 1.25rem;
  font-size: 1.125rem;
}

.license__table-td {
  text-align: left;
  padding: .625rem;
}

.blog__layout {
  grid-template-columns: 1fr 300px;
  padding-block: 50px;
  display: grid;
}

.blog__List {
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 25px 15px;
  width: 100%;
  margin: 10px auto;
  display: flex;
}

.blog__aside {
  margin-top: 20px;
  padding: 16px;
}

.blog__aside__List {
  justify-content: flex-start;
  gap: 25px 15px;
  width: 100%;
  margin: 10px auto;
}

.blog__aside h2 {
  text-align: left;
  margin-bottom: 12px;
  font-size: 1.5rem;
}

.zennArticle {
  width: 30%;
  box-shadow: 0 2px 5px -1px #32325d40, 0 1px 3px -1px #0000004d;
}

.zennArticle__container {
  justify-content: flex-start;
  margin-top: 10px;
  display: flex;
}

.zennArticle__content {
  margin: 10px;
}

.zennArticle__title {
  margin-inline: auto;
  text-align: left;
  margin-top: 10px;
  font-weight: 600;
}

.zennArticle__date {
  color: #6d6d6d;
  color: lab(46.1644% -.0000298023 0);
  text-align: left;
  font-size: .875rem;
}

.zennArticle__tag {
  color: #fff;
  background-color: #5f5dcd;
  border-radius: 10px;
  height: 25px;
  margin: 11px 2px;
  padding: 2px 5px;
  font-size: 14px;
  display: inline-block;
}

.zennArticle__emoji {
  font-size: 80px;
}

.zennAsideArticle {
  border-bottom: 1px solid #6d6d6d;
  border-bottom: 1px solid lab(46.1644% -.0000298023 0);
  width: 100%;
  margin-bottom: 10px;
}

.zennAsideArticle__container {
  justify-content: flex-start;
  margin-top: 5px;
  display: flex;
}

.zennAsideArticle__content {
  margin-block: 10px;
}

.zennAsideArticle__title {
  margin-inline: auto;
  text-align: left;
  margin-top: 10px;
  font-size: 1rem;
  font-weight: 600;
}

.zennAsideArticle__date {
  text-align: left;
  font-size: .875rem;
}

.zennAsideArticle__tag {
  color: #fff;
  background-color: #5f5dcd;
  border-radius: 10px;
  height: 25px;
  margin: 11px 2px;
  padding: 2px 5px;
  font-size: 14px;
  display: inline-block;
}

.zennAsideArticle__emoji {
  font-size: 80px;
}

@media screen and (max-width: 500px) {
  .blog__layout {
    grid-template-columns: 1fr;
    padding-block: 20px;
    display: grid;
  }

  .blog__aside {
    display: none;
  }

  .zennArticle {
    width: 100%;
  }

  .zennArticle__flex {
    justify-content: center;
    display: flex;
  }

  .zennArticle__date {
    font-size: .875rem;
  }

  .zennArticle__tag {
    border-radius: 20px;
    height: 25px;
    margin: 11px 2px;
    padding: 2px 5px;
    font-size: 14px;
    display: inline-block;
  }

  .zennArticle__title {
    margin-top: 0;
  }

  .zennArticle__emoji {
    font-size: 80px;
  }
}

.form {
  margin: 60px 0;
}

.form-box {
  grid-gap: 5px auto;
  grid-template-columns: .2fr .6fr;
  margin: 40px 0;
  display: grid;
}

.form-box-label {
  text-align: left;
  font-weight: 500;
}

.form-box-label-required {
  color: #fff;
  background-color: #f43b33;
  background-color: lab(55.6179% 69.522 50.1108);
  border-radius: 20px;
  margin-left: 5px;
  padding: 3px 6px;
  font-size: 14px;
  font-weight: 400;
}

.form-box-textarea {
  padding: 8px;
}

.form-box-textarea-error {
  border: 1px solid red;
}

.form-box-btn {
  color: #fff;
  background-color: #4485ff;
  background-color: lab(56.1927% 11.0934 -68.2153);
  border: 0 solid;
  border-radius: 10px;
  padding: 5px 20px;
}

.form-box-btn:hover {
  background-color: #4485ff;
  background-color: lab(56.1927% 11.0934 -68.2153);
}

.form-box-error {
  color: #f43b33;
  color: lab(55.6179% 69.522 50.1108);
  text-align: left;
  margin-top: 4px;
  font-size: 14px;
}

@media screen and (max-width: 500px) {
  .form {
    margin: 60px 0;
  }

  .form-box {
    grid-gap: 20px;
    grid-template-columns: 1fr;
    margin: 40px 0;
    display: grid;
  }

  .form-box-label {
    text-align: left;
    font-weight: 500;
  }

  .form-box-label-required {
    color: #fff;
    background-color: #f43b33;
    background-color: lab(55.6179% 69.522 50.1108);
    border-radius: 20px;
    margin-left: 5px;
    padding: 3px 6px;
    font-size: 14px;
    font-weight: 400;
  }

  .form-box-textarea {
    padding: 8px;
  }

  .form-box-btn {
    color: #fff;
    background-color: #4485ff;
    background-color: lab(56.1927% 11.0934 -68.2153);
    border: 0 solid;
    border-radius: 10px;
    padding: 5px 20px;
    font-size: 18px;
  }

  .form-box-btn:hover {
    background-color: #4485ff;
    background-color: lab(56.1927% 11.0934 -68.2153);
  }

  .form-box-error {
    color: #f43b33;
    color: lab(55.6179% 69.522 50.1108);
    font-size: 14px;
  }
}

.fv_cube {
  height: 100vh;
}

.fv_cube_title {
  text-align: left;
  font-family: futura-pt-bold, sans-serif;
  font-size: 70px;
  line-height: 90px;
  position: relative;
  top: 120px;
}

.drawerMenu {
  z-index: -100;
  opacity: 0;
  background-color: #4485ff;
  background-color: lab(56.1927% 11.0934 -68.2153);
  width: 100%;
  height: 0;
  transition: all .5s;
  display: none;
  position: fixed;
  top: 0;
}

.drawerMenu ul {
  width: 90%;
  margin-inline: auto;
  padding: 0;
}

.drawerMenu ul li {
  opacity: .7;
  margin-bottom: 25px;
  font-family: Josefin Sans, sans-serif;
  font-weight: 200;
}

.drawerMenu.open {
  z-index: 99;
  opacity: 0;
  height: 90vh;
  display: none;
  top: 60px;
}

.btn-trigger {
  display: none;
}

.aboutTop_container {
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: space-between;
  gap: 3.75rem 0;
  width: 100%;
  margin: .625rem auto;
  display: flex;
}

.aboutTop_container-item {
  overflow-wrap: break-word;
  width: 50%;
  margin: 0;
}

.components_logo__pNz7v {
  margin: 0;
}

.errorPage {
  text-align: center;
  background-color: #fff;
  background-color: lab(100% 0 0);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
}

.errorPage h1 {
  margin-top: 0;
  margin-bottom: .5rem;
  font-size: 6rem;
  font-weight: bold;
}

.errorPage h2 {
  color: #0e0e0e;
  font-size: 2rem;
}

.errorPage p {
  color: #5a5a5a;
  margin-top: .5rem;
}

@media (max-width: 1024px) {
  .btn-trigger span {
    background-color: #4485ff;
    background-color: lab(56.1927% 11.0934 -68.2153);
    border-radius: 4px;
    width: 100%;
    height: 4px;
    position: absolute;
    left: 0;
  }

  .btn-trigger, .btn-trigger span {
    box-sizing: border-box;
    transition: all .5s;
    display: inline-block;
  }

  .container {
    margin: 0 0 0 auto;
  }

  .mobileLogo {
    width: 250px;
    height: 80px;
    display: inline-block;
    position: absolute;
    top: 0;
  }

  .mainTitle {
    color: #fff;
    color: lab(100% 0 0);
    text-align: left;
    letter-spacing: 2px;
    margin-bottom: 5px;
    font-size: 26px;
  }

  .subTitle {
    color: #fff;
    color: lab(100% 0 0);
    font-size: 15px;
  }

  .close {
    cursor: pointer;
    margin-top: 32px;
    padding-right: 3px;
  }

  .close span {
    background-color: #fff;
    background-color: lab(100% 0 0);
    width: 30px;
    height: 2px;
    margin: 0 8px 10px auto;
    display: block;
  }

  .close span:first-child {
    transform: translateY(6px)rotate(150deg);
  }

  .close span:nth-child(2) {
    margin-bottom: 0;
    transform: translateY(-6px)rotate(-150deg);
  }

  .close p {
    text-align: right;
    padding-right: 1px;
    font-size: 11px;
  }

  .btn-trigger {
    z-index: 100;
    cursor: pointer;
    background-color: #fff;
    background-color: lab(100% 0 0);
    border: 0;
    width: 50px;
    height: 38px;
    position: relative;
  }

  .btn-trigger span:first-of-type {
    top: 0;
  }

  .btn-trigger span:nth-of-type(2) {
    top: 17px;
  }

  .btn-trigger span:nth-of-type(3) {
    bottom: 0;
  }

  #btn01.active span:first-of-type {
    -webkit-transform: translateY(10px)rotate(-45deg);
    transform: translateY(15px)rotate(-45deg);
  }

  #btn01.active span:nth-of-type(2) {
    opacity: 0;
  }

  #btn01.active span:nth-of-type(3) {
    transform: translateY(-17px)rotate(45deg);
  }

  .drawerMenu {
    z-index: -100;
    opacity: 0;
    background-color: #4485ff;
    background-color: lab(56.1927% 11.0934 -68.2153);
    width: 100%;
    height: 0;
    transition: all .5s;
    display: none;
    position: fixed;
    top: 0;
  }

  .drawerMenu ul {
    width: 90%;
    margin-inline: auto;
    padding-block: 20px;
  }

  .drawerMenu ul li {
    opacity: .7;
    margin-bottom: 25px;
    font-family: Josefin Sans, sans-serif;
    font-weight: 200;
  }

  .drawerMenu.open {
    z-index: 99;
    opacity: 1;
    height: 90vh;
    display: block;
    top: 60px;
  }
}

@media screen and (max-width: 500px) {
  .aboutTop_container {
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    gap: .625rem 0;
    width: 100%;
    margin: .625rem auto;
  }

  .aboutTop_container-item {
    overflow-wrap: break-word;
    width: 100%;
    margin: 0;
  }

  .components_logo__pNz7v {
    margin: 0;
  }
}

.selectBox {
  align-items: center;
  display: inline-flex;
  position: relative;
}

.selectBox:after {
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  pointer-events: none;
  content: "";
  background-color: #6d6d6d;
  background-color: lab(46.1644% -.0000298023 0);
  width: 10px;
  height: 7px;
  position: absolute;
  right: 15px;
}

.selectBox select {
  appearance: none;
  cursor: pointer;
  background-color: #fff;
  background-color: lab(100% 0 0);
  border: none;
  border-bottom: 2px solid #d0d0d0;
  min-width: 230px;
  height: 2.8em;
  padding: .4em calc(.8em + 30px) .4em .8em;
  font-size: 1em;
}

.selectBox select:focus {
  outline: none;
}

.portfolio {
  background-color: #f7f7f7;
}

.portfolio__loading {
  text-align: center;
  padding-block: 100px;
}

.portfolioDetail__toc {
  background: #f8f9fa;
  border-radius: 8px;
  margin: 2rem 0;
  padding: 1.5rem;
}

.portfolioDetail__toc-title {
  color: #333;
  text-align: left;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  font-weight: bold;
}

.portfolioDetail__toc-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.portfolioDetail__toc-link {
  color: #000;
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  padding: .5rem 0;
  font-size: 1rem;
  text-decoration: none;
  display: block;
}

.portfolioDetail__toc-link:hover {
  color: #2563eb;
  text-decoration: underline;
}

.portfolio__filter {
  justify-content: flex-end;
  display: flex;
}

.portfolioItem {
  box-shadow: 0 2px 5px -1px #32325d40, 0 1px 3px -1px #0000004d;
}

.portfolioItem__content {
  padding: 10px;
}

.portfolioItem__date {
  text-align: left;
  width: 100%;
  font-size: .875rem;
  display: block;
}

.portfolioItem__tag {
  color: #fff;
  background-color: #5f5dcd;
  border-radius: 20px;
  height: 25px;
  margin: 11px 0;
  padding: 2px 10px;
  font-size: 14px;
  display: inline-block;
}

.portfolioItem__title {
  text-align: left;
  margin-top: 10px;
  font-size: 18px;
  font-weight: 600;
}

.portfolioItem__img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
  height: 162px;
  margin-inline: auto;
  position: relative;
  overflow: hidden;
}

.portfolioItem__img-item {
  transition: transform .3s;
}

.portfolioItem__img-item:hover {
  transform: scale(1.1);
}

.portfolioItem__container {
  justify-content: flex-start;
  gap: .625rem;
  margin-top: 10px;
  display: flex;
}

.portfolioItem_link {
  cursor: pointer;
}

@media screen and (max-width: 500px) {
  .portfolioItem__img {
    height: 230px;
  }
}

.portfolioDetail {
  border-radius: 1.25rem;
  margin: 50px auto;
}

.portfolioDetail_btn {
  background-color: #fff;
  background-color: lab(100% 0 0);
  border: 0 solid;
  width: 46px;
  margin-left: auto;
  margin-right: .625rem;
  display: block;
  position: relative;
  top: 1.25rem;
}

.portfolioDetail__element {
  width: 45%;
}

.portfolioDetail__element-topImg {
  aspect-ratio: 16 / 9;
  margin: 20px auto;
  margin-inline: auto;
  object-fit: contain;
  width: 100%;
  height: auto;
  margin-bottom: 80px;
  position: relative;
}

.portfolioDetail__element-img {
  aspect-ratio: 16 / 9;
  object-fit: contain;
  width: 100%;
  height: 500px;
  margin-inline: auto;
  position: relative;
}

.portfolioDetail__element-img button {
  background-color: #fff;
  background-color: lab(100% 0 0);
  border: 0;
}

.portfolioDetail__element-title {
  text-align: left;
  font-size: 26px;
}

.portfolioDetail__element-subtitle {
  text-align: left;
  border-bottom: 2px solid #4485ff;
  border-bottom: 2px solid lab(56.1927% 11.0934 -68.2153);
  margin: 30px 0;
  padding-bottom: 10px;
  font-size: 26px;
}

.portfolioDetail__element-h4 {
  align-items: center;
  gap: 6px;
  margin: 10px 0;
  padding-bottom: 10px;
  font-size: 18px;
  display: flex;
}

.portfolioDetail__element-icon {
  color: #4485ff;
  color: lab(56.1927% 11.0934 -68.2153);
  background-color: #d2e3ff;
  border-radius: 5px;
  padding: 5px;
}

.portfolioDetail__element-icon-img {
  width: 18px;
  height: 18px;
}

.portfolioDetail__element-text {
  text-align: left;
}

.portfolioDetail__element-text li {
  list-style: square;
}

.portfolioDetail__element-date {
  color: #6d6d6d;
  color: lab(46.1644% -.0000298023 0);
  text-align: left;
}

.portfolioDetail__element-tag {
  color: #fff;
  background-color: #5f5dcd;
  border-radius: 20px;
  padding: 2px 10px;
  font-size: 14px;
  display: inline;
}

.portfolioDetail__element-tagList {
  margin-block: .625rem;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: .625rem;
  margin-bottom: 30px;
  display: flex;
}

.portfolioDetail__element-link {
  color: #003e7c;
  color: lab(24.8721% 9.03191 -55.0323);
  word-break: break-all;
  align-items: center;
  gap: 10px;
  display: flex;
}

.portfolioDetail__element-link:hover {
  opacity: .7;
}

@media screen and (max-width: 500px) {
  .portfolioDetail {
    border-radius: 1.25rem;
    margin-top: 30px;
  }

  .portfolioDetail_btn {
    background-color: #fff;
    background-color: lab(100% 0 0);
    border: 0 solid;
    width: 46px;
    margin-left: auto;
    margin-right: .625rem;
    display: block;
    position: relative;
    top: 1.25rem;
  }

  .portfolioDetail__top {
    margin-top: 1.25rem;
  }

  .portfolioDetail__element {
    width: 45%;
  }

  .portfolioDetail__element-topImg {
    aspect-ratio: 16 / 9;
    object-fit: cover;
    width: 100%;
    height: auto;
    margin-inline: auto;
    position: relative;
  }

  .portfolioDetail__element-img {
    aspect-ratio: 16 / 9;
    object-fit: contain;
    width: 90%;
    height: auto;
    margin-inline: auto;
    position: relative;
  }

  .portfolioDetail__element-title {
    text-align: left;
  }

  .portfolioDetail__element-subtitle {
    text-align: left;
    margin: 10px 0;
    font-size: 20px;
  }

  .portfolioDetail__element-text {
    text-align: left;
  }

  .portfolioDetail__element-text li {
    list-style: square;
  }

  .portfolioDetail__element-date {
    text-align: left;
  }

  .portfolioDetail__element-tag {
    border-radius: 20px;
    margin: 5px 2px;
    padding: 5px 10px;
    display: inline-block;
  }

  .portfolioDetail__element-tagList {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .portfolioDetail__element-link {
    color: #003e7c;
    color: lab(24.8721% 9.03191 -55.0323);
    margin-bottom: 1.25rem;
  }

  .portfolioDetail__element-link:hover {
    opacity: .7;
  }
}

.privacy-policy__content {
  margin: 30px 0;
}

.privacy-policy__heading {
  text-align: left;
  margin-bottom: 10px;
  font-size: 20px;
}

.privacy-policy__text {
  text-align: left;
  margin-bottom: 20px;
}

.privacy-policy__link {
  color: #06c;
  margin: 6px 0;
  text-decoration: underline;
}

.privacy-policy__link:hover {
  text-decoration: none;
}

html {
  scroll-behavior: smooth;
  font-feature-settings: "palt";
}

body {
  color: #0d0d0d;
  color: lab(3.70684% 0 -.00000298023);
  letter-spacing: .1em;
  scroll-behavior: smooth;
  margin: 0;
  font-family: noto-sans-cjk-jp, sans-serif;
  font-size: 16px;
}

img {
  vertical-align: bottom;
  width: 100%;
}

a {
  color: #0d0d0d;
  color: lab(3.70684% 0 -.00000298023);
  cursor: pointer;
  text-decoration: none;
  display: block;
}

a :hover {
  opacity: .7;
}

.max_width {
  text-align: center;
  width: 100%;
  max-width: 1100px;
  margin-inline: auto;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

.bg-white {
  background-color: #fff;
  width: 1000px;
  height: 37.5rem;
  padding: 1.25rem;
}

.text-center {
  text-align: center;
  padding: 30px auto .625rem;
}

.nav {
  margin-left: auto;
}

.pc-nav a {
  font-weight: bold;
}

.portfolio__List {
  grid-template-columns: repeat(3, 1fr);
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: space-between;
  gap: 3.75rem 3.125rem;
  width: 100%;
  margin: 3.125rem auto;
  display: -webkit-box;
  display: grid;
}

.portfolio__List-item {
  overflow-wrap: break-word;
  width: 100%;
  margin: 0;
}

.navigation-container {
  z-index: 1;
  position: relative;
}

.portfolio-content {
  grid-template-columns: 1.875rem 1fr 1.875rem;
  align-items: center;
  margin: 50px 0;
  display: grid;
}

.prev-button {
  left: -1.875rem;
}

.next-button {
  right: -1.875rem;
}

.prev-button, .next-button {
  cursor: pointer;
  height: fit-content;
}

.prev-button:hover, .next-button:hover {
  opacity: .7;
}

.u-padding-bottom {
  margin-bottom: 50px !important;
}

.main__title {
  color: #4485ff;
  color: lab(56.1927% 11.0934 -68.2153);
  text-align: left;
  margin: 0;
  font-size: 3.75rem;
}

.main__title-white {
  color: #fff;
  text-align: left;
  margin: 0;
  font-size: 3.75rem;
}

.main__title-white:after {
  color: #fff;
  text-align: left;
  content: attr(data-ja);
  margin: 0 0 2.5rem;
  font-size: 1.25rem;
  line-height: 1.5;
  display: block;
}

.main__title:after {
  color: #4485ff;
  color: lab(56.1927% 11.0934 -68.2153);
  text-align: left;
  content: attr(data-ja);
  margin: 0 0 2.5rem;
  font-size: 1.25rem;
  line-height: 1.5;
  display: block;
}

@media (max-width: 1024px) {
  .max_width {
    text-align: center;
    width: 90%;
    max-width: 1100px;
    margin-inline: auto;
  }

  .portfolio__List {
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 1.25rem;
    width: 100%;
    margin: 3.125rem auto;
    display: flex;
  }

  .portfolio__List-item {
    overflow-wrap: break-word;
    width: 45%;
    margin: 0;
  }
}

@media screen and (max-width: 580px) {
  .main__title {
    color: #4485ff;
    color: lab(56.1927% 11.0934 -68.2153);
    text-align: left;
    margin: 0;
    font-size: 2.125rem;
  }

  .main__title-white {
    color: #fff;
    text-align: left;
    margin: 0;
    font-size: 3.75rem;
  }

  .main__title__btn {
    text-align: center;
    margin-inline: auto;
    padding-block: .625rem;
    font-size: 16px;
  }

  .main__title:after {
    margin: 0;
    color: #4485ff;
    color: lab(56.1927% 11.0934 -68.2153);
    text-align: left;
    content: attr(data-ja);
    margin-bottom: .625rem;
    font-size: 1.25rem;
    display: block;
  }

  .main__subtitle {
    color: #4485ff;
    color: lab(56.1927% 11.0934 -68.2153);
    text-align: left;
    margin: 0;
    font-size: 1.125rem;
  }

  .main__subtitle-white {
    color: #fff;
    text-align: left;
    margin: 0;
    font-size: 1.25rem;
  }

  .nav {
    display: none;
  }

  .bg-white {
    overflow-wrap: break-word;
    background-color: #fff;
    width: 90%;
    height: 100%;
    margin-inline: auto;
    padding: 1.875rem;
  }

  .max_width {
    width: 90%;
    margin: 0 auto;
  }

  .portfolio-content {
    grid-template-columns: .9375rem 1fr .9375rem;
    margin-block: 20px;
    display: grid;
  }

  .portfolio__List {
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: space-between;
    gap: 3.125rem 0;
    width: 100%;
    margin: 1.875rem auto;
    display: flex;
  }

  .portfolio__List-item {
    overflow-wrap: break-word;
    width: 100%;
    margin: 0;
  }

  .pc {
    display: none;
  }

  .sp {
    display: block;
  }

  .prev-button {
    width: 1.875rem;
    height: 1.875rem;
    left: 0;
  }

  .next-button {
    width: 1.875rem;
    height: 1.875rem;
    right: 0;
  }
}

.u-padding {
  padding-bottom: 60px;
}

.fv {
  z-index: -1;
  width: 100%;
  height: 100vh;
}

.fv__container {
  justify-content: center;
  margin-top: 1.25rem;
  display: flex;
}

.fv__element {
  align-items: center;
  width: 50%;
}

.fv__title {
  z-index: 1;
  color: #4485ff;
  color: lab(56.1927% 11.0934 -68.2153);
  text-align: left;
  letter-spacing: 4px;
  background-color: #fff;
  margin: .625rem auto;
  font-family: futura-pt-bold, sans-serif;
  font-size: 7.5rem;
  position: absolute;
  top: 16.25rem;
  left: 2.5rem;
}

.fv__subtitle {
  z-index: 1;
  margin-inline: auto;
  color: #4485ff;
  color: lab(56.1927% 11.0934 -68.2153);
  text-align: left;
  letter-spacing: 4px;
  background-color: #fff;
  margin-top: 7.5rem;
  font-family: futura-pt-bold, sans-serif;
  font-size: 5rem;
  position: absolute;
  top: 19.375rem;
  left: 2.5rem;
}

@keyframes GradietionAnimation {
  0% {
    background-position: 0%;
  }

  50% {
    background-position: 100%;
  }

  100% {
    background-position: 0%;
  }
}

.back__btn {
  z-index: 10;
  color: #fff;
  cursor: pointer;
  background-color: #4284ff;
  border: 0 solid;
  border-radius: 100%;
  width: auto;
  padding: 25px;
  font-size: 1.25rem;
  position: fixed;
  bottom: 20px;
  right: 10px;
}

.back__btn:hover {
  opacity: .7;
}

.about__name {
  text-align: left;
  margin: .625rem auto;
  font-size: 1.625rem;
  font-weight: 600;
}

.about__profile {
  text-align: left;
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
  font-size: 16px;
  line-height: 1.6;
  display: flex;
}

.about__text {
  text-align: left;
  font-size: 16px;
  line-height: 1.6;
  display: flex;
}

.about__text-span {
  font-weight: bold;
}

.about__text dd {
  margin: 0;
}

.about_img {
  object-fit: cover;
  width: 400px;
  height: 300px;
  position: relative;
}

.about_sns-icon {
  width: 30px;
}

.about__container {
  justify-content: flex-start;
  gap: 1.25rem;
  margin-top: 1.125rem;
  margin-bottom: 1.25rem;
  display: flex;
}

.container {
  position: relative;
  bottom: 5px;
}

.modal {
  background: #fff;
  border-radius: 10px;
  max-width: 95%;
  max-height: 95%;
  padding: 30px;
  position: relative;
  overflow: auto;
}

.modal-close {
  cursor: pointer;
  background: none;
  border: none;
  font-size: 1.5rem;
  position: absolute;
  top: 10px;
  right: 10px;
}

.modal-close img {
  aspect-ratio: 16 / 9;
  width: 100%;
  max-width: 1100px;
  height: auto;
}

.modal-text {
  margin-left: 1.25rem;
}

.modal-button {
  color: #fff;
  text-align: center;
  background-color: #003e7c;
  background-color: lab(24.8721% 9.03191 -55.0323);
  border: none;
  border-radius: .3125rem;
  margin: 1.25rem auto;
  padding: .625rem 1.875rem;
  display: block;
}

li {
  list-style: none;
}

.tac {
  text-align: center;
}

.about, .portfolio, .news, .contact {
  padding-block: 60px;
}

.title-border-right {
  align-items: center;
  display: flex;
}

.title-border-right :after {
  content: "";
  border-top: 1px solid;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin-left: 1rem;
}

.transition-link {
  display: inline-block;
}

.size {
  color: #4485ff;
  color: lab(56.1927% 11.0934 -68.2153);
  margin-top: 40px;
}

.skill {
  background-color: #f7f7f7;
  padding-bottom: 40px;
}

.skill__title {
  text-align: left;
  margin-bottom: 14px;
  font-size: 20px;
}

.skill__container {
  margin-inline: auto;
  grid-template-columns: repeat(3, 1fr);
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 60px;
  display: grid;
}

.skill__element-wrapper {
  width: 100%;
  max-width: 400px;
  position: relative;
}

.skill__toggle-icon {
  font-size: 1.2rem;
  transition: transform .3s;
  position: absolute;
  right: 15px;
}

.skill__element {
  background-color: #fff;
  justify-content: flex-start;
  align-items: center;
  gap: 0 60px;
  width: 100%;
  height: 100px;
  display: flex;
  box-shadow: 0 2px 5px #838383;
}

.skill__element:hover {
  opacity: .7;
}

.skill__text {
  text-align: left;
  margin: 0 auto;
  font-size: 16px;
  font-weight: bold;
}

.skill__accordion {
  max-height: 0;
  margin-top: 6px;
  transition: max-height .3s;
  overflow: hidden;
}

.skill__accordion-inner {
  background-color: #d5d5d5;
  padding: 30px 20px;
  position: relative;
}

.skill__accordion-inner:before {
  content: "";
  border: 10px solid #0000;
  border-top-width: 0;
  border-bottom-color: #000000e6;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.skill__about {
  text-align: left;
  font-size: .9rem;
  line-height: 1.4;
}

.skill__svg {
  position: relative;
  width: 60px !important;
  height: 60px !important;
}

.skill details[open] .skill__toggle-icon {
  transform: rotate(180deg);
}

.skill details[open] .skill__accordion {
  max-height: 200px;
}

.swiper-horizontal {
  width: 90%;
}

.modalBox {
  justify-content: space-around;
  align-items: center;
  width: 100%;
  margin-top: 50px;
  display: flex;
}

.modalBox_bg {
  z-index: 100;
  background-color: #fff;
  border: 1px solid #707070;
  border-radius: 20px;
  width: 80%;
  max-width: 1100px;
  height: 450px;
  margin-inline: auto;
  position: absolute;
  inset: 0;
}

.modalBox_bg::backdrop {
  background-color: #00000080;
  width: 100%;
  height: 100%;
}

.modalBox_btn {
  cursor: pointer;
  background-color: #fff;
  border: 0 solid;
  width: 46px;
  margin-left: auto;
  margin-right: .625rem;
  display: block;
  position: relative;
  top: 1.25rem;
}

.modalBox_btn:hover {
  opacity: .7;
}

.modalBox__element {
  width: 45%;
}

.modalBox__element__img {
  object-fit: contain;
  border: 1px solid #6d6d6d;
  border: 1px solid lab(46.1644% -.0000298023 0);
  width: 100%;
  height: 300px;
}

.modalBox__element__text {
  text-align: left;
}

.modalBox__element__link {
  color: #003e7c;
  color: lab(24.8721% 9.03191 -55.0323);
}

.modalBox__element__link:hover {
  opacity: .7;
}

.canvas {
  width: 100%;
  height: 900px;
  margin: 0 auto;
  position: relative;
  top: 0;
}

.common__btn {
  z-index: 1;
  color: #4485ff;
  color: lab(56.1927% 11.0934 -68.2153);
  background-color: #fff;
  border: 1.5px solid #4485ff;
  border: 1.5px solid lab(56.1927% 11.0934 -68.2153);
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: auto;
  margin: 0 auto;
  padding: 8px 20px;
  font-size: 14px;
  transition: color .2s ease-in-out;
  display: flex;
  position: relative;
  overflow: hidden;
}

.common__btn:after {
  content: "";
  border-top: 2px solid #4485ff;
  border-top: 2px solid lab(56.1927% 11.0934 -68.2153);
  border-right: 2px solid #4485ff;
  border-right: 2px solid lab(56.1927% 11.0934 -68.2153);
  width: 6px;
  height: 6px;
  margin-left: 6px;
  transform: rotate(45deg);
}

.common__btn:hover {
  color: #fff;
  background-color: #4485ff;
  background-color: lab(56.1927% 11.0934 -68.2153);
}

.common__btn:hover:after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.common__btn.slide {
  color: #4485ff;
  color: lab(56.1927% 11.0934 -68.2153);
  background: #fff;
  position: relative;
}

.common__btn.slide:before {
  z-index: -1;
  content: "";
  transform-origin: 0 0;
  background: #4485ff;
  background: lab(56.1927% 11.0934 -68.2153);
  width: 100%;
  height: 100%;
  transition: all .2s cubic-bezier(.45, 0, .55, 1);
  position: absolute;
  top: 0;
  left: 0;
  transform: scale(0, 1);
}

.common__btn.slide:hover {
  color: #fff;
}

.common__btn.slide:hover:before {
  transform: scale(1);
}

.contact {
  background-image: url("/images/top_contact_bg.webp");
}

.contact__box {
  background-color: #fff;
  border-radius: 10px;
  width: 50%;
  margin: 0 auto;
  padding-block: 50px;
}

.contact__box-title {
  margin: 0;
  font-size: 26px;
}

.contact__box-text {
  margin: 5px 0 25px;
}

.contact__btn {
  color: #fff;
  background-color: #4485ff;
  background-color: lab(56.1927% 11.0934 -68.2153);
  border-radius: 10px;
  padding: 10px 20px;
  font-weight: bold;
  display: inline-block;
}

.contact__btn:hover {
  opacity: .7;
}

.lower__bg {
  background-color: #4284ff;
  height: 250px;
}

.lower__title {
  color: #fff;
  text-align: left;
  margin: 0;
  padding-top: 50px;
  font-size: 3.75rem;
}

.lower__title:after {
  color: #fff;
  text-align: left;
  content: attr(data-ja);
  margin: 0 0 2.5rem;
  font-size: 1.25rem;
  display: block;
}

.lower__subTitle {
  color: #0d0d0d;
  color: lab(3.70684% 0 -.00000298023);
  text-align: left;
  padding-top: .9375rem;
  padding-bottom: .625rem;
  font-size: 28px;
}

.lower__subTitle-span {
  color: #707070;
  margin-left: 10px;
  font-size: 16px;
}

body.modal-open {
  overflow: hidden;
}

.overlay {
  z-index: 1000;
  background-color: #000000b3;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  inset: 0;
}

@media screen and (max-width: 1024px) {
  .canvas {
    width: 100%;
    height: 600px;
    margin: 0 auto;
    position: relative;
    top: 0;
  }

  .fv {
    z-index: -1;
    width: 100%;
    height: 70vh;
  }

  .fv__container {
    justify-content: center;
    margin-top: 1.25rem;
    display: flex;
  }

  .fv__element {
    align-items: center;
    width: 50%;
  }

  .fv__title {
    color: #4485ff;
    color: lab(56.1927% 11.0934 -68.2153);
    text-align: left;
    letter-spacing: 4px;
    background-color: #fff;
    font-family: futura-pt-bold, sans-serif;
    font-size: 3.75rem;
    position: absolute;
    top: 11.25rem;
    left: 1.25rem;
  }

  .fv__subtitle {
    color: #4485ff;
    color: lab(56.1927% 11.0934 -68.2153);
    text-align: left;
    letter-spacing: 4px;
    background-color: #fff;
    margin-inline: auto;
    font-family: futura-pt-bold, sans-serif;
    font-size: 2.5rem;
    position: absolute;
    top: 10rem;
    left: 1.25rem;
  }

  .about_img {
    width: 320px;
    height: 180px;
    margin-inline: auto;
  }

  .skill__title {
    text-align: left;
  }

  .skill__container {
    grid-template-columns: repeat(2, 1fr);
    display: grid;
  }

  .skill__element {
    gap: 0 10px;
    width: 100%;
  }

  .skill__text {
    text-align: left;
    width: 140px;
    font-size: 16px;
    font-weight: bold;
  }

  .skill__svg {
    position: relative;
    width: 50px !important;
    height: 50px !important;
  }
}

@media screen and (max-width: 500px) {
  .size {
    color: #4485ff;
    color: lab(56.1927% 11.0934 -68.2153);
    margin-top: 1.25rem;
  }

  .border_company {
    -webkit-box-shadow: -rem(5) .3125rem 0 .3125rem #000081;
    box-shadow: -rem(5) .3125rem 0 .3125rem #000081;
    background-color: #fff;
    margin-left: 0;
  }

  .about, .portfolio, .news, .contact {
    padding-block: 20px;
  }

  .fv {
    width: 100%;
    height: 500px;
    margin-inline: auto;
    display: inline-block;
  }

  .fv__container {
    flex-direction: column;
    margin-top: 0;
  }

  .fv__element {
    align-items: center;
    width: 100%;
  }

  .fv__title {
    width: 300px;
    margin: 0;
    font-size: 1.875rem;
    line-height: 40px;
    position: relative;
    top: 7.5rem;
    left: 1.25rem;
  }

  .fv__subtitle {
    width: 200px;
    margin: .625rem 0 0;
    font-size: 1.5rem;
    position: relative;
    top: 7.5rem;
    left: 1.25rem;
  }

  .canvas {
    width: 200px;
    height: 200px;
    margin: 0 auto;
    position: relative;
    top: 160px;
  }

  .about_name {
    text-align: center;
    margin: .625rem auto;
    font-size: 22px;
  }

  .about_img {
    width: 75%;
    height: 220px;
    margin-inline: auto;
  }

  .about_text {
    text-align: center;
    margin: 40px auto;
    font-size: 16px;
    line-height: 1.6;
  }

  .about .tac {
    margin-top: 0;
  }

  .skill {
    background-color: #f7f7f7;
    padding-bottom: 40px;
  }

  .skill__title {
    text-align: left;
    margin-bottom: 14px;
    font-size: 20px;
  }

  .skill__container {
    margin-inline: auto;
    grid-template-columns: repeat(1, 1fr);
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 60px;
    display: grid;
  }

  .skill__element-wrapper {
    width: 100%;
    position: relative;
  }

  .skill__toggle-icon {
    font-size: 1.2rem;
    transition: transform .3s;
    position: absolute;
    right: 15px;
  }

  .skill__toggle-icon.is-open {
    transform: rotate(180deg);
  }

  .skill__element {
    background-color: #fff;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 0 20px;
    width: 100%;
    height: 100px;
    display: flex;
    box-shadow: 0 2px 5px #838383;
  }

  .skill__element:hover {
    opacity: .7;
  }

  .skill__text {
    width: auto;
    margin: 0 auto;
    font-size: 16px;
    font-weight: bold;
  }

  .skill__accordion {
    max-height: 0;
    margin-top: 10px;
    transition: max-height .3s;
    overflow: hidden;
  }

  .skill__accordion.is-open {
    max-height: 200px;
  }

  .skill__accordion-inner {
    position: relative;
  }

  .skill__accordion-inner:before {
    content: "";
    border: 10px solid #0000;
    border-top-width: 0;
    border-bottom-color: #000000e6;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
  }

  .skill__about {
    text-align: left;
    font-size: .9rem;
    line-height: 1.4;
  }

  .skill__svg {
    position: relative;
    width: 50px !important;
    height: 50px !important;
  }

  .logo_sns {
    width: 50%;
    margin-inline: auto;
  }

  img {
    width: 100%;
  }

  .back__btn {
    padding: 12px;
  }

  .modalBox {
    margin-inline: auto;
    border-radius: 1.25rem;
    flex-direction: column;
    align-items: center;
    width: 90%;
    margin-top: 30px;
    display: flex;
  }

  .modalBox_btn {
    background-color: #fff;
    border: 0 solid;
    width: 46px;
    margin-left: auto;
    margin-right: .625rem;
    display: block;
    position: relative;
    top: 1.25rem;
  }

  .modalBox__element {
    width: 100%;
  }

  .modalBox__element__img {
    object-fit: contain;
    border: 1px solid #6d6d6d;
    border: 1px solid lab(46.1644% -.0000298023 0);
    width: 100%;
    height: 162px;
  }

  .modalBox__element__text {
    text-align: left;
  }

  .modalBox__element__link {
    color: #003e7c;
    color: lab(24.8721% 9.03191 -55.0323);
  }

  .modalBox__element__link:hover {
    opacity: .7;
  }

  .modal {
    background: #fff;
    border-radius: 10px;
    max-width: 95%;
    max-height: 95%;
    padding: 0;
    position: relative;
    overflow: auto;
  }

  .modal img {
    object-fit: contain;
    height: 400px;
  }

  .modal-close {
    cursor: pointer;
    background: none;
    border: none;
    font-size: 1.5rem;
    position: absolute;
    top: 10px;
    right: 10px;
  }

  .modal-close img {
    width: 100%;
    max-width: 1100px;
    height: 200px;
  }

  .contact {
    background-image: url("/images/top_contact_bg_sp.webp");
    background-size: cover;
  }

  .contact__box {
    background-color: #fff;
    border-radius: 10px;
    width: 100%;
    margin: 0 auto;
    padding-block: 40px;
  }

  .contact__box-title {
    margin: 0;
    font-size: 26px;
  }

  .contact__box-text {
    margin: 5px 0 25px;
  }

  .contact__btn {
    color: #fff;
    background-color: #4485ff;
    background-color: lab(56.1927% 11.0934 -68.2153);
    border-radius: 10px;
    padding: 10px 20px;
    display: inline-block;
  }

  .contact__btn:hover {
    opacity: .7;
  }

  .lower__bg {
    background-color: #4284ff;
    height: 180px;
  }

  .lower__title {
    color: #fff;
    text-align: left;
    margin: 0;
    padding-top: 40px;
    font-size: 2.25rem;
  }

  .lower__title:after {
    color: #fff;
    text-align: left;
    content: attr(data-ja);
    margin: 0 0 2.5rem;
    font-size: 1rem;
    display: block;
  }

  .lower__subTitle {
    color: #0d0d0d;
    color: lab(3.70684% 0 -.00000298023);
    text-align: left;
    font-size: 22px;
  }

  .lower__subTitle-span {
    color: #707070;
    margin-left: 10px;
    font-size: 16px;
  }
}

.loader {
  text-indent: -9999em;
  border: 1.1em solid #fff3;
  border-left-color: #000081;
  margin: 60px auto;
  font-size: .625rem;
  animation: 1.1s linear infinite load8;
  position: relative;
  transform: translateZ(0);
}

.loader-wrap {
  background: #fff;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: fixed;
}

.loader, .loader:after {
  border-radius: 50%;
  width: 10em;
  height: 10em;
}

@keyframes load8 {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

.modalBox__skill__svg {
  text-align: center;
  margin-inline: auto;
  display: block;
  position: relative;
  width: 160px !important;
  height: 160px !important;
}

.fade-in {
  opacity: 0;
  transition: opacity .5s ease-in-out, transform .5s ease-in-out;
  transform: translateY(20px);
}

.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes slide__in__right {
  from {
    opacity: 0;
    transform: translateX(150px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.slide__in__right {
  animation-name: slide__in__right;
  animation-duration: 1s;
  animation-timing-function: ease-out;
}

/* [project]/components/layout/adminHeader.scss.css [app-client] (css) */
.adminHeader {
  z-index: 1000;
  color: #fff;
  background: #1f2937;
  width: 100%;
  position: sticky;
  top: 0;
}

.adminHeader_container {
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
}

.adminHeader_logo .logo {
  text-align: center;
  letter-spacing: .05em;
  align-items: center;
  font-weight: 700;
  display: flex;
}

.adminHeader nav ul {
  align-items: center;
  gap: 2rem;
  display: flex;
}

.adminHeader nav ul li {
  list-style: none;
}

.adminHeader nav ul li a {
  color: #fff;
  font-size: .95rem;
  text-decoration: none;
  transition: all .2s;
}

.adminHeader nav ul li a:hover {
  opacity: .7;
}

.adminHeader nav ul .action-button {
  color: #fff;
  cursor: pointer;
  background: #ef4444;
  border: none;
  border-radius: 6px;
  padding: .4rem 1rem;
  font-size: .9rem;
  transition: all .2s;
}

.adminHeader nav ul .action-button:hover {
  background: #dc2626;
}

