@charset "UTF-8";

@font-face {
  font-family: "Roboto";
  src: url("../font/Roboto-VariableFont_wdth,wght.ttf") format("truetype");
  font-weight: 100 900;
  font-style: normal;
  size-adjust: 105%;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  letter-spacing: 0.16em;
}

h1,
h2,
h3,
h4 {
  -moz-osx-font-smoothing: grayscale;
}

header {
  position: sticky;
  background-color: #fff;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
  box-shadow: 0 1px 2px rgba(47, 58, 61, 0.05), 0 2px 4px rgba(47, 58, 61, 0.05), 0 4px 8px rgba(47, 58, 61, 0.03);
}

header a {
  text-decoration: none;
}

header nav {
  max-width: 1000px;
  margin: auto;
  padding: 0 16px;
}

@media screen and (min-width: 428px) {
  header nav {
    padding: 0 24px;
  }
}

@media screen and (min-width: 768px) {
  header nav {
    padding: 0 40px;
  }
}

header nav .global-navigation {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
  margin: auto;
}

@media screen and (min-width: 428px) {
  header nav .global-navigation {
    height: 80px;
  }
}

header nav .global-navigation .logo-container h1 {
  margin-block-start: 0em;
  margin-block-end: 0em;
  font-size: 0em;
}

header nav .global-navigation .logo-container h1 a {
  text-decoration: none;
  display: flex;
  align-items: center;
}

header nav .global-navigation .logo-container h1 a img {
  width: 40px;
}

header nav .global-navigation .nav-menu {
  display: none;
  justify-content: flex-end;
  align-items: center;
  gap: 0;
}

@media screen and (min-width: 768px) {
  header nav .global-navigation .nav-menu {
    display: flex;
    gap: 24px;
  }
}

header nav .global-navigation .nav-menu .menu {
  font-size: 16px;
}

header nav .global-navigation .nav-menu .menu .parent {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 10000;
}

header nav .global-navigation .nav-menu .menu label {
  z-index: 10001;
  display: block;
  color: #2F3A3D;
  padding: 0 13px;
  height: 40px;
}

header nav .global-navigation .nav-menu .menu label .label-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  gap: 2.5px;
}

header nav .global-navigation .nav-menu .menu label .label-container svg {
  width: 17.5px;
}

header nav .global-navigation .nav-menu .menu label .label-container svg path {
  fill: #2F3A3D;
}

header nav .global-navigation .nav-menu .menu input {
  display: none;
}

header nav .global-navigation .nav-menu .menu a {
  color: #2F3A3D;
  padding: 8px 12px;
  height: 100%;
}

header nav .global-navigation .nav-menu .child {
  z-index: 9999;
  position: absolute;
  top: 40px;
  display: flex;
  flex-direction: column;
  gap: 0px;
  width: 120px;
  height: 0;
  overflow: hidden;
  padding-inline-start: 0;
}

header nav .global-navigation .nav-menu .child li:nth-child(1) {
  z-index: 4;
  transform: translateY(-100%);
  transition: transform 0.1s cubic-bezier(0.4, 0, 0.2, 1);
}

header nav .global-navigation .nav-menu .child li:nth-child(2) {
  z-index: 3;
  transform: translateY(-200%);
  transition: transform 0.1s cubic-bezier(0.4, 0, 0.2, 1);
}

header nav .global-navigation .nav-menu .child li:nth-child(3) {
  z-index: 2;
  transform: translateY(-300%);
  transition: transform 0.1s cubic-bezier(0.4, 0, 0.2, 1);
}

header nav .global-navigation .nav-menu .child li:nth-child(4) {
  z-index: 1;
  transform: translateY(-300%);
  transition: transform 0.1s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
}

header nav .global-navigation .nav-menu .child li {
  display: flex;
  align-items: center;
  background-color: #2F3A3D;
  will-change: transform, animation;
}

header nav .global-navigation .nav-menu .child li a {
  padding: 12px 16px;
  font-size: 12px;
  color: #fff;
}

@media (hover: hover) {
  header nav .global-navigation .nav-menu .parent:hover .child {
    height: auto;
  }

  header nav .global-navigation .nav-menu .parent:hover .child li:nth-child(1) {
    transform: translateY(0%);
  }

  header nav .global-navigation .nav-menu .parent:hover .child li:nth-child(2) {
    transform: translateY(-100%);
    animation: dropdown2 0.1s linear 0.15s forwards;
  }

  header nav .global-navigation .nav-menu .parent:hover .child li:nth-child(3) {
    transform: translateY(-200%);
    animation: dropdown3 0.1s linear 0.15s forwards;
    animation: dropdown2 0.1s linear 0.3s forwards;
  }

  header nav .global-navigation .nav-menu .parent:hover .child li:nth-child(4) {
    transform: translateY(-300%);
    animation: dropdown4 0.1s linear 0.15s forwards;
    animation: dropdown3 0.1s linear 0.3s forwards;
    animation: dropdown2 0.1s linear 0.45s forwards;
  }
}

@media (hover: none) {
  header nav .global-navigation .nav-menu .parent input:checked+.child {
    height: auto;
  }

  header nav .global-navigation .nav-menu .parent input:checked+.child li:nth-child(1) {
    transform: translateY(0%);
  }

  header nav .global-navigation .nav-menu .parent input:checked+.child li:nth-child(2) {
    transform: translateY(-100%);
    animation: dropdown2 0.1s linear 0.15s forwards;
  }

  header nav .global-navigation .nav-menu .parent input:checked+.child li:nth-child(3) {
    transform: translateY(-200%);
    animation: dropdown3 0.1s linear 0.15s forwards;
    animation: dropdown2 0.1s linear 0.3s forwards;
  }

  header nav .global-navigation .nav-menu .parent input:checked+.child li:nth-child(4) {
    transform: translateY(-300%);
    animation: dropdown4 0.1s linear 0.15s forwards;
    animation: dropdown3 0.1s linear 0.3s forwards;
    animation: dropdown2 0.1s linear 0.45s forwards;
  }
}

@keyframes dropdown2 {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0%);
  }
}

@keyframes dropdown3 {
  from {
    transform: translateY(-200%);
  }

  to {
    transform: translateY(-100%);
  }
}

@keyframes dropdown4 {
  from {
    transform: translateY(-300%);
  }

  to {
    transform: translateY(-200%);
  }
}

header nav .global-navigation .btn-trigger {
  z-index: 10;
  position: relative;
  width: 44px;
  height: 44px;
  cursor: pointer;
  display: block;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

@media screen and (min-width: 768px) {
  header nav .global-navigation .btn-trigger {
    display: none;
  }
}

header nav .global-navigation .btn-trigger span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% - 4px);
  height: 2px;
  background-color: #2F3A3D;
  border-radius: 2px;
}

header nav .global-navigation .btn-trigger span:nth-of-type(1) {
  transform: translate(-50%, -14px);
}

header nav .global-navigation .btn-trigger span:nth-of-type(2) {
  transform: translate(-50%, 0);
}

header nav .global-navigation .btn-trigger span:nth-of-type(3) {
  transform: translate(-50%, 14px);
}

header nav .global-navigation .btn-trigger.triggered.active span:nth-of-type(1) {
  animation: active-btn07-bar01 0.75s forwards;
}

header nav .global-navigation .btn-trigger.triggered.active span:nth-of-type(2) {
  animation: active-btn07-bar02 0.75s forwards;
}

header nav .global-navigation .btn-trigger.triggered.active span:nth-of-type(3) {
  animation: active-btn07-bar03 0.75s forwards;
}

header nav .global-navigation .btn-trigger.triggered:not(.active) span:nth-of-type(1) {
  animation: inactive-bar01 0.75s forwards;
}

header nav .global-navigation .btn-trigger.triggered:not(.active) span:nth-of-type(2) {
  animation: inactive-bar02 0.75s forwards;
}

header nav .global-navigation .btn-trigger.triggered:not(.active) span:nth-of-type(3) {
  animation: inactive-bar03 0.75s forwards;
}

@keyframes active-btn07-bar01 {
  0% {
    transform: translate(-50%, -14px) rotate(0);
  }

  50% {
    transform: translate(-50%, 0) rotate(0);
  }

  100% {
    transform: translate(-50%, 0) rotate(45deg);
  }
}

@keyframes active-btn07-bar02 {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 1;
  }

  50.01% {
    opacity: 0;
  }

  100% {
    opacity: 0;
  }
}

@keyframes active-btn07-bar03 {
  0% {
    transform: translate(-50%, 14px) rotate(0);
  }

  50% {
    transform: translate(-50%, 0) rotate(0);
  }

  100% {
    transform: translate(-50%, 0) rotate(-45deg);
  }
}

@keyframes inactive-bar01 {
  0% {
    transform: translate(-50%, 0) rotate(45deg);
  }

  50% {
    transform: translate(-50%, 0) rotate(0);
  }

  100% {
    transform: translate(-50%, -14px) rotate(0);
  }
}

@keyframes inactive-bar02 {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 0;
  }

  50.01% {
    opacity: 1;
  }

  100% {
    opacity: 1;
  }
}

@keyframes inactive-bar03 {
  0% {
    transform: translate(-50%, 0) rotate(-45deg);
  }

  50% {
    transform: translate(-50%, 0) rotate(0);
  }

  100% {
    transform: translate(-50%, 14px) rotate(0);
  }
}

header nav .global-navigation .mask-bg {
  z-index: -1;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  visibility: hidden;
  background-color: rgba(47, 58, 61, 0.75);
  opacity: 0;
  transition: opacity 0.375s;
}

header nav .global-navigation .mask-bg.active {
  z-index: 8;
  visibility: visible;
  opacity: 1;
}

