@charset "UTF-8"; /* ===== 全体リセット ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  height: 100%;
  scroll-behavior: auto;
  overflow: hidden;
  background-image: url("../image/noise_white.png");
  background-repeat: repeat !important;
}
body.active {
  overflow-y: auto;
  scroll-behavior: auto;
}
h2,
header,
footer {
  font-family: "Yuji Boku", serif;
}
em,
span {
  font-family: "Righteous", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.hero-title .line1,
.hero-title .line2,
.thanks-section h2,
.works-inner h2,
#intro h2,
.hero-title,
.section h2,
.contact-form h2 {
  font-family: "Yomogi", cursive;
  font-weight: 400;
}
.site-header {
  position: fixed;
  top: 20px;
  left: 30px;
  z-index: 1000;
}
.header-nav {
  position: relative;
  z-index: 2000;
}
.site-header a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #333;
  transition: color 0.3s ease;
}
.site-header a span {
  font-size: 16px;
  padding-left: 20px;
}
.site-header a:hover {
  color: #666;
}
.header-lists {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 50px;
  position: fixed;
  top: 0;
  left: -390px;
  width: 390px;
  height: 100vh;
  list-style: none;
  background-image: url(../image/29488202_m.jpg);
  transition: left 0.8s ease;
  box-shadow: 4px 0 10px rgba(0, 0, 0, 0.4);
  z-index: 1000;
}
.header-lists.active {
  left: 0;
}
.header-lists li {
  display: inline-block;
  padding-left: 75px;
  font-size: 2.2rem;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.header-lists.active li {
  opacity: 1;
  transform: translateY(0);
}
.header-lists.active li:nth-child(1) {
  transition-delay: 0.05s;
}
.header-lists.active li:nth-child(2) {
  transition-delay: 0.1s;
}
.header-lists.active li:nth-child(3) {
  transition-delay: 0.2s;
}
.header-lists.active li:nth-child(4) {
  transition-delay: 0.3s;
}
.header-lists.active li:nth-child(5) {
  transition-delay: 0.4s;
}
.header-lists.active li:nth-child(6) {
  transition-delay: 0.5s;
}
.btn-trigger {
  position: fixed;
  top: 50%;
  left: 30px;
  width: 40px;
  height: 30px;
  cursor: pointer;
  transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 10000;
}
.btn-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #000;
  border-radius: 4px;
  transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}
.btn-trigger span:nth-of-type(1) {
  top: 0;
}
.btn-trigger span:nth-of-type(2) {
  top: 13px;
}
.btn-trigger span:nth-of-type(3) {
  bottom: 0;
}
#btn.active {
  transform: rotate(360deg);
}
#btn.active span:nth-of-type(1) {
  transform: translateY(13px) rotate(-45deg);
}
#btn.active span:nth-of-type(2) {
  transform: rotate(45deg);
}
#btn.active span:nth-of-type(3) {
  opacity: 0;
}
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1500;
}
.nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
body.no-scroll {
  overflow: hidden;
}
#opening {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #87cefa;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9000;
  overflow: hidden;
  opacity: 1;
  transition: opacity 1s ease;
}
#opening.fade-out {
  opacity: 0;
  pointer-events: none;
}
#truck-img {
  position: absolute;
  bottom: -16px;
  width: 200px;
  transform: translateX(100vw);
  will-change: transform;
}
#loading-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  font-weight: bold;
  color: #333;
}
@keyframes truck-run {
  from {
    transform: translateX(-1200px);
  }
  to {
    transform: translateX(100vw);
  }
}
#truck-img.running {
  animation: truck-run 3s linear forwards;
}
#running-line {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100vw;
  height: 6px;
  background-color: #333;
  border-radius: 2px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
  transform-origin: left center;
  transform: scaleX(0);
}
.scroll-container {
  position: relative;
  width: 100%;
  height: 100dvh;
  display: block;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  scroll-snap-type: y mandatory;
}
.scroll-container::-webkit-scrollbar {
  display: none;
}
.hero-section {
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-inline: clamp(16px, 4vw, 40px);
}
.hero-left {
  flex: 1;
}
.hero-title {
  font-size: 2.5rem;
  line-height: 1.5;
  letter-spacing: 2px;
  opacity: 1;
  transform: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.hero-title .line1 {
  font-size: 3.5rem;
  font-weight: bold;
  display: block;
}
.hero-title .line2 {
  font-size: 2.5rem;
  display: block;
}

.hero-title b {
  font-size: 4rem;
}
.hero-sub {
  margin-top: 15px;
  color: #666;
}
.hero-button {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 24px;
  background: #333;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}
.hero-button:hover {
  background: #555;
}
.hero-right {
  width: 50%;
  max-width: 450px;
  overflow: hidden;
}
.hero-slider {
  display: flex;
  overflow: hidden;
  border-radius: 12px;
  transition: transform 0.8s ease;
}
.hero-slide {
  /* transition: transform 0.6s ease; */
  flex-shrink: 0;
}
.hero-slide img {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  display: block;
  border-radius: 12px;
  backface-visibility: hidden;
}
.hero-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 15px;
}
.hero-dots span {
  width: 10px;
  height: 10px;
  background: #333;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0.5;
  transition: 0.3s;
}
.hero-dots span.active {
  opacity: 1;
  background: #555;
}
.scroll-down {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.scroll-down .line {
  width: 1px;
  height: 40px;
  background: #333;
  animation: scrollLine 1.6s infinite;
  opacity: 0.8;
}
@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    opacity: 0;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
  100% {
    transform: scaleY(0);
    opacity: 0;
  }
}
/* ================================ 1→2ページ目の視線誘導ライン ================================ */
.section {
  margin: 0 auto;
  width: 100%;
  scroll-snap-align: start;
  display: block;
  /* padding: 0 10px; */
  transition: background-color 0.1s;
  height: 100dvh;
}
.thanks-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.works-section {
  padding-top: 20px;
}
.works-inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 40px;
  position: relative;
}
.works-inner h2 {
  font-size: 2.8rem;
  text-align: left;
  margin-bottom: 10px;
  position: relative;
}
.works-inner h2::after {
  content: "";
  position: absolute;
  left: 0%;
  transform: translateX(0%);
  bottom: 0;
  width: 360px;
  height: 2px;
  background: #333;
  opacity: 0.4;
  border-radius: 2px;
}
.works-inner p {
  text-align: center;
  margin-top: 15px;
  font-size: 1.7em;
  line-height: 1.8;
  color: #333;
}
.works-body {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 50px;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}
.works-block {
  flex: 1;
  text-align: center;
}
.works-block h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}
.slide {
  min-width: 100%;
  box-sizing: border-box;
  text-align: center;
}
.slide img {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  border-radius: 8px;
  display: block;
}
.slider-container {
  position: relative;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  overflow: hidden;
}
.slider-wrapper {
  display: flex;
  transition: transform 0.6s ease;
}
.slider-nav button,
.slider-nav .prev,
.slider-nav .next {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background: none !important;
}
.slider-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  width: 100%;
  line-height: 1;
}
.slider-nav button {
  font-size: 1.8rem;
  cursor: pointer;
  color: #333;
  padding: 0;
  background: none;
  border: none;
}
.dots-container {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
}
.dot {
  width: 10px;
  height: 10px;
  background: #333;
  border-radius: 50%;
  opacity: 0.5;
  cursor: pointer;
}
.dot.active {
  opacity: 1;
  background: #555;
}
/* ------------------------------------------ タイトル ------------------------------------------ */
#intro.section {
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
.intro-inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  padding-inline: clamp(16px, 4vw, 40px);
}
.profile-wrap {
  margin-top: 10px;
  gap: 5px;
}
#intro h2 {
  font-size: 2.8rem;
  position: relative;
}
#intro h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 223px;
  height: 2px;
  background: #333;
  opacity: 0.4;
}
.profile-block {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-bottom: 15px;
}
.profile-block.is-left {
  flex-direction: row;
}
.profile-block.is-right {
  flex-direction: row-reverse;
}
.profile-image {
  width: 45%;
  flex-shrink: 0;
}
.profile-image img {
  max-width: 450px;
  border-radius: 10px;
  filter: grayscale(100%);
  object-fit: cover;
}
.profile-text {
  max-width: 55%;
}
.profile-text p {
  background-image: url(../image/noise_white.png);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  padding: 15px;
  border-radius: 10px;
  font-size: 18px;
  color: #333;
  line-height: 1.75;
  letter-spacing: 1.7px;
  margin: 0;
}
.profile-text p {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.profile-text p.show {
  opacity: 1;
  transform: translateY(0);
}
/* ========================================== スキルブロック ========================================== */
#skill.section {
  padding-top: 80px;
  padding-bottom: 80px;
  text-align: left;
  box-sizing: border-box;
}
#skill.section h2 {
  font-size: 2.8em;
  margin-bottom: 40px;
  position: relative;
}
/* #skill.section h2::after {
  content: "";
  position: absolute;
  left: 0%;
  transform: translateX(0%);
  bottom: 0;
  width: 220px;
  height: 2px;
  background: #333;
  opacity: 0.4;
  border-radius: 2px;
} */
.skill-inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-inline: clamp(16px, 4vw, 40px);
}
.skill-icon-container {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  margin-top: 50px;
}
.skill-item {
  width: 200px;
  padding: 20px 10px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.skill-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}