header nav .global-navigation .sp-menu-wrapper {
  z-index: 9;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 80%;
  max-width: 300px;
  background-color: #fff;
  transform: translateX(100%);
  transition: transform 0.75s;
  box-shadow: 0 4px 8px rgba(47, 58, 61, 0.12), 0 8px 16px rgba(47, 58, 61, 0.08), 0 16px 32px rgba(47, 58, 61, 0.06);
}

header nav .global-navigation .sp-menu-wrapper .sp-menu-container {
  margin-top: 80px;
}

header nav .global-navigation .sp-menu-wrapper .sp-menu-container .sp-nav-menu {
  padding: 40px 24px;
}

header nav .global-navigation .sp-menu-wrapper .sp-menu-container .sp-nav-menu .sp-menu {
  display: flex;
  flex-direction: column;
  font-size: 16px;
  border-bottom: 1px solid #B0B7BD;
}

header nav .global-navigation .sp-menu-wrapper .sp-menu-container .sp-nav-menu .sp-menu .sp-parent {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 10000;
}

header nav .global-navigation .sp-menu-wrapper .sp-menu-container .sp-nav-menu .sp-menu label {
  z-index: 10001;
  display: block;
  color: #2F3A3D;
  padding: 16px 0;
}

header nav .global-navigation .sp-menu-wrapper .sp-menu-container .sp-nav-menu .sp-menu label .label-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}

header nav .global-navigation .sp-menu-wrapper .sp-menu-container .sp-nav-menu .sp-menu label .label-container svg {
  width: 20px;
}

header nav .global-navigation .sp-menu-wrapper .sp-menu-container .sp-nav-menu .sp-menu label .label-container svg path {
  fill: #2F3A3D;
}

header nav .global-navigation .sp-menu-wrapper .sp-menu-container .sp-nav-menu .sp-menu input {
  display: none;
}

header nav .global-navigation .sp-menu-wrapper .sp-menu-container .sp-nav-menu .sp-menu a {
  color: #2F3A3D;
  padding: 16px 0;
}

header nav .global-navigation .sp-menu-wrapper .sp-menu-container .sp-nav-menu .sp-child {
  margin-block-start: 0em;
  margin-block-end: 0em;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  height: auto;
  overflow: hidden;
  padding-inline-start: 0;
}

header nav .global-navigation .sp-menu-wrapper .sp-menu-container .sp-nav-menu .sp-child li {
  display: flex;
  align-items: center;
  background-color: #2F3A3D;
  max-height: 0;
  transition: max-height 0.1s cubic-bezier(0.4, 0, 0.2, 1);
}

header nav .global-navigation .sp-menu-wrapper .sp-menu-container .sp-nav-menu .sp-child li a {
  width: 100%;
  font-size: 12px;
  color: #fff;
  padding: 16px;
}

header nav .global-navigation .sp-menu-wrapper .sp-menu-container .sp-nav-menu .sp-parent input:checked+.sp-child li {
  max-height: 52px;
}

header nav .global-navigation .sp-menu-wrapper .sp-menu-container .sp-nav-menu .sp-parent input:checked+.sp-child li:nth-child(1) {
  transition-delay: 0.1125s;
}

header nav .global-navigation .sp-menu-wrapper .sp-menu-container .sp-nav-menu .sp-parent input:checked+.sp-child li:nth-child(2) {
  transition-delay: 0.225s;
}

header nav .global-navigation .sp-menu-wrapper .sp-menu-container .sp-nav-menu .sp-parent input:checked+.sp-child li:nth-child(3) {
  transition-delay: 0.3375s;
}

header nav .sp-menu-wrapper.active {
  transform: translateX(0%);
}

main .top-hero-section {
  padding: 24px 16px 0;
}

@media screen and (min-width: 428px) {
  main .top-hero-section {
    padding: 56px 24px 0;
  }
}

@media screen and (min-width: 768px) {
  main .top-hero-section {
    padding: 40px 40px 0;
  }
}

main .top-hero-section .hero-container {
  max-width: 1000px;
  margin: 40px auto 0;
}

main .top-hero-section .hero-container h1 {
  font-size: 24px;
  font-weight: 700;
}

@media screen and (min-width: 428px) {
  main .top-hero-section .hero-container h1 {
    font-size: 32px;
  }
}

@media screen and (min-width: 768px) {
  main .top-hero-section .hero-container h1 {
    font-size: 40px;
  }
}

main .top-hero-section .hero-container p {
  font-size: 16px;
}

@media screen and (min-width: 428px) {
  main .top-hero-section .hero-container p {
    font-size: 20px;
  }
}

@media screen and (min-width: 768px) {
  main .top-hero-section .hero-container p {
    font-size: 24px;
  }
}

main .other-hero-section {
  padding: 40px 16px;
  position: relative;
  overflow: hidden;
  z-index: 0;
  background-color: #dde1ec;
}

@media screen and (min-width: 428px) {
  main .other-hero-section {
    padding: 40px 24px;
  }
}

@media screen and (min-width: 768px) {
  main .other-hero-section {
    padding: 40px;
  }
}

main .other-hero-section .blob {
  position: absolute;
  border-radius: 160px;
  width: 100%;
  height: 160px;
  z-index: -1;
  opacity: 0.5;
  filter: blur(10px);
}

main .other-hero-section .blob:nth-child(2) {
  left: 44%;
  top: -25%;
  background-color: #F5AFA9;
}

main .other-hero-section .blob:nth-child(3) {
  left: 54%;
  top: 25%;
  background-color: #88fcfe;
}

main .other-hero-section .blob:nth-child(4) {
  left: 66.66%;
  top: 50%;
  background-color: #3fc5a7;
}

main .other-hero-section .blob:nth-child(5) {
  left: 33.33%;
  top: 12.5%;
  background-color: #EFE3D5;
}

main .other-hero-section .hero-container {
  max-width: 1000px;
  margin: 0 auto;
}

main .other-hero-section .hero-container h1 {
  font-size: 24px;
  font-weight: 700;
}

@media screen and (min-width: 428px) {
  main .other-hero-section .hero-container h1 {
    font-size: 32px;
  }
}

@media screen and (min-width: 768px) {
  main .other-hero-section .hero-container h1 {
    font-size: 40px;
  }
}

main .works-section {
  padding: 0px 16px 80px;
}

@media screen and (min-width: 428px) {
  main .works-section {
    padding: 0px 24px 80px;
  }
}

@media screen and (min-width: 768px) {
  main .works-section {
    padding: 0px 40px 80px;
  }
}

main .works-section .works-container .works-grid-wrapper {
  padding: 16px 0;
}

@media screen and (min-width: 768px) {
  main .works-section .works-container .works-grid-wrapper {
    padding: 24px 0;
  }
}

main .works-section .works-container .works-grid-wrapper .works-grid-container {
  max-width: 1000px;
  height: auto;
  margin: auto;
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: 1fr;
  grid-template-rows: 0.75fr 1fr 0.5625fr 1.5fr 64px;
  gap: 16px;
}

@media screen and (min-width: 320px) {
  main .works-section .works-container .works-grid-wrapper .works-grid-container {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 0.75fr 0.75fr 0.25fr 0.3125fr;
    gap: 16px;
  }
}

@media screen and (min-width: 428px) {
  main .works-section .works-container .works-grid-wrapper .works-grid-container {
    gap: 24px;
  }
}

@media screen and (min-width: 768px) {
  main .works-section .works-container .works-grid-wrapper .works-grid-container {
    grid-template-columns: repeat(3, 4fr);
    grid-template-rows: 3fr 1fr 1.25fr;
    gap: 24px;
  }
}

main .works-section .works-container .works-grid-wrapper .works-grid-container a {
  text-decoration: none;
  position: relative;
  z-index: 0;
  display: flex;
  margin: 0;
  border-radius: 8px;
  z-index: 0;
  box-shadow: 0 4px 8px rgba(47, 58, 61, 0.12), 0 8px 16px rgba(47, 58, 61, 0.08), 0 16px 32px rgba(47, 58, 61, 0.06);
}

main .works-section .works-container .works-grid-wrapper .works-grid-container a:hover {
  opacity: 0.8;
}

@media screen and (min-width: 428px) {
  main .works-section .works-container .works-grid-wrapper .works-grid-container a {
    border-radius: 12px;
  }
}

@media screen and (min-width: 768px) {
  main .works-section .works-container .works-grid-wrapper .works-grid-container a {
    border-radius: 16px;
  }
}

main .works-section .works-container .works-grid-wrapper .works-grid-container a::after {
  z-index: 1;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-radius: inherit;
}

main .works-section .works-container .works-grid-wrapper .works-grid-container a img {
  z-index: 0;
  width: 100%;
  border-radius: inherit;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

main .works-section .works-container .works-grid-wrapper .works-grid-container a .works-detail {
  z-index: 2;
  position: absolute;
  top: 8px;
  left: 12px;
  line-height: 1.2;
}

@media screen and (min-width: 428px) {
  main .works-section .works-container .works-grid-wrapper .works-grid-container a .works-detail {
    top: 16px;
    left: 16px;
    line-height: 1.6;
  }
}

main .works-section .works-container .works-grid-wrapper .works-grid-container a .works-detail span {
  font-size: 12px;
  color: #fff;
}

@media screen and (min-width: 428px) {
  main .works-section .works-container .works-grid-wrapper .works-grid-container a .works-detail span {
    font-size: 14px;
  }
}

@media screen and (min-width: 768px) {
  main .works-section .works-container .works-grid-wrapper .works-grid-container a .works-detail span {
    font-size: 16px;
  }
}

main .works-section .works-container .works-grid-wrapper .works-grid-container a .works-detail p {
  font-size: 16px;
  color: #fff;
  font-weight: 700;
  margin-block-start: 0em;
  margin-block-end: 0em;
}

@media screen and (min-width: 428px) {
  main .works-section .works-container .works-grid-wrapper .works-grid-container a .works-detail p {
    font-size: 20px;
  }
}

@media screen and (min-width: 768px) {
  main .works-section .works-container .works-grid-wrapper .works-grid-container a .works-detail p {
    font-size: 24px;
  }
}

main .works-section .works-container .works-grid-wrapper .works-grid-container a:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}

@media screen and (min-width: 320px) {
  main .works-section .works-container .works-grid-wrapper .works-grid-container a:nth-child(1) {
    grid-column: 2;
    grid-row: 1;
  }
}

@media screen and (min-width: 768px) {
  main .works-section .works-container .works-grid-wrapper .works-grid-container a:nth-child(1) {
    grid-column: 1;
    grid-row: 1;
  }
}

main .works-section .works-container .works-grid-wrapper .works-grid-container a:nth-child(1)::after {
  background-image: linear-gradient(to right, #3fc5a7, transparent);
  opacity: 0.5;
}

main .works-section .works-container .works-grid-wrapper .works-grid-container a:nth-child(1) img {
  aspect-ratio: 4/3;
}

main .works-section .works-container .works-grid-wrapper .works-grid-container a:nth-child(2) {
  grid-column: 1;
  grid-row: 3;
}

@media screen and (min-width: 320px) {
  main .works-section .works-container .works-grid-wrapper .works-grid-container a:nth-child(2) {
    grid-column: 1;
    grid-row: 3/5;
  }
}

@media screen and (min-width: 768px) {
  main .works-section .works-container .works-grid-wrapper .works-grid-container a:nth-child(2) {
    grid-column: 1;
    grid-row: 2/4;
  }
}

main .works-section .works-container .works-grid-wrapper .works-grid-container a:nth-child(2)::after {
  background-image: linear-gradient(to right, #F5AFA9, transparent);
  opacity: 0.5;
}

main .works-section .works-container .works-grid-wrapper .works-grid-container a:nth-child(2) img {
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 16/9;
}

main .works-section .works-container .works-grid-wrapper .works-grid-container a:nth-child(3) {
  grid-column: 1;
  grid-row: 4;
}

@media screen and (min-width: 320px) {
  main .works-section .works-container .works-grid-wrapper .works-grid-container a:nth-child(3) {
    grid-column: 1;
    grid-row: 1/3;
  }
}

@media screen and (min-width: 768px) {
  main .works-section .works-container .works-grid-wrapper .works-grid-container a:nth-child(3) {
    grid-column: 2;
    grid-row: 1/4;
  }
}

main .works-section .works-container .works-grid-wrapper .works-grid-container a:nth-child(3)::after {
  background-image: linear-gradient(to right, #EFE3D5, transparent);
  opacity: 0.5;
}

main .works-section .works-container .works-grid-wrapper .works-grid-container a:nth-child(3) img {
  aspect-ratio: 4/5.25;
}

main .works-section .works-container .works-grid-wrapper .works-grid-container a:nth-child(4) {
  grid-column: 1;
  grid-row: 2;
  background-image: linear-gradient(to right, #88fcfe, transparent);
}

@media screen and (min-width: 320px) {
  main .works-section .works-container .works-grid-wrapper .works-grid-container a:nth-child(4) {
    grid-column: 2;
    grid-row: 2/4;
  }
}

@media screen and (min-width: 768px) {
  main .works-section .works-container .works-grid-wrapper .works-grid-container a:nth-child(4) {
    grid-column: 3;
    grid-row: 1/3;
  }
}

main .works-section .works-container .works-grid-wrapper .works-grid-container a:nth-child(4)::after {
  background-image: linear-gradient(to right, #88fcfe, transparent);
  opacity: 0.5;
}

main .works-section .works-container .works-grid-wrapper .works-grid-container a:nth-child(4) img {
  aspect-ratio: 1/1;
}

main .works-section .works-container .works-grid-wrapper .works-grid-container a:nth-child(5) {
  background-color: #2F3A3D;
  grid-column: 1;
  grid-row: 5;
}

@media screen and (min-width: 320px) {
  main .works-section .works-container .works-grid-wrapper .works-grid-container a:nth-child(5) {
    grid-column: 2;
    grid-row: 4;
  }
}

@media screen and (min-width: 768px) {
  main .works-section .works-container .works-grid-wrapper .works-grid-container a:nth-child(5) {
    grid-column: 3;
    grid-row: 3;
  }
}

main .works-section .works-container .works-grid-wrapper .works-grid-container a:nth-child(5) svg {
  z-index: 2;
  width: 24px;
  position: absolute;
  bottom: 4px;
  right: 8px;
}

@media screen and (min-width: 768px) {
  main .works-section .works-container .works-grid-wrapper .works-grid-container a:nth-child(5) svg {
    width: 32px;
  }
}

main .works-section .works-container .works-grid-wrapper .works-grid-container a:nth-child(5) svg path {
  fill: #fff;
}

main .product-section {
  display: flex;
  flex-direction: column;
}

main .product-section .product-wrapper:first-child {
  background-image: linear-gradient(135deg, #f0f2f8, #fff);
}

main .product-section .product-wrapper:last-child {
  background-color: #f0f2f8;
}

main .product-section .product-wrapper:first-child .detail-container2 {
  border-radius: 8px;
  background-color: #fff;
}

@media screen and (min-width: 428px) {
  main .product-section .product-wrapper:first-child .detail-container2 {
    border-radius: 12px;
  }
}

@media screen and (min-width: 768px) {
  main .product-section .product-wrapper:first-child .detail-container2 {
    border-radius: 16px;
  }
}

main .product-section .product-wrapper:first-child .detail-container2 .detail-image {
  box-shadow: 0 4px 8px rgba(47, 58, 61, 0.12), 0 8px 16px rgba(47, 58, 61, 0.08), 0 16px 32px rgba(47, 58, 61, 0.06);
}

main .product-section .product-wrapper:first-child .detail-container2 .detail-text {
  padding: 0px 24px 40px;
}

@media screen and (min-width: 960px) {
  main .product-section .product-wrapper:first-child .detail-container2 .detail-text {
    padding: 0px 40px;
  }
}

main .product-section .product-wrapper:last-child .detail-container2 {
  gap: 40x;
}

@media screen and (min-width: 768px) {
  main .product-section .product-wrapper:last-child .detail-container2 {
    gap: 24px;
  }
}

@media screen and (min-width: 960px) {
  main .product-section .product-wrapper:last-child .detail-container2 {
    gap: 80px;
  }
}

main .product-section .product-wrapper:last-child .detail-container2 .detail-image {
  box-shadow: 0 2px 4px rgba(47, 58, 61, 0.08), 0 4px 8px rgba(47, 58, 61, 0.06), 0 8px 16px rgba(47, 58, 61, 0.04);
}

main .product-section .product-wrapper:last-child .detail-container2 .detail-text {
  padding: 0 24px;
}

@media screen and (min-width: 428px) {
  main .product-section .product-wrapper:last-child .detail-container2 .detail-text {
    padding: 0 16px;
  }
}

@media screen and (min-width: 960px) {
  main .product-section .product-wrapper:last-child .detail-container2 .detail-text {
    padding: 0 16px 0 40px;
  }
}

main .product-section .product-wrapper:last-child .detail-container2 .detail-text p {
  padding-right: 1em;
}

@media screen and (min-width: 960px) {
  main .product-section .product-wrapper:last-child .detail-container2 .detail-text p {
    padding-right: 0;
  }
}

main .product-section .product-wrapper:first-child .product-container .detail-wrapper {
  gap: 40px;
}

@media screen and (min-width: 960px) {
  main .product-section .product-wrapper:first-child .product-container .detail-wrapper {
    gap: 80px;
  }
}

main .product-section .product-wrapper:last-child .product-container .detail-wrapper {
  gap: 40px;
}

@media screen and (min-width: 960px) {
  main .product-section .product-wrapper:last-child .product-container .detail-wrapper {
    gap: 80px;
  }
}

main .product-section .product-wrapper:first-child .product-container .detail-wrapper .detail-container2:nth-child(odd) .detail-image {
  grid-column: 2;
  grid-row: 1;
}

main .product-section .product-wrapper:first-child .product-container .detail-wrapper .detail-container2:nth-child(odd) .detail-text {
  grid-column: 1;
  grid-row: 1;
}

main .product-section .product-wrapper {
  padding: 40px 16px 80px;
}

@media screen and (min-width: 428px) {
  main .product-section .product-wrapper {
    padding: 40px 24px 80px;
  }
}

@media screen and (min-width: 768px) {
  main .product-section .product-wrapper {
    padding: 80px 40px 120px;
  }
}

main .product-section .product-wrapper .product-container {
  max-width: 1000px;
  margin: auto;
  display: flex;
  flex-direction: column;
}

main .product-section .product-wrapper .product-container h2 {
  font-size: 24px;
  color: #2F3A3D;
  font-weight: 700;
}

@media screen and (min-width: 428px) {
  main .product-section .product-wrapper .product-container h2 {
    font-size: 32px;
  }
}

@media screen and (min-width: 768px) {
  main .product-section .product-wrapper .product-container h2 {
    font-size: 40px;
  }
}

main .product-section .product-wrapper .product-container .detail-wrapper {
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 768px) {
  main .product-section .product-wrapper .product-container .detail-wrapper {
    flex-direction: row;
  }
}

@media screen and (min-width: 960px) {
  main .product-section .product-wrapper .product-container .detail-wrapper {
    flex-direction: column;
  }
}

main .product-section .product-wrapper .product-container .detail-wrapper .detail-container2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 8px;
  flex: 1 1 50%;
  gap: 24px;
}

@media screen and (min-width: 428px) {
  main .product-section .product-wrapper .product-container .detail-wrapper .detail-container2 {
    border-radius: 12px;
  }
}

@media screen and (min-width: 768px) {
  main .product-section .product-wrapper .product-container .detail-wrapper .detail-container2 {
    border-radius: 16px;
  }
}

@media screen and (min-width: 960px) {
  main .product-section .product-wrapper .product-container .detail-wrapper .detail-container2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
}

main .product-section .product-wrapper .product-container .detail-wrapper .detail-container2 .detail-image {
  display: flex;
  margin: 0;
  border-radius: 8px;
  background-color: #fff;
}

@media screen and (min-width: 428px) {
  main .product-section .product-wrapper .product-container .detail-wrapper .detail-container2 .detail-image {
    border-radius: 12px;
  }
}

@media screen and (min-width: 768px) {
  main .product-section .product-wrapper .product-container .detail-wrapper .detail-container2 .detail-image {
    border-radius: 16px;
  }
}

main .product-section .product-wrapper .product-container .detail-wrapper .detail-container2 .detail-image img {
  width: 100%;
  border-radius: inherit;
}

main .product-section .product-wrapper .product-container .detail-wrapper .detail-container2 .detail-text {
  flex: 1 1 100%;
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 768px) {
  main .product-section .product-wrapper .product-container .detail-wrapper .detail-container2 .detail-text {
    flex: 1 1 50%;
  }
}

main .product-section .product-wrapper .product-container .detail-wrapper .detail-container2 .detail-text h3 {
  font-size: 16px;
  font-weight: 700;
  color: #525E66;
  margin-block-start: 0em;
  margin-block-end: 0em;
}

@media screen and (min-width: 768px) {
  main .product-section .product-wrapper .product-container .detail-wrapper .detail-container2 .detail-text h3 {
    font-size: 20px;
  }
}

main .product-section .product-wrapper .product-container .detail-wrapper .detail-container2 .detail-text p {
  font-size: 12px;
  color: #525E66;
}

@media screen and (min-width: 768px) {
  main .product-section .product-wrapper .product-container .detail-wrapper .detail-container2 .detail-text p {
    font-size: 16px;
  }
}

main .product-section .product-wrapper .product-container .detail-wrapper .detail-container2 .detail-text .link-container {
  display: flex;
}

main .product-section .product-wrapper .product-container .detail-wrapper .detail-container2 .detail-text .link-container a {
  font-size: 14px;
  background-color: #FF8E7F;
  color: #fff;
  text-decoration: none;
  padding: 8px 24px;
  border-radius: 40px;
  letter-spacing: normal;
  margin-top: 8px;
}

@media screen and (min-width: 768px) {
  main .product-section .product-wrapper .product-container .detail-wrapper .detail-container2 .detail-text .link-container a {
    font-size: 16px;
  }
}

main .product-section .product-wrapper .product-container .detail-wrapper .detail-container2 .detail-text svg {
  width: 40px;
}

@media screen and (min-width: 768px) {
  main .product-section .product-wrapper .product-container .detail-wrapper .detail-container2 .detail-text svg {
    width: 40px;
  }
}

main .product-section .product-wrapper .product-container .detail-wrapper .detail-container2 .detail-text svg path {
  fill: #FF8E7F;
}

main .product-section .product-wrapper .product-container .detail-wrapper .detail-container3 {
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1 1 50%;
}

@media screen and (min-width: 960px) {
  main .product-section .product-wrapper .product-container .detail-wrapper .detail-container3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}

main .product-section .product-wrapper .product-container .detail-wrapper .detail-container3 .detail-image {
  grid-column: 3;
  grid-row: 1;
  border-radius: 8px;
  display: flex;
  margin: 0;
  box-shadow: 0 2px 4px rgba(47, 58, 61, 0.08), 0 4px 8px rgba(47, 58, 61, 0.06), 0 8px 16px rgba(47, 58, 61, 0.04);
}

@media screen and (min-width: 428px) {
  main .product-section .product-wrapper .product-container .detail-wrapper .detail-container3 .detail-image {
    border-radius: 12px;
  }
}

@media screen and (min-width: 768px) {
  main .product-section .product-wrapper .product-container .detail-wrapper .detail-container3 .detail-image {
    border-radius: 16px;
  }
}

main .product-section .product-wrapper .product-container .detail-wrapper .detail-container3 .detail-image img {
  width: 100%;
  border-radius: inherit;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

main .product-section .product-wrapper .product-container .detail-wrapper .detail-container3 .detail-text1 {
  grid-column: 1;
  grid-row: 1;
}

main .product-section .product-wrapper .product-container .detail-wrapper .detail-container3 .detail-text1 .detail-h3 h3 {
  font-size: 16px;
  font-weight: 700;
  color: #525E66;
  margin-block-start: 0em;
  margin-block-end: 0em;
  margin: 24px 24px 0;
}

@media screen and (min-width: 428px) {
  main .product-section .product-wrapper .product-container .detail-wrapper .detail-container3 .detail-text1 .detail-h3 h3 {
    margin: 24px 16px 0;
  }
}

@media screen and (min-width: 960px) {
  main .product-section .product-wrapper .product-container .detail-wrapper .detail-container3 .detail-text1 .detail-h3 h3 {
    margin: 0;
    font-size: 20px;
  }
}

main .product-section .product-wrapper .product-container .detail-wrapper .detail-container3 .detail-text2 {
  grid-column: 2;
  grid-row: 1;
  margin: 0 24px;
}

@media screen and (min-width: 428px) {
  main .product-section .product-wrapper .product-container .detail-wrapper .detail-container3 .detail-text2 {
    margin: 0 16px;
  }
}

@media screen and (min-width: 960px) {
  main .product-section .product-wrapper .product-container .detail-wrapper .detail-container3 .detail-text2 {
    margin: 0;
  }
}

main .product-section .product-wrapper .product-container .detail-wrapper .detail-container3 .detail-text2 .detail-dl dl {
  margin-block-start: 1em;
  margin-block-end: 1em;
  padding-right: 1em;
  position: relative;
  min-height: 58.24px;
}

@media screen and (min-width: 960px) {
  main .product-section .product-wrapper .product-container .detail-wrapper .detail-container3 .detail-text2 .detail-dl dl {
    margin-block-start: 0;
    margin-block-end: 0;
  }
}

main .product-section .product-wrapper .product-container .detail-wrapper .detail-container3 .detail-text2 .detail-dl dl dt {
  font-size: 12px;
  color: #525E66;
}

@media screen and (min-width: 768px) {
  main .product-section .product-wrapper .product-container .detail-wrapper .detail-container3 .detail-text2 .detail-dl dl dt {
    font-size: 16px;
  }
}

@media screen and (min-width: 960px) {
  main .product-section .product-wrapper .product-container .detail-wrapper .detail-container3 .detail-text2 .detail-dl dl dt {
    font-size: 14px;
  }
}

main .product-section .product-wrapper .product-container .detail-wrapper .detail-container3 .detail-text2 .detail-dl dl dd {
  font-size: 12px;
  color: #525E66;
  margin-inline-start: 0;
}

@media screen and (min-width: 768px) {
  main .product-section .product-wrapper .product-container .detail-wrapper .detail-container3 .detail-text2 .detail-dl dl dd {
    font-size: 16px;
  }
}

@media screen and (min-width: 960px) {
  main .product-section .product-wrapper .product-container .detail-wrapper .detail-container3 .detail-text2 .detail-dl dl dd {
    font-size: 14px;
  }
}

main .skill-section .skill-image-wrapper {
  padding: 40px 0 0;
  position: relative;
  z-index: 0;
  max-height: initial;
  height: auto;
}

@media screen and (min-width: 768px) {
  main .skill-section .skill-image-wrapper {
    padding: 80px 0 0;
  }
}

@media screen and (min-width: 1358px) {
  main .skill-section .skill-image-wrapper {
    max-height: 560px;
    height: 56.25vw;
    padding: 80px 0 0;
  }
}

main .skill-section .skill-image-wrapper::before {
  z-index: 1;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: url("../new-image/ore5.jpg") no-repeat center center/320%;
  filter: blur(1px);
}

@media screen and (min-width: 428px) {
  main .skill-section .skill-image-wrapper::before {
    background: url("../new-image/ore5.jpg") no-repeat center center/240%;
  }
}

@media screen and (min-width: 768px) {
  main .skill-section .skill-image-wrapper::before {
    background: url("../new-image/ore5.jpg") no-repeat center center/160%;
  }
}

@media screen and (min-width: 960px) {
  main .skill-section .skill-image-wrapper::before {
    background: url("../new-image/ore5.jpg") no-repeat center center/120%;
  }
}

main .skill-section .skill-image-wrapper::after {
  z-index: 1;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-image: linear-gradient(to bottom, #2F3A3D, rgba(47, 58, 61, 0.5), #2F3A3D);
  opacity: 0.8;
}

main .skill-section .skill-image-wrapper .skill-image-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

main .skill-section .skill-image-wrapper .skill-image-container .skill-detail {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 16px;
}

@media screen and (min-width: 428px) {
  main .skill-section .skill-image-wrapper .skill-image-container .skill-detail {
    padding: 0 24px;
  }
}

@media screen and (min-width: 768px) {
  main .skill-section .skill-image-wrapper .skill-image-container .skill-detail {
    padding: 0 40px;
  }
}

main .skill-section .skill-image-wrapper .skill-image-container .skill-detail h2 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  text-align: left;
}

@media screen and (min-width: 428px) {
  main .skill-section .skill-image-wrapper .skill-image-container .skill-detail h2 {
    font-size: 32px;
    text-align: center;
  }
}

@media screen and (min-width: 768px) {
  main .skill-section .skill-image-wrapper .skill-image-container .skill-detail h2 {
    font-size: 40px;
  }
}

main .skill-section .skill-image-wrapper .skill-image-container .skill-detail small {
  font-size: 12px;
  color: #fff;
  text-align: left;
}

@media screen and (min-width: 768px) {
  main .skill-section .skill-image-wrapper .skill-image-container .skill-detail small {
    font-size: 16px;
    text-align: center;
  }
}

main .skill-section .skill-image-wrapper .skill-image-container .skills-wrapper {
  width: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}

main .skill-section .skill-image-wrapper .skill-image-container .skills-wrapper .skills-container {
  width: 1358px;
  margin: auto;
  display: flex;
  justify-content: center;
  padding: 80px 0;
}

@media screen and (min-width: 768px) {
  main .skill-section .skill-image-wrapper .skill-image-container .skills-wrapper .skills-container {
    padding: 80px 0;
  }
}

main .skill-section .skill-image-wrapper .skill-image-container .skills-wrapper .html {
  border-left: 2px solid #fff;
}

main .skill-section .skill-image-wrapper .skill-image-container .skills-wrapper .html,
main .skill-section .skill-image-wrapper .skill-image-container .skills-wrapper .css,
main .skill-section .skill-image-wrapper .skill-image-container .skills-wrapper .js,
main .skill-section .skill-image-wrapper .skill-image-container .skills-wrapper .wordpress,
main .skill-section .skill-image-wrapper .skill-image-container .skills-wrapper .figma {
  border-right: 2px solid #fff;
}

main .skill-section .skill-image-wrapper .skill-image-container .skills-wrapper .js .skill-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

main .skill-section .skill-image-wrapper .skill-image-container .skills-wrapper .js svg {
  width: 118px;
}

main .skill-section .skill-image-wrapper .skill-image-container .skills-wrapper .skill-wrapper {
  scroll-snap-align: center;
  container-type: scroll-state;
  box-sizing: border-box;
}

main .skill-section .skill-image-wrapper .skill-image-container .skills-wrapper .skill-wrapper .skill-container {
  width: 144px;
  aspect-ratio: 1/1;
  transition: scale 0.3s;
  scale: 0.8;
  margin: 40px;
}

main .skill-section .skill-image-wrapper .skill-image-container .skills-wrapper .skill-wrapper {
  /* スナップされた時に発火 */
}

@container scroll-state(snapped) {
  main .skill-section .skill-image-wrapper .skill-image-container .skills-wrapper .skill-wrapper .skill-container {
    scale: 1;
  }
}

main .breadcrumb-section {
  padding: 0 16px;
  background-color: #fff;
}

@media screen and (min-width: 428px) {
  main .breadcrumb-section {
    padding: 0 24px;
  }
}

@media screen and (min-width: 768px) {
  main .breadcrumb-section {
    padding: 0 40px;
  }
}

main .breadcrumb-section .breadcrumb {
  max-width: 1000px;
  margin: auto;
  height: 40px;
  display: flex;
  justify-content: left;
  align-items: center;
}

main .breadcrumb-section .breadcrumb ul {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-inline-start: 0;
}

main .breadcrumb-section .breadcrumb ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #2F3A3D;
}

main .breadcrumb-section .breadcrumb ul li a:not(:first-child) {
  text-decoration: none;
}

main .breadcrumb-section .breadcrumb ul li a {
  font-size: 12px;
  display: flex;
  align-items: center;
  color: #2F3A3D;
}

main .breadcrumb-section .breadcrumb ul li a svg {
  width: 16px;
  height: 16px;
}

@media screen and (min-width: 768px) {
  main .breadcrumb-section .breadcrumb ul li a svg path {
    fill: #2F3A3D;
  }
}

main .breadcrumb-section .breadcrumb ul li span {
  font-size: 12px;
  color: #B0B7BD;
}

main .achieves-section {
  background-color: #f0f2f8;
  padding: 24px 16px;
}

@media screen and (min-width: 428px) {
  main .achieves-section {
    padding: 24px;
  }
}

@media screen and (min-width: 960px) {
  main .achieves-section {
    padding: 40px;
  }
}

main .achieves-section .achieves-wrapper {
  max-width: 1000px;
  margin: 0px auto 80px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media screen and (min-width: 960px) {
  main .achieves-section .achieves-wrapper {
    flex-direction: row;
    gap: 40px;
  }
}

main .achieves-section .achieves-wrapper .sticky-wrapper {
  z-index: 999;
  position: sticky;
  top: 92px;
  flex: 1 1 auto;
}

@media screen and (min-width: 428px) {
  main .achieves-section .achieves-wrapper .sticky-wrapper {
    top: 104px;
  }
}

@media screen and (min-width: 960px) {
  main .achieves-section .achieves-wrapper .sticky-wrapper {
    flex: 1 1 200px;
  }
}

main .achieves-section .achieves-wrapper .sticky-wrapper .sticky-container {
  position: sticky;
  top: 120px;
}

main .achieves-section .achieves-wrapper .sticky-wrapper .sticky-container .table-content .index-list {
  list-style-type: none;
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-block-start: 0em;
  margin-block-end: 0em;
  padding-inline-start: 0px;
}

@media screen and (min-width: 960px) {
  main .achieves-section .achieves-wrapper .sticky-wrapper .sticky-container .table-content .index-list {
    flex-direction: column;
    gap: 24px;
  }
}

main .achieves-section .achieves-wrapper .sticky-wrapper .sticky-container .table-content .index-list .active {
  box-shadow: 0 4px 8px rgba(47, 58, 61, 0.12), 0 8px 16px rgba(47, 58, 61, 0.08), 0 16px 32px rgba(47, 58, 61, 0.06);
  background-color: #fff;
}

main .achieves-section .achieves-wrapper .sticky-wrapper .sticky-container .table-content .index-list li {
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  border-radius: 8px;
}

@media screen and (min-width: 428px) {
  main .achieves-section .achieves-wrapper .sticky-wrapper .sticky-container .table-content .index-list li {
    border-radius: 12px;
  }
}

@media screen and (min-width: 960px) {
  main .achieves-section .achieves-wrapper .sticky-wrapper .sticky-container .table-content .index-list li {
    border-radius: 16px;
  }
}

@media (hover: hover) and (pointer: fine) {
  main .achieves-section .achieves-wrapper .sticky-wrapper .sticky-container .table-content .index-list li:hover {
    opacity: 0.8;
  }
}

main .achieves-section .achieves-wrapper .sticky-wrapper .sticky-container .table-content .index-list li a {
  padding: 4px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  text-align: center;
  border-radius: inherit;
}

@media screen and (min-width: 960px) {
  main .achieves-section .achieves-wrapper .sticky-wrapper .sticky-container .table-content .index-list li a {
    padding: 16px;
  }
}

main .achieves-section .achieves-wrapper .sticky-wrapper .sticky-container .table-content .index-list li a svg {
  width: 56px;
  display: none;
}

@media screen and (min-width: 960px) {
  main .achieves-section .achieves-wrapper .sticky-wrapper .sticky-container .table-content .index-list li a svg {
    display: block;
  }
}

main .achieves-section .achieves-wrapper .sticky-wrapper .sticky-container .table-content .index-list li a svg path {
  fill: #8F9CA4;
}

main .achieves-section .achieves-wrapper .sticky-wrapper .sticky-container .table-content .index-list li a h2 {
  font-size: 12px;
  color: #8F9CA4;
  font-weight: 700;
}

main .achieves-section .achieves-wrapper .sticky-wrapper .sticky-container .contents-list {
  margin-block-start: 0em;
  margin-block-end: 0em;
  padding-top: 24px;
  padding-bottom: 24px;
  padding-right: 16px;
  width: 200px;
  display: none;
  flex-direction: column;
  gap: 8px;
  background-color: #fff;
  border-radius: 16px;
  list-style-type: none;
}

@media screen and (min-width: 960px) {
  main .achieves-section .achieves-wrapper .sticky-wrapper .sticky-container .contents-list {
    display: flex;
  }
}

main .achieves-section .achieves-wrapper .sticky-wrapper .sticky-container .contents-list li::marker {
  display: none;
}

main .achieves-section .achieves-wrapper .sticky-wrapper .sticky-container .contents-list li a {
  font-size: 16px;
  color: #B0B7BD;
  text-decoration: none;
}

main .achieves-section .achieves-wrapper .sticky-wrapper .sticky-container .contents-list li .box-active {
  color: #525E66;
  font-weight: 700;
  position: relative;
}

main .achieves-section .achieves-wrapper .sticky-wrapper .sticky-container .contents-list li .box-active::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -24px;
  transform: translate(0, -50%);
  border-left: 8px solid #FF8E7F;
  height: 24px;
}

@media screen and (min-width: 768px) {
  main .achieves-section .achieves-wrapper .sticky-wrapper .sticky-container .contents-list li .box-active::before {
    left: -40px;
  }
}

main .achieves-section .achieves-wrapper .achieves-container1 {
  flex: 1 1 calc(100% - 200px);
  padding: 40px 16px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  background-color: #fff;
  border-radius: 8px;
}

@media screen and (min-width: 428px) {
  main .achieves-section .achieves-wrapper .achieves-container1 {
    padding: 40px 24px;
    border-radius: 12px;
  }
}

@media screen and (min-width: 768px) {
  main .achieves-section .achieves-wrapper .achieves-container1 {
    padding: 40px;
    border-radius: 16px;
  }
}

main .achieves-section .achieves-wrapper .achieves-container1 .ach .achieve-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

main .achieves-section .achieves-wrapper .achieves-container1 .ach .achieve-wrapper h2 {
  font-size: 24px;
  color: #2F3A3D;
  font-weight: 700;
}

@media screen and (min-width: 428px) {
  main .achieves-section .achieves-wrapper .achieves-container1 .ach .achieve-wrapper h2 {
    font-size: 32px;
  }
}

@media screen and (min-width: 768px) {
  main .achieves-section .achieves-wrapper .achieves-container1 .ach .achieve-wrapper h2 {
    font-size: 40px;
  }
}

main .achieves-section .achieves-wrapper .achieves-container1 .ach .achieve-wrapper .achieve-container {
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 768px) {
  main .achieves-section .achieves-wrapper .achieves-container1 .ach .achieve-wrapper .achieve-container {
    flex-direction: row;
    align-items: flex-start;
  }
}

main .achieves-section .achieves-wrapper .achieves-container1 .ach .achieve-wrapper .achieve-container .achieve-image {
  flex: 1 1 auto;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin: 0;
  background-color: #fff;
  box-shadow: 0 1px 2px rgba(47, 58, 61, 0.05), 0 2px 4px rgba(47, 58, 61, 0.05), 0 4px 8px rgba(47, 58, 61, 0.03);
}

@media screen and (min-width: 768px) {
  main .achieves-section .achieves-wrapper .achieves-container1 .ach .achieve-wrapper .achieve-container .achieve-image {
    flex: 1 1 280px;
  }
}

main .achieves-section .achieves-wrapper .achieves-container1 .ach .achieve-wrapper .achieve-container .achieve-image img,
main .achieves-section .achieves-wrapper .achieves-container1 .ach .achieve-wrapper .achieve-container .achieve-image video {
  width: 100%;
  height: auto;
  border-radius: inherit;
}

main .achieves-section .achieves-wrapper .achieves-container1 .ach .achieve-wrapper .achieve-container .achieve-image video {
  background-color: #2F3A3D;
}

main .achieves-section .achieves-wrapper .achieves-container1 .ach .achieve-wrapper .achieve-container .achieve-detail {
  flex: 1 1 auto;
  padding: 0 24px 40px;
}

@media screen and (min-width: 768px) {
  main .achieves-section .achieves-wrapper .achieves-container1 .ach .achieve-wrapper .achieve-container .achieve-detail {
    flex: 1 1 calc(100% - 280px);
    padding: 0 24px 24px 40px;
  }
}

main .achieves-section .achieves-wrapper .achieves-container1 .ach .achieve-wrapper .achieve-container .achieve-detail .detail-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

main .achieves-section .achieves-wrapper .achieves-container1 .ach .achieve-wrapper .achieve-container .achieve-detail .detail-wrapper .detail-container h3 {
  font-size: 16px;
  font-weight: 700;
  position: relative;
  color: #525E66;
}

main .achieves-section .achieves-wrapper .achieves-container1 .ach .achieve-wrapper .achieve-container .achieve-detail .detail-wrapper .detail-container h3::before {
  content: "";
  position: absolute;
  top: 0;
  left: -24px;
  transform: translate(0, 0);
  border-left: 8px solid #FF8E7F;
  height: 24px;
}

@media screen and (min-width: 768px) {
  main .achieves-section .achieves-wrapper .achieves-container1 .ach .achieve-wrapper .achieve-container .achieve-detail .detail-wrapper .detail-container h3::before {
    left: -40px;
  }
}

main .achieves-section .achieves-wrapper .achieves-container1 .ach .achieve-wrapper .achieve-container .achieve-detail .detail-wrapper .detail-container p {
  font-size: 12px;
}

main .achieves-section .achieves-wrapper .achieves-container1 .ach .achieve-wrapper .achieve-container .achieve-detail .detail-wrapper .link-time-container {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
}

main .achieves-section .achieves-wrapper .achieves-container1 .ach .achieve-wrapper .achieve-container .achieve-detail .detail-wrapper time {
  font-size: 14px;
  color: #FF8E7F;
  font-weight: 700;
}

@media screen and (min-width: 428px) {
  main .achieves-section .achieves-wrapper .achieves-container1 .ach .achieve-wrapper .achieve-container .achieve-detail .detail-wrapper time {
    font-size: 16px;
  }
}

main .achieves-section .achieves-wrapper .achieves-container1 .ach .achieve-wrapper .achieve-container .achieve-detail .detail-wrapper .link-container a {
  font-size: 14px;
  background-color: #FF8E7F;
  color: #fff;
  text-decoration: none;
  padding: 6px 22px;
  border-radius: 30px;
  letter-spacing: normal;
}

main .achieves-section .achieves-wrapper .achieves-container2 {
  flex: 1 1 calc(100% - 200px);
  display: flex;
  flex-direction: column;
  gap: 40px;
}

main .achieves-section .achieves-wrapper .achieves-container2 .ach {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

main .achieves-section .achieves-wrapper .achieves-container2 .ach .box-active {
  box-shadow: 0 4px 8px rgba(47, 58, 61, 0.12), 0 8px 16px rgba(47, 58, 61, 0.08), 0 16px 32px rgba(47, 58, 61, 0.06);
}

main .achieves-section .achieves-wrapper .achieves-container2 .ach .achieve-container {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 8px;
}

@media screen and (min-width: 428px) {
  main .achieves-section .achieves-wrapper .achieves-container2 .ach .achieve-container {
    border-radius: 12px;
  }
}

@media screen and (min-width: 768px) {
  main .achieves-section .achieves-wrapper .achieves-container2 .ach .achieve-container {
    flex-direction: row;
    border-radius: 16px;
  }
}

main .achieves-section .achieves-wrapper .achieves-container2 .ach .achieve-container .achieve-image {
  flex: 1 1 auto;
  display: flex;
  margin: 0;
  border-radius: 8px 8px 0 0;
}

@media screen and (min-width: 428px) {
  main .achieves-section .achieves-wrapper .achieves-container2 .ach .achieve-container .achieve-image {
    border-radius: 12px 12px 0 0;
  }
}

@media screen and (min-width: 768px) {
  main .achieves-section .achieves-wrapper .achieves-container2 .ach .achieve-container .achieve-image {
    flex: 1 1 280px;
    border-radius: 16px 0 0 16px;
  }
}

main .achieves-section .achieves-wrapper .achieves-container2 .ach .achieve-container .achieve-image img,
main .achieves-section .achieves-wrapper .achieves-container2 .ach .achieve-container .achieve-image video {
  width: 100%;
  border-radius: inherit;
  height: auto;
  -o-object-fit: initial;
  object-fit: initial;
  -o-object-position: center top;
  object-position: center top;
}

@media screen and (min-width: 768px) {

  main .achieves-section .achieves-wrapper .achieves-container2 .ach .achieve-container .achieve-image img,
  main .achieves-section .achieves-wrapper .achieves-container2 .ach .achieve-container .achieve-image video {
    -o-object-fit: contain;
    object-fit: contain;
  }
}

main .achieves-section .achieves-wrapper .achieves-container2 .ach .achieve-container .achieve-image img {
  background-color: #fff;
}

main .achieves-section .achieves-wrapper .achieves-container2 .ach .achieve-container .achieve-image video {
  background-color: #2F3A3D;
}

main .achieves-section .achieves-wrapper .achieves-container2 .ach .achieve-container .achieve-image .png {
  background-color: transparent;
}

main .achieves-section .achieves-wrapper .achieves-container2 .ach .achieve-container .achieve-detail {
  flex: 1 1 auto;
  padding: 0 24px 40px;
}

@media screen and (min-width: 768px) {
  main .achieves-section .achieves-wrapper .achieves-container2 .ach .achieve-container .achieve-detail {
    flex: 1 1 calc(100% - 280px);
    padding: 0 24px 24px 40px;
  }
}

main .achieves-section .achieves-wrapper .achieves-container2 .ach .achieve-container .achieve-detail .detail-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

main .achieves-section .achieves-wrapper .achieves-container2 .ach .achieve-container .achieve-detail .detail-wrapper .detail-container h3 {
  font-size: 16px;
  font-weight: 700;
  position: relative;
  color: #525E66;
}

main .achieves-section .achieves-wrapper .achieves-container2 .ach .achieve-container .achieve-detail .detail-wrapper .detail-container h3::before {
  content: "";
  position: absolute;
  top: 0;
  left: -24px;
  transform: translate(0, 0);
  border-left: 8px solid #FF8E7F;
  height: 24px;
}

@media screen and (min-width: 768px) {
  main .achieves-section .achieves-wrapper .achieves-container2 .ach .achieve-container .achieve-detail .detail-wrapper .detail-container h3::before {
    left: -40px;
  }
}

main .achieves-section .achieves-wrapper .achieves-container2 .ach .achieve-container .achieve-detail .detail-wrapper .detail-container p {
  font-size: 12px;
}

main .achieves-section .achieves-wrapper .achieves-container2 .ach .achieve-container .achieve-detail .detail-wrapper .link-time-container {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
}

main .achieves-section .achieves-wrapper .achieves-container2 .ach .achieve-container .achieve-detail .detail-wrapper time {
  font-size: 14px;
  color: #FF8E7F;
  font-weight: 700;
}

@media screen and (min-width: 428px) {
  main .achieves-section .achieves-wrapper .achieves-container2 .ach .achieve-container .achieve-detail .detail-wrapper time {
    font-size: 16px;
  }
}

main .achieves-section .achieves-wrapper .achieves-container2 .ach .achieve-container .achieve-detail .detail-wrapper .link-container a {
  font-size: 14px;
  background-color: #FF8E7F;
  color: #fff;
  text-decoration: none;
  padding: 6px 22px;
  border-radius: 30px;
  letter-spacing: normal;
}

main .achieves-section .achieves-wrapper .histories-wrapper {
  flex: 1 1 calc(100% - 200px);
  display: flex;
  flex-direction: column;
  gap: 40px;
  background-color: #fff;
  border-radius: 8px;
}

@media screen and (min-width: 428px) {
  main .achieves-section .achieves-wrapper .histories-wrapper {
    border-radius: 12px;
  }
}

@media screen and (min-width: 768px) {
  main .achieves-section .achieves-wrapper .histories-wrapper {
    border-radius: 16px;
  }
}

main .achieves-section .achieves-wrapper .histories-wrapper .histories-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 0px auto 24px;
  padding: 24px;
}

@media screen and (min-width: 768px) {
  main .achieves-section .achieves-wrapper .histories-wrapper .histories-container {
    align-items: normal;
    padding: 40px;
  }
}

@media screen and (min-width: 960px) {
  main .achieves-section .achieves-wrapper .histories-wrapper .histories-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

main .achieves-section .achieves-wrapper .histories-wrapper .histories-container #title {
  text-align: center;
  font-size: 24px;
}

main .achieves-section .achieves-wrapper .histories-wrapper .histories-container #link {
  display: flex;
  justify-content: center;
}

main .achieves-section .achieves-wrapper .histories-wrapper .histories-container #link a {
  font-size: 16px;
}

main .achieves-section .achieves-wrapper .histories-wrapper .histories-container .product-container {
  display: flex;
  justify-content: center;
}

main .achieves-section .achieves-wrapper .histories-wrapper .histories-container .product-container #pc-image {
  display: flex;
  margin: 0;
  box-shadow: 0 2px 4px rgba(47, 58, 61, 0.08), 0 4px 8px rgba(47, 58, 61, 0.06), 0 8px 16px rgba(47, 58, 61, 0.04);
}

main .achieves-section .achieves-wrapper .histories-wrapper .histories-container .product-container #pc-image img {
  width: 100%;
}

main .achieves-section .achieves-wrapper .histories-wrapper .histories-container .product-container #sp-image {
  display: flex;
  margin: 0;
  box-shadow: 0 2px 4px rgba(47, 58, 61, 0.08), 0 4px 8px rgba(47, 58, 61, 0.06), 0 8px 16px rgba(47, 58, 61, 0.04);
}