.skill-icon {
  width: 140px;
  height: auto;
  margin-bottom: 10px;
}
.skill-item p {
  margin-top: 5px;
  font-size: 1.1rem;
}
#contact {
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  padding-inline: clamp(16px, 4vw, 40px);
}
.contact-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  max-width: 550px;
}
.contact-content h2 {
  font-size: 2.8em;
  position: relative;
}
.contact-form {
  display: block;
}
.contact-inner figure img {
  height: auto;
}
.contact-content h2::after {
  content: "";
  position: absolute;
  left: 0%;
  transform: translateX(0%);
  bottom: 0;
  width: 267px;
  height: 2px;
  background: #333;
  opacity: 0.4;
  border-radius: 2px;
}
.form-group {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 400px;
  gap: 10px;
  box-sizing: border-box;
  align-items: stretch;
}
.form-group label {
  font-size: 1.2em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  resize: none;
}
.contact-form button {
  align-self: flex-start;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  background: #333;
  color: #fff;
  cursor: pointer;
  transition: background 0.4s ease;
}
.contact-form button:hover {
  background: #555;
}
.required {
  color: red;
  font-weight: 500;
}
.thanks-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding-inline: clamp(16px, 4vw, 40px);
}
.thanks-section h2 {
  font-size: 2.8em;
  margin-bottom: 40px;
  position: relative;
}
/* .thanks-section h2::after {
  content: "";
  position: absolute;
  left: 0%;
  transform: translateX(0%);
  bottom: 0;
  width: 367px;
  height: 2px;
  background: #333;
  opacity: 0.4;
  border-radius: 4px;
} */
.thanks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  max-width: 750px;
  margin-inline: auto;
  gap: 48px 64px;
}
.thanks-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.thanks-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.thanks-item a {
  display: inline-flex;
  max-width: 200px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.thanks-item a:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.thanks-credit {
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}
.thanks-name {
  font-weight: bold;
}
.thanks-credit::before {
  content: "";
  display: block;
  height: 4px;
}
.thanks-role {
  opacity: 0.7;
  margin-left: 8px;
}
.thanks-name::after {
  content: " | ";
  opacity: 0.4;
}
.thanks-message {
  margin-top: 60px;
  line-height: 1.9;
  opacity: 0.85;
}
.stalker {
  pointer-events: none;
  position: fixed;
  width: 30px;
  height: 30px;
  background-color: rgba(255, 182, 193, 0.5);
  border-radius: 50%;
  transition: transform 0.3s;
  transform: translate(0, 0);
  z-index: 1500;
  display: flex;
  align-items: center;
  justify-content: center;
}
.stalker span {
  opacity: 0;
  font-size: 12px;
  color: #fce4ec;
  transition: 0.2s;
}
.stalker.hover span {
  opacity: 1;
}
.stalker.hover {
  width: 40px;
  height: 40px;
  background-color: transparent;
  border: 1px solid #ffbfd4;
}
.stalker.click {
  transform: scale(0.8);
  background-color: #fce4ec;
}
.footer-container {
  scroll-snap-align: start;
  background: transparent !important;
}
.site-footer {
  max-width: 1100px;
  margin: 0 auto;
  text-align: right;
  padding: 20px 10px;
  font-size: 0.9em;
  transition: opacity 0.5s ease;
}
.sns-links {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  margin-bottom: 10px;
}
.sns-icon {
  width: 28px;
  height: 28px;
  transition: transform 0.3s ease;
}
.sns-icon:hover {
  transform: scale(1.2);
}
.site-footer p {
  font-size: 0.9rem;
  color: #333;
}
#fade-overlay {
  position: fixed;
  inset: 0;
  background: #fff;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.6s ease;
  z-index: 8000;
}
#fade-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.grecaptcha-badge {
  display: none;
}
@media (max-width: 599px) {
  html,
  body {
    font-size: 13px;
  }
  #intro h2,
  #skill.section h2,
  .works-inner h2,
  .contact-content h2,
  .thanks-section h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 10px;
    padding-left: 5px;
  }
  .scroll-container {
    scroll-snap-type: none;
    height: auto;
    min-height: 100vh;
    overflow-y: visible;
  }
  #running-line {
    width: 100%;
    margin-bottom: 100px;
  }
  #truck-img {
    bottom: 84px;
  }
  .header-lists {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    gap: 60px;
    flex-direction: column;
    background-image: url(../image/29488202_m.jpg);
    box-shadow: 8px 0 24px rgba(0, 0, 0, 0.18);
    transform: translateX(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.6s ease, opacity 0.6s ease !important;
    z-index: 2000;
  }
  .header-lists li {
    display: inline-block;
    padding-left: 10px;
    font-size: 2.8rem;
  }
  .header-lists.active {
    transform: translateX(0) !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }
  .header-lists.closing {
    transform: translateX(-100%) !important;
    opacity: 0 !important;
    pointer-events: none !important;
  }
  .nav-overlay {
    opacity: 0;
    transition: opacity 0.28s ease;
  }
  .nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
  }
  .nav-overlay.closing {
    opacity: 0;
    pointer-events: none;
  }
  .btn-trigger {
    position: relative;
    left: -5px;
    top: 10px;
  }
  .hero-section {
    padding: 0 20px;
    height: auto;
    padding-top: 60px;
  }
  .hero-inner {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }
  .hero-left {
    width: 100%;
  }
  .hero-title {
    font-size: 2rem;
  }
  .hero-title b {
    font-size: 2.6rem;
  }
  .hero-sub {
    margin-top: 10px;
    font-size: 0.9rem;
  }
  .hero-right {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .hero-slide img {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    border-radius: 12px;
  }
  .hero-dots {
    margin-top: 10px;
  }
  .slide img {
    width: 100%;
    max-width: 150px;
  }
  #intro.section,
  .contact-section {
    padding: 0;
  }
  #intro.section {
    height: auto;
    min-height: 100svh;
    overflow: visible;
  }
  .profile-wrap {
    gap: 32px;
  }
  .profile-block {
    display: flex;
    flex-direction: column !important;
    align-items: center;
    gap: 12px;
  }
  .profile-image {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .profile-image img {
    width: 100%;
    max-width: 320px;
    height: auto;
    padding-top: 10px;
  }
  .profile-text {
    width: 100%;
  }
  .profile-text p {
    font-size: 13px;
    line-height: 1.7;
    padding: 12px;
  }
  #intro.section h2 {
    text-align: center;
  }
  /* #intro.section h2::after {
    left: 50%;
    transform: translateX(-49%);
    width: 115px;
  } */
  .section {
    padding: 30px 15px;
    scroll-snap-align: none;
    scroll-snap-stop: normal;
  }
  .works-section {
    padding-top: 40px;
  }
  .works-inner p {
    font-size: 1rem;
    line-height: 1.7;
    padding: 0 10px;
  }
  /* .works-inner h2::after {
    content: "";
    position: absolute;
    left: 25%;
    transform: translateX(0%);
    bottom: 0;
    width: 185px;
    height: 2px;
    background: #333;
    opacity: 0.4;
    border-radius: 2px;
  } */
  .works-body {
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
  }
  .works-block {
    width: 100%;
  }
  .slider-container {
    max-width: 220px;
  }
  .slide img {
    max-width: 240px;
  }
  .slider-nav {
    gap: 8px;
    width: 100%;
  }
  .slider-nav button {
    font-size: 1.6rem;
  }
  .dots-container {
    gap: 8px;
    margin: 0;
    align-items: center;
  }
  .dot {
    width: 8px;
    height: 8px;
  }
  /* #skill.section h2::after {
    content: "";
    position: absolute;
    left: 34%;
    transform: translateX(0%);
    bottom: 0;
    width: 115px;
    height: 2px;
    background: #333;
    opacity: 0.4;
    border-radius: 2px;
  } */
  .skill-icon-container {
    gap: 20px;
  }
  .skill-icon {
    width: 50px;
  }
  /* .contact-content h2::after {
    content: "";
    position: absolute;
    left: 33%;
    transform: translateX(-3%);
    bottom: 0;
    width: 138px;
    height: 2px;
    background: #333;
    opacity: 0.4;
    border-radius: 2px;
  } */
  .contact-section {
    height: 100svh;
    overflow-y: auto;
    padding: 20px 10px;
    box-sizing: border-box;
  }
  .contact-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }
  .contact-form {
    width: 100%;
  }
  .form-group {
    max-width: 100%;
    padding-top: 40px;
  }
  .form-group label,
  .form-group select,
  .form-group textarea {
    width: 100%;
  }
  .form-group input,
  .form-group textarea,
  .form-group select {
    width: 100%;
    box-sizing: border-box;
  }
  button[type="submit"] {
    width: 100%;
    padding: 12px 0;
    font-size: 16px;
  }
  .contact-inner figure {
    margin: 0;
  }
  .contact-inner figure img {
    width: 200px;
    height: auto;
    display: block;
    margin: 0 auto;
  }
  /* .thanks-section h2::after {
    content: "";
    position: absolute;
    transform: translateX(44%);
    bottom: 0;
    width: 193px;
    height: 2px;
    background: #333;
    opacity: 0.4;
    border-radius: 2px;
  } */
  .thanks-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .thanks-item img {
    width: 160px;
  }
  .stalker {
    display: none;
  }
}
@media (min-width: 600px) and (max-width: 1023px) {
  html,
  body {
    font-size: 15px;
  }
  .works-header h2 {
    font-size: 2rem;
  }
  .works-header p {
    font-size: 1.05rem;
  }
  .works-body {
    gap: 30px;
    margin-top: 40px;
  }
  .slider-container {
    max-width: 280px;
  }
  .slide img {
    max-width: 220px;
  }
  .slider-nav {
    gap: 10px;
  }
  .dots-container {
    gap: 8px;
  }
  .profile-text-left,
  .profile-text-right {
    width: 100%;
    margin: 0 auto;
  }
  .profile-text-left p,
  .profile-text-right p {
    font-size: 18px;
    line-height: 1.6;
    max-width: 100%;
  }
  .skill-icon-container {
    gap: 50px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .skill-icon {
    width: 100px;
  }
}