main .achieves-section .achieves-wrapper .histories-wrapper .histories-container .product-container #sp-image img {
  width: 100%;
}

main .achieves-section .achieves-wrapper .histories-wrapper .histories-container .history-detail .background-detail h3 {
  color: #525E66;
}

main .achieves-section .achieves-wrapper .histories-wrapper .histories-container .history-detail .background-detail ul {
  margin-block-start: 1em;
  margin-block-end: 1em;
  list-style-type: disc;
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-size: 16px;
  background-color: #f0f2f8;
  border-radius: 8px;
}

main .achieves-section .achieves-wrapper .histories-wrapper .histories-container .history-detail .background-detail p {
  text-align: right;
  font-size: 16px;
}

main .achieves-section .achieves-wrapper .histories-wrapper .histories-container .history-detail .breadcrumb {
  z-index: 1000;
  padding: 0;
  display: flex;
  justify-content: left;
  align-items: center;
}

main .achieves-section .achieves-wrapper .histories-wrapper .histories-container .history-detail .breadcrumb ul {
  width: 100%;
  display: flex;
  flex-direction: row !important;
  align-items: center;
  gap: 12px;
  padding: 24px !important;
}

main .achieves-section .achieves-wrapper .histories-wrapper .histories-container .history-detail .breadcrumb ul li {
  display: flex;
  align-items: center;
  gap: 12px;
}

main .achieves-section .achieves-wrapper .histories-wrapper .histories-container .history-detail .breadcrumb ul li a {
  font-size: 12px;
  display: flex;
  align-items: center;
}

main .achieves-section .achieves-wrapper .histories-wrapper .histories-container .history-detail .breadcrumb ul li a svg {
  width: 16px;
  height: 16px;
}

main .achieves-section .achieves-wrapper .histories-wrapper .histories-container .history-detail .breadcrumb ul li span {
  font-size: 12px;
}

main .achieves-section .achieves-wrapper .histories-wrapper .histories-container .history-detail h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 32px;
}

@media screen and (min-width: 428px) {
  main .achieves-section .achieves-wrapper .histories-wrapper .histories-container .history-detail h2 {
    font-size: 24px;
  }
}

main .achieves-section .achieves-wrapper .histories-wrapper .histories-container .history-detail h2 {
  position: relative;
}

main .achieves-section .achieves-wrapper .histories-wrapper .histories-container .history-detail h2::before {
  position: absolute;
  content: "";
  bottom: -12px;
  left: 0;
  transform: translate(0, 0);
  width: 100%;
  height: 2px;
  background-color: #dde1ec;
}

main .achieves-section .achieves-wrapper .histories-wrapper .histories-container .history-detail h2 span {
  display: inline-block;
  position: relative;
}

main .achieves-section .achieves-wrapper .histories-wrapper .histories-container .history-detail h2 span::before {
  position: absolute;
  content: "";
  bottom: -12px;
  left: 0;
  transform: translate(0, 0);
  width: 100%;
  height: 2px;
  background-color: #FF8E7F;
}

main .achieves-section .achieves-wrapper .histories-wrapper .histories-container .history-detail h3 {
  font-size: 16px;
  font-weight: 700;
  color: #2F3A3D;
  margin: 24px 0 16px;
}

@media screen and (min-width: 428px) {
  main .achieves-section .achieves-wrapper .histories-wrapper .histories-container .history-detail h3 {
    font-size: 20px;
  }
}

main .achieves-section .achieves-wrapper .histories-wrapper .histories-container .history-detail p {
  font-size: 16px;
  color: #525E66;
}

main .achieves-section .achieves-wrapper .histories-wrapper .histories-container .history-detail p img {
  width: 100%;
  max-width: 240px;
  background-color: #2F3A3D;
}

main .achieves-section .achieves-wrapper .histories-wrapper .histories-container .history-detail svg {
  width: 40px;
  height: 40px;
}

main .achieves-section .achieves-wrapper .histories-wrapper .histories-container .history-detail ul {
  padding-inline-start: 24px;
  list-style-type: disc;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 24px 24px 32px;
  background-color: #f0f2f8;
  border-radius: 8px;
}

@media screen and (min-width: 428px) {
  main .achieves-section .achieves-wrapper .histories-wrapper .histories-container .history-detail ul {
    padding: 24px 24px 24px 40px;
  }
}

main .achieves-section .achieves-wrapper .histories-wrapper .histories-container .history-detail dl dt {
  font-size: 16px;
}

@media screen and (min-width: 428px) {
  main .achieves-section .achieves-wrapper .histories-wrapper .histories-container .history-detail dl dt {
    font-size: 20px;
  }
}

main .achieves-section .achieves-wrapper .histories-wrapper .histories-container .history-detail dl dd {
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  font-size: 12px;
}

@media screen and (min-width: 428px) {
  main .achieves-section .achieves-wrapper .histories-wrapper .histories-container .history-detail dl dd {
    font-size: 14px;
  }
}

main .achieves-section .achieves-wrapper .histories-wrapper .histories-container .history-detail .category-list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: initial;
  margin-block-start: 0em;
  margin-block-end: 0em;
  padding-inline-start: 0px;
  margin: 0;
  padding: 0;
  list-style-type: none;
  background-color: transparent;
}

main .achieves-section .achieves-wrapper .histories-wrapper .histories-container .history-detail .category-list li {
  display: flex;
  background-color: #f0f2f8;
  border-radius: 4px;
}

main .achieves-section .achieves-wrapper .histories-wrapper .histories-container .history-detail .category-list li span {
  padding: 4px 8px;
  font-size: 12px;
}

main .achieves-section .achieves-wrapper .histories-wrapper .histories-container .history-detail .black-box {
  font-family: Consolas, "Liberation Mono", Menlo, Courier, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", "BIZ UDGothic", "Meiryo", monospace;
  color: cyan;
  padding: 16px 24px;
  border-radius: 8px;
  font-size: 12px;
  background-color: #2F3A3D;
  margin: 16px 0;
}

@media screen and (min-width: 428px) {
  main .achieves-section .achieves-wrapper .histories-wrapper .histories-container .history-detail .black-box {
    font-size: 14px;
  }
}

main .achieves-section .achieves-wrapper .histories-wrapper .histories-container .history-detail .black-box span {
  display: inline-block;
  white-space: normal;
}

main .achieves-section .achieves-wrapper .histories-wrapper .histories-container .history-detail .black-box .shell {
  color: violet;
}

main .achieves-section .achieves-wrapper .histories-wrapper .histories-container .history-detail .black-box .property {
  color: papayawhip;
  margin-inline-start: 40px;
}

main .achieves-section .achieves-wrapper .histories-wrapper .histories-container .history-detail .black-box .parameter {
  color: lightskyblue;
}

main .achieves-section .achieves-wrapper .histories-wrapper .histories-container .history-detail .black-box .value {
  color: papayawhip;
}

main .achieves-section .achieves-wrapper .histories-wrapper .histories-container .history-detail .black-box .white {
  color: #fff;
}

main .achieves-section .achieves-wrapper .histories-wrapper .histories-container .history-detail .black-box .instance {
  color: yellowgreen;
}

main .achieves-section .achieves-wrapper .histories-wrapper .histories-container small {
  font-size: 12px;
  color: #717D85;
}

main .achieves-section .achieves-wrapper .histories-wrapper .histories-container .skills-wrapper {
  max-width: 240px;
}

@media screen and (min-width: 768px) {
  main .achieves-section .achieves-wrapper .histories-wrapper .histories-container .skills-wrapper {
    max-width: 320px;
  }
}

@media screen and (min-width: 768px) {
  main .achieves-section .achieves-wrapper .histories-wrapper .histories-container .skills-wrapper {
    max-width: 540px;
  }
}

main .achieves-section .achieves-wrapper .histories-wrapper .histories-container .skills-wrapper {
  margin: auto;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}

main .achieves-section .achieves-wrapper .histories-wrapper .histories-container .skills-wrapper .skills-container {
  display: flex;
  gap: 24px;
}

main .achieves-section .achieves-wrapper .histories-wrapper .histories-container .skills-wrapper {
  /* スナップ位置の基準にする要素 */
}

main .achieves-section .achieves-wrapper .histories-wrapper .histories-container .skills-wrapper .skill-wrapper {
  scroll-snap-align: center;
  /* scroll-state はスクロール対象の子要素に付ける */
  container-type: scroll-state;
}

main .achieves-section .achieves-wrapper .histories-wrapper .histories-container .skills-wrapper .skill-wrapper .skill-container {
  width: 240px;
  aspect-ratio: 1/1;
  transition: scale 0.3s;
  scale: 0.8;
}

main .achieves-section .achieves-wrapper .histories-wrapper .histories-container .skills-wrapper .skill-wrapper .js {
  display: flex;
  align-items: center;
  justify-content: center;
}

main .achieves-section .achieves-wrapper .histories-wrapper .histories-container .skills-wrapper .skill-wrapper .js svg {
  width: 160px;
}

main .achieves-section .achieves-wrapper .histories-wrapper .histories-container .skills-wrapper .skill-wrapper {
  /* スナップされた時に発火 */
}

@container scroll-state(snapped) {
  main .achieves-section .achieves-wrapper .histories-wrapper .histories-container .skills-wrapper .skill-wrapper .skill-container {
    scale: 1;
  }
}

footer {
  background-color: #2F3A3D;
  padding: 40px 16px 0;
}

@media screen and (min-width: 428px) {
  footer {
    padding: 40px 24px 0;
  }
}

@media screen and (min-width: 768px) {
  footer {
    padding: 40px 40px 0;
  }
}

footer .top-footer-section {
  padding-top: 40px;
}

footer .top-footer-section .footer-nav {
  max-width: 1000px;
  margin: 0 auto 80px;
}

@media screen and (min-width: 768px) {
  footer .top-footer-section .footer-nav {
    margin: 0 auto 80px;
  }
}

footer .other-footer-section {
  padding-top: 0px;
}

footer .other-footer-section .footer-nav {
  max-width: 1000px;
  margin: 0 auto 40px;
}

footer section .footer-nav {
  padding-top: 40px;
}

footer section .footer-nav .footer-nav-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

footer section .footer-nav .footer-nav-container a {
  display: flex;
  justify-content: left;
  margin: 0;
}

@media screen and (min-width: 428px) {
  footer section .footer-nav .footer-nav-container a {
    justify-content: center;
  }
}

footer section .footer-nav .footer-nav-container a img {
  width: 144px;
}

@media screen and (min-width: 428px) {
  footer section .footer-nav .footer-nav-container a img {
    width: 160px;
  }
}

footer section .footer-nav .footer-nav-container nav {
  display: flex;
  justify-content: left;
}

@media screen and (min-width: 428px) {
  footer section .footer-nav .footer-nav-container nav {
    justify-content: center;
  }
}

footer section .footer-nav .footer-nav-container nav ul {
  display: flex;
  flex-direction: row;
  list-style: none;
  padding-inline-start: 0;
  gap: 24px;
}

@media screen and (min-width: 768px) {
  footer section .footer-nav .footer-nav-container nav ul {
    gap: 40px;
  }
}

footer section .footer-nav .footer-nav-container nav ul li {
  width: auto;
}

@media screen and (min-width: 428px) {
  footer section .footer-nav .footer-nav-container nav ul li {
    width: 120px;
  }
}

footer section .footer-nav .footer-nav-container nav ul li a {
  display: flex;
  justify-content: left;
  font-size: 14px;
  color: #fff;
}

@media screen and (min-width: 428px) {
  footer section .footer-nav .footer-nav-container nav ul li a {
    justify-content: center;
    font-size: 16px;
  }
}

footer section .footer-about {
  max-width: 1000px;
  margin: 0 auto;
}

@media screen and (min-width: 428px) {
  footer section .footer-about {
    margin: 0 auto 80px;
  }
}

@media screen and (min-width: 768px) {
  footer section .footer-about {
    margin: 0 auto 120px;
  }
}

footer section .footer-about .about-detail-wrapper .about-detail-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media screen and (min-width: 768px) {
  footer section .footer-about .about-detail-wrapper .about-detail-container {
    flex-direction: row;
    gap: 80px;
  }
}

footer section .footer-about .about-detail-wrapper .about-detail-container .about-detail-info {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

footer section .footer-about .about-detail-wrapper .about-detail-container .about-detail-info .about-image-name {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 24px;
}

@media screen and (min-width: 428px) {
  footer section .footer-about .about-detail-wrapper .about-detail-container .about-detail-info .about-image-name {
    align-items: center;
  }
}

footer section .footer-about .about-detail-wrapper .about-detail-container .about-detail-info .about-image-name .about-image img {
  width: 120px;
  border-radius: 100%;
}

footer section .footer-about .about-detail-wrapper .about-detail-container .about-detail-info .about-image-name span {
  font-size: 24px;
  color: #fff;
}

footer section .footer-about .about-detail-wrapper .about-detail-container .about-detail-info .about-detail-social {
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 24px;
  display: none;
}

@media screen and (min-width: 428px) {
  footer section .footer-about .about-detail-wrapper .about-detail-container .about-detail-info .about-detail-social {
    justify-content: center;
  }
}

footer section .footer-about .about-detail-wrapper .about-detail-container .about-detail-info .about-detail-social svg path {
  fill: #fff;
}

footer section .footer-about .about-detail-wrapper .about-detail-container .about-detail-info .about-detail-social #insta {
  width: 44px;
}

footer section .footer-about .about-detail-wrapper .about-detail-container .about-detail-info .about-detail-social #fb {
  width: 40px;
}

footer section .footer-about .about-detail-wrapper .about-detail-container .about-detail-info .about-detail-social #x {
  width: 40px;
}

footer section .footer-about .about-detail-wrapper .about-detail-container .accordion-container .accordion-item {
  background-color: #2F3A3D;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

footer section .footer-about .about-detail-wrapper .about-detail-container .accordion-container .accordion-item .accordion-link {
  color: #dde1ec;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 16px 0;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

footer section .footer-about .about-detail-wrapper .about-detail-container .accordion-container .accordion-item .accordion-link h3 {
  font-weight: 200;
  font-size: 16px;
  margin-block-start: 0em;
  margin-block-end: 0em;
}

@media screen and (min-width: 428px) {
  footer section .footer-about .about-detail-wrapper .about-detail-container .accordion-container .accordion-item .accordion-link h3 {
    font-size: 20px;
  }
}

footer section .footer-about .about-detail-wrapper .about-detail-container .accordion-container .accordion-item .accordion-link div {
  display: flex;
  align-items: baseline;
  gap: 24px;
}

footer section .footer-about .about-detail-wrapper .about-detail-container .accordion-container .accordion-item .accordion-link ul {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  list-style-type: none;
  margin-block-start: 0em;
  margin-block-end: 0em;
  padding-inline-start: 0px;
}

footer section .footer-about .about-detail-wrapper .about-detail-container .accordion-container .accordion-item .accordion-link ul li {
  font-size: 8px;
  color: #B0B7BD;
  padding: 0 0 0 4px;
}

@media screen and (min-width: 428px) {
  footer section .footer-about .about-detail-wrapper .about-detail-container .accordion-container .accordion-item .accordion-link ul li {
    font-size: 10px;
  }
}

footer section .footer-about .about-detail-wrapper .about-detail-container .accordion-container .accordion-item .accordion-link .ion-md-arrow-forward {
  flex-shrink: 0;
  width: 12px;
}

footer section .footer-about .about-detail-wrapper .about-detail-container .accordion-container .accordion-item .accordion-link .ion-md-arrow-forward path {
  fill: #fff;
}

footer section .footer-about .about-detail-wrapper .about-detail-container .accordion-container .accordion-item .answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 640ms;
}

footer section .footer-about .about-detail-wrapper .about-detail-container .accordion-container .accordion-item .answer p {
  color: #fff;
  font-size: 12px;
  padding: 16px 24px;
  margin-block-start: 0em;
  margin-block-end: 0em;
}

@media screen and (min-width: 428px) {
  footer section .footer-about .about-detail-wrapper .about-detail-container .accordion-container .accordion-item .answer p {
    font-size: 14px;
  }
}

footer section .footer-about .about-detail-wrapper .about-detail-container .accordion-container .accordion-item .answer p a {
  color: #FF8E7F;
}

footer section .footer-about .about-detail-wrapper .about-detail-container .accordion-container .accordion-item:target .answer {
  max-height: 220px;
}

footer section .footer-about .about-detail-wrapper .about-detail-container .accordion-container .accordion-item:target .ion-md-arrow-forward {
  transform: rotate(90deg);
}

footer section .site-map-wrapper {
  max-width: 1000px;
  margin: auto;
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  flex-direction: column-reverse;
  gap: 80px;
}

@media screen and (min-width: 428px) {
  footer section .site-map-wrapper {
    flex-direction: row-reverse;
    gap: 0;
  }
}

footer section .site-map-wrapper .about-detail-social {
  display: flex;
  align-items: center;
  gap: 24px;
}

@media screen and (min-width: 428px) {
  footer section .site-map-wrapper .about-detail-social {
    justify-content: center;
  }
}

footer section .site-map-wrapper .about-detail-social svg path {
  fill: #fff;
}

footer section .site-map-wrapper .about-detail-social #insta {
  width: 44px;
}

footer section .site-map-wrapper .about-detail-social #fb {
  width: 40px;
}

footer section .site-map-wrapper .about-detail-social #x {
  width: 40px;
}

footer section .site-map-wrapper .site-map-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

footer section .site-map-wrapper .site-map-container a {
  font-size: 12px;
  color: #fff;
  border-radius: 100%;
}

@media screen and (min-width: 428px) {
  footer section .site-map-wrapper .site-map-container a {
    font-size: 16px;
  }
}

footer section .site-map-wrapper .site-map-container a svg {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  background-color: #fff;
}

footer section .site-map-wrapper .site-map-container a svg:hover {
  opacity: 0.8;
}

footer section .footer-small {
  display: flex;
  justify-content: left;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}

@media screen and (min-width: 428px) {
  footer section .footer-small {
    justify-content: center;
  }
}

footer section .footer-small small {
  font-size: 12px;
  color: #fff;
}

@media screen and (min-width: 428px) {
  footer section .footer-small small {
    font-size: 16px;
  }
}