@charset "UTF-8";
html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  font-family: Verdana, Geneva, Tahoma, sans-serif, "Yu Mincho", "MS Mincho", serif;
  color: #3f3f3f;
  background: #f3f3f3;
  margin: 0;
  padding: 0;
  overflow-wrap: break-word;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: #ffffff;
}

h2 {
  font-size: clamp(1.6rem, 2vw, 2rem);
  font-weight: bold;
  line-height: 1.4;
}

h3 {
  font-size: clamp(1.2rem, 1.5vw, 1.3rem);
  font-weight: bold;
  line-height: 1.4;
  margin: 0;
  opacity: 0.9;
}

p {
  font-size: clamp(1.1rem, 1.4vw, 1.2rem);
  color: #3f3f3f;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.header {
  width: 100%;
}
.header .header-area {
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: 0.5s;
}
.header .header-area.scroll-nav {
  padding: 10px 10%;
  background: rgba(233, 233, 233, 0.9176470588);
  box-shadow: 0 0.5rem 1rem rgba(243, 243, 243, 0.1);
}
.header .header-area .shine {
  flex-shrink: 0;
}
.header .header-area .shine span.mask {
  position: relative;
  display: block;
  line-height: 0;
  overflow: hidden;
}
.header .header-area .shine span.mask::before {
  content: "";
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 100%);
  transform: skewX(-25deg);
  pointer-events: none;
}
.header .header-area .shine span.mask:hover::before {
  -webkit-animation: shine 1s;
          animation: shine 1s;
}
@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
.header .header-area .logo-img {
  width: 120px;
}
.header .header-area .main-menu-area {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  min-width: 0;
}
.header .header-area .main-menu {
  display: flex;
  flex-wrap: nowrap;
  white-space: nowrap;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
}
.header .header-area .main-menu li {
  flex-shrink: 0;
}
.header .header-area .main-menu li .menu-text {
  position: relative;
  color: #3f3f3f;
  font-weight: bold;
  text-decoration: none;
  transition: 0.5s;
}
.header .header-area .main-menu li .menu-text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 0;
  height: 3px;
  background-color: #e42c31;
  transition: width 0.5s ease;
}
.header .header-area .main-menu li .menu-text:hover::after {
  width: 100%;
}

.blur {
  -webkit-animation: blurAnime 1s forwards;
          animation: blurAnime 1s forwards;
}

.kv {
  height: 95vh;
  text-align: center;
  position: relative;
  background: linear-gradient(-135deg, #ad0a0a, #e42c31);
}
.kv #particles-js {
  height: 95vh;
}
.kv .kv-text {
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform: translate(-50%, 50%);
  margin: 0 20px;
}
.kv .kv-text .kv-title {
  color: #ffffff;
}
.kv .kv-text .kv-title span {
  display: inline-block;
  min-width: 320px;
  color: #ffffff;
  animation: blur 10s ease-out infinite;
  -webkit-animation: blur 10s ease-out infinite;
  font-size: 2.5rem;
}
.kv .kv-text .kv-title span:nth-child(1) {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}
.kv .kv-text .kv-title span:nth-child(2) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.kv .kv-text .kv-title span:nth-child(3) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.kv .kv-text .kv-title span:nth-child(4) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
.kv .kv-text .kv-subtitle {
  color: #e42c31;
  font-size: clamp(2rem, 0.8vw, 3rem);
  text-shadow: -1px -1px 1px #f3f3f3, 1px 1px #ffffff;
  opacity: 0.2;
}
.kv .scrolldown2 {
  position: absolute;
  bottom: 24px;
  left: 50%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.kv .scrolldown2 span {
  position: absolute;
  left: 10px;
  bottom: -4px;
  color: #eee;
  font-size: 0.8rem;
  line-height: 1.2;
  writing-mode: vertical-rl;
  text-orientation: upright;
  white-space: nowrap;
}
.kv .scrolldown2::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #eee;
  -webkit-animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
          animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
}
.kv .scrolldown2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2px;
  height: 80px;
  background: #eee;
}

@-webkit-keyframes circlemove {
  0% {
    bottom: 75px;
  }
  100% {
    bottom: -5px;
  }
}

@keyframes circlemove {
  0% {
    bottom: 75px;
  }
  100% {
    bottom: -5px;
  }
}
@-webkit-keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
/*-------------------------------------------------------------*/
.container .section {
  max-width: 1200px;
}
.container .section-title-area {
  margin-top: 100px;
  text-align: center;
}
.container .section-title-area h3 {
  margin-top: 10px;
  text-align: center;
}
.container .section-copy-wrap {
  margin-top: 80px;
  width: 50%;
  display: block;
}
.container .section-copy {
  margin-top: 80px;
  text-align: center;
  line-height: 3;
}
.container .section-copy span {
  color: #e42c31;
  font-weight: bold;
}
.container .about {
  display: flex;
  margin-top: 100px;
  gap: 40px;
}
.container .about .about-pic-area {
  width: 50%;
}
.container .about .about-pic-area .about-copy {
  margin-top: 60px;
  line-height: 2;
}
.container .about img {
  width: 100%;
  overflow: hidden;
  height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s;
  border-radius: 10px;
}
.container .about img:hover {
  transform: scale(1.05);
}
.container .about-content2,
.container .about-content3 {
  margin-top: 100px;
}
.container .about-content2 .about-detail,
.container .about-content3 .about-detail {
  display: grid;
  grid-template-columns: 48% 48%;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}
.container .about-content2 .about-detail img,
.container .about-content3 .about-detail img {
  width: 100%;
  display: block;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  grid-row: 1/3;
  transition: 0.5s;
}
.container .about-content2 .about-detail img:hover,
.container .about-content3 .about-detail img:hover {
  transform: scale(1.05);
}
.container .about-content2 .about-detail h3,
.container .about-content3 .about-detail h3 {
  font-size: 1.5rem;
}
.container .about-content2 .about-detail .about-content-text,
.container .about-content3 .about-detail .about-content-text {
  line-height: 2;
}
.container .about-content3 .about-detail img {
  grid-column: 2;
}
.container .about-content3 .about-detail h3,
.container .about-content3 .about-detail .about-content-text {
  grid-column: 1;
}
.container .contact-button {
  margin-top: 100px;
  display: flex;
  justify-content: center;
}
.container .contact-button .btn,
.container .contact-button a.btn,
.container .contact-button button.btn {
  position: relative;
  display: inline-block;
  padding: 1rem;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: 0.3s;
  text-align: center;
  text-decoration: none;
  border-radius: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.container .contact-button a.btn-custom01 {
  margin-bottom: 0.5rem;
  padding: 0;
  border-radius: 0.75rem;
}
.container .contact-button a.btn-custom01::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translate3d(0, 0.75rem, -1rem);
  border: 0.1px solid #3f3f3f;
  border-radius: inherit;
  background: #e42c31;
  box-shadow: 0 0.3rem 0 rgba(243, 243, 243, 0.2);
  transition: 0.3s;
}
.container .contact-button a.btn-custom01::after {
  content: "\f0e0";
  font-family: "Font Awesome 5 Free";
  font-size: 2rem;
  position: absolute;
  top: calc(50% - 1rem);
  left: 1.5rem;
  color: #ffffff;
}
.container .contact-button a.btn-custom01:hover {
  transform: translateY(0.25rem);
}
.container .contact-button a.btn-custom01:hover::before {
  transform: translate3d(0, 0.5rem, -1rem);
}
.container .contact-button a.btn-custom01:hover::after {
  content: "\f2b6";
}
.container .contact-button a.btn-custom01:active {
  transform: translateY(0.75rem);
}
.container .contact-button a.btn-custom01:active::before {
  transform: translate3d(0, 0, -1rem);
}
.container .contact-button a.btn-custom01 .btn-custom01-front {
  position: relative;
  display: block;
  padding: 1.5rem 5rem;
  border: 0.1px solid #3f3f3f;
  border-radius: inherit;
  background: #e42c31;
  color: #ffffff;
}
.container .line-contact {
  margin-top: 100px;
  text-align: center;
}
.container .line-qr {
  width: 180px;
  max-width: 100%;
  margin: 16px auto;
}
.container .fa-position-right {
  position: absolute;
  right: 1rem;
  top: calc(50% - 0.5em);
  color: #ffffff;
}
.container .snsbtniti2 {
  display: flex;
  justify-content: center;
  margin-top: 100px;
}
.container .snsbtniti2 li {
  flex: 0 0 16%;
  margin-bottom: 10px;
  text-align: center;
}
.container .flowbtn11 {
  width: 160px;
  display: inline-block;
  position: relative;
  color: #ffffff !important;
  line-height: 40px;
}
.container .flowbtn11 span {
  display: inline-block;
  transition: 0.6s;
}
.container .flowbtn11:hover span {
  transform: rotateX(360deg);
}
.container .fl_pf11 {
  background: #555;
}
.container .fl_ma1 {
  background: #f3981d;
}
.container .fl_fb1 {
  background: #3b5998;
}
.container .fl_li1 {
  background: #00c300;
}
.container .fl_tw1 {
  background: #55acee;
}
.container .insta_btn11 {
  background: linear-gradient(135deg, #833ab4 0%, #c13584 35%, #e1306c 60%, #fd1d1d 80%, #f77737 100%);
  overflow: hidden;
}
.container .insta_btn11 .fa-instagram {
  position: relative;
  z-index: 1;
}
.container .insta_btn11::before {
  content: "";
  position: absolute;
  top: 17px;
  left: -75px;
  width: 100%;
  height: 100%;
  background: radial-gradient(rgba(255, 220, 128, 0.5) 0%, rgba(255, 220, 128, 0.35) 35%, rgba(255, 255, 255, 0) 75%);
}

#page-top {
  position: fixed;
  right: 20px;
  bottom: -80px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(109.6deg, rgb(228, 0, 0) 11.2%, rgb(195, 11, 131) 91.1%);
}
#page-top:hover {
  opacity: 0.8;
  transition: 0.6s;
}
#page-top a {
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  padding: 20px 0;
  margin-top: 40px;
  background: #e42c31;
}
.footer .copyright {
  color: #ffffff;
}

/* ==========================
   policy
========================== */
.policy-content {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.9;
  color: #334155;
}

.policy-content h3 {
  margin-top: 48px;
  margin-bottom: 16px;
  padding-left: 16px;
  border-left: 4px solid #2563eb;
  color: #0f172a;
  font-size: 1.3rem;
  font-weight: 700;
}

.policy-content hr {
  margin: 48px 0;
  border: none;
  border-top: 1px solid #dbe2ea;
}

.policy-content a {
  color: #2563eb;
  text-decoration: none;
}

.policy-content a:hover {
  text-decoration: underline;
}

/* ==========================
   Tablet
========================== */
@media screen and (max-width: 1024px) {
  .header .header-area {
    padding: 15px 20px;
  }
  .header .header-area .main-menu {
    gap: 40px;
  }
  .header .header-area .main-menu .menu-text {
    font-size: 1rem;
  }
  .container {
    padding: 0 20px;
  }
  .container .about {
    gap: 24px;
  }
  .container .about .about-pic-area {
    width: 100%;
  }
  .container .about-content2 .about-detail,
.container .about-content3 .about-detail {
    gap: 30px;
  }
  .container .snsbtniti2 {
    flex-wrap: wrap;
    gap: 15px;
  }
  .container .snsbtniti2 li {
    flex: 0 0 30%;
  }
}
/* ==========================
   Smartphone
========================== */
@media screen and (max-width: 768px) {
  h2 {
    font-size: 1.5rem;
  }
  p {
    font-size: 1rem;
    line-height: 1.8;
  }
  .header .header-area {
    padding: 15px;
  }
  .header .header-area .logo-img {
    width: 90px;
  }
  .header .header-area .main-menu {
    gap: 40px;
    overflow-x: auto;
    padding-bottom: 5px;
  }
  .header .header-area .main-menu::-webkit-scrollbar {
    display: none;
  }
  .header .header-area .main-menu .menu-text {
    font-size: 1rem;
  }
  h2 {
    font-size: 1.2rem;
  }
  .kv .kv-text {
    width: 90%;
    margin: 0;
  }
  .kv .kv-text .kv-title span {
    min-width: auto;
    font-size: 1.2rem;
    line-height: 1.5;
  }
  .kv .kv-text .kv-subtitle {
    font-size: 1rem;
  }
  .kv .scrolldown2 {
    transform: scale(0.8);
  }
  .container {
    /* 反転解除 */
  }
  .container .section-title-area {
    margin-top: 70px;
  }
  .container .section-copy {
    margin-top: 40px;
    line-height: 2;
  }
  .container .about {
    flex-direction: column;
    margin-top: 50px;
  }
  .container .about:nth-of-type(2) {
    margin-top: 40px;
  }
  .container .about .about-pic-area {
    width: 100%;
  }
  .container .about .about-pic-area:nth-child(2) {
    margin-top: 40px;
  }
  .container .about .about-pic-area .about-copy {
    margin-top: 40px;
    line-height: 1.8;
  }
  .container .about img {
    height: 250px;
  }
  .container .about-content2,
.container .about-content3 {
    margin-top: 60px;
  }
  .container .about-content2 .about-detail,
.container .about-content3 .about-detail {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .container .about-content2 .about-detail img,
.container .about-content3 .about-detail img {
    width: 100%;
    grid-column: auto;
    grid-row: auto;
  }
  .container .about-content2 .about-detail h3,
.container .about-content2 .about-detail .about-content-text,
.container .about-content3 .about-detail h3,
.container .about-content3 .about-detail .about-content-text {
    width: 100%;
  }
  .container .about-content3 .about-detail img,
.container .about-content3 .about-detail h3,
.container .about-content3 .about-detail .about-content-text {
    grid-column: auto;
  }
  .container .section-title-area {
    margin-top: 40px;
  }
  .container .contact-button {
    margin-top: 40px;
  }
  .container .contact-button .btn-custom01 {
    width: 100%;
  }
  .container .contact-button .btn-custom01 .btn-custom01-front {
    padding: 1.2rem 3rem;
  }
  .container .snsbtniti2 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 40px;
    padding: 0;
  }
  .container .snsbtniti2 li {
    display: flex;
    justify-content: center;
    flex: initial;
    width: calc(50% - 8px);
  }
  .container .snsbtniti2 .flowbtn11 {
    width: 160px;
  }
  #page-top {
    width: 60px;
    height: 60px;
    right: 15px;
    bottom: 15px;
  }
  #page-top a {
    font-size: 0.8rem;
  }
  .footer {
    padding: 0 15px;
  }
  .footer .copyright {
    font-size: 0.8rem;
    text-align: center;
  }
}
.hamburger {
  display: none;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 999;
  background: transparent;
  border: none;
  cursor: pointer;
}
.hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: #3f3f3f;
  border-radius: 999px;
  transition: 0.4s;
}
.hamburger span:nth-child(1) {
  top: 8px;
}
.hamburger span:nth-child(2) {
  top: 18px;
}
.hamburger span:nth-child(3) {
  top: 28px;
}
.hamburger.active span:nth-child(1) {
  top: 18px;
  transform: rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  top: 18px;
  transform: rotate(-45deg);
}

@media screen and (max-width: 768px) {
  .hamburger {
    display: block;
  }
  .main-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    transition: 0.5s;
    z-index: 998;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
  }
  .main-menu.active {
    right: 0;
  }
  .main-menu .menu-text {
    font-size: 1rem;
  }
}
.portfolio-work {
  margin-top: 100px;
}
.portfolio-work .works-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 80px;
  padding: 20px;
}
.portfolio-work .work-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  background: #ffffff;
  border-radius: 20px;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: 0.5s;
  position: relative;
}
.portfolio-work .work-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.15);
}
.portfolio-work .work-card:hover .work-img img {
  transform: scale(1.08);
  -o-object-fit: contain;
     object-fit: contain;
}
.portfolio-work .work-card:hover .work-link {
  transform: translateX(8px);
}
.portfolio-work .work-card::after {
  content: "クリックすると詳細が見れます！";
  position: absolute;
  top: 166px;
  left: 20px;
  background: #e42c31;
  color: #ffffff;
  padding: 5px 12px;
  border-radius: 30px;
  font-size: 0.65rem;
  font-weight: bold;
  box-shadow: #ffffff 0px 0px 5px;
}
.portfolio-work .work-img {
  height: 180px;
  overflow: hidden;
}
.portfolio-work .work-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.8s;
}
.portfolio-work .work-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.portfolio-work .work-category {
  display: inline-block;
  background: #ffe7e7;
  color: #e42c31;
  padding: 5px 10px;
  border-radius: 30px;
  font-size: 0.7rem;
  font-weight: bold;
}
.portfolio-work h3 {
  min-height: 3em;
  margin-top: 15px;
  font-size: 1rem;
  line-height: 1.6;
  color: #3f3f3f;
  letter-spacing: 0.05em;
  padding-left: 0;
}
.portfolio-work h3::before {
  display: none;
}
.portfolio-work .work-skill {
  margin-top: 15px;
  color: #e42c31;
  font-size: 0.8rem;
  font-weight: bold;
  min-height: 50px;
}
.portfolio-work .work-text {
  margin-top: 10px;
  font-size: 0.85rem;
  line-height: 1.8;
  min-height: 85px;
}
.portfolio-work .work-link {
  margin-top: auto;
  padding-top: 20px;
  font-size: 0.85rem;
  font-weight: bold;
  transition: 0.4s;
  color: #3f3f3f;
}

.section-skill {
  text-align: center;
  padding: 20px;
}

.skill-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin: 40px 0;
}

.skill-copy {
  margin-top: 10px;
  line-height: 2;
}

.skill-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: #ffffff;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: bold;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
}
.skill-item i {
  color: #e42c31;
  font-size: 1.2rem;
}
.skill-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

/* タブレット */
@media (max-width: 1024px) {
  .portfolio-work .works-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* スマホ */
@media (max-width: 768px) {
  .portfolio-work {
    margin-top: 60px;
  }
  .portfolio-work .works-grid {
    margin-top: 20px;
    grid-template-columns: 1fr;
  }
}
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

.work-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}
.work-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(255, 255, 255, 0.5), rgba(228, 44, 49, 0.35) 3%, transparent 1%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 2;
}
.work-card:hover::before {
  opacity: 1;
}

.contact-kv {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50vh;
  padding: 120px 20px 80px;
  text-align: center;
  background: #e42c31;
}

.contact-kv-inner {
  max-width: 800px;
}

.contact-kv-title {
  font-size: clamp(3rem, 8vw, 5rem);
  color: #ffffff;
  letter-spacing: 0.08em;
}

.contact-kv-subtitle {
  margin-top: 24px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.85);
}

.contact-section {
  padding-bottom: 120px;
}

.contact-copy {
  margin-top: 60px;
}

.contact-form {
  width: min(100%, 900px);
  margin: 80px auto 0;
  padding: 60px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.form-group {
  display: flex;
  flex-direction: column;
}
.form-group:not(:first-child) {
  margin-top: 40px;
}
.form-group label {
  margin-bottom: 12px;
  font-weight: bold;
  font-size: 0.95rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 18px 20px;
  border: 1px solid #ddd;
  border-radius: 14px;
  background: #fafafa;
  font-size: 1rem;
  color: #3f3f3f;
  transition: 0.3s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #e42c31;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(228, 44, 49, 0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 220px;
  line-height: 1.8;
}

.contact-submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  gap: 12px;
  width: 50%;
  margin-top: 50px;
  padding: 20px;
  border: none;
  border-radius: 16px;
  background: linear-gradient(109.6deg, rgb(228, 0, 0) 11.2%, rgb(195, 11, 131) 91.1%);
  color: #ffffff;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: 0.4s;
}
.contact-submit-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(228, 44, 49, 0.25);
}

@media screen and (max-width: 768px) {
  .contact-form {
    margin-top: 50px;
    padding: 40px 24px;
  }
  .contact-kv {
    height: 40vh;
    padding-top: 100px;
  }
  .contact-kv-subtitle {
    line-height: 1.8;
    font-size: 0.95rem;
  }
}
.error-message {
  margin-top: 8px;
  color: #e42c31;
  font-size: 0.9rem;
  font-weight: bold;
}

.thanks-message {
  padding: 80px 20px;
  text-align: center;
  -webkit-animation: fadeUp 0.8s ease;
          animation: fadeUp 0.8s ease;
}
.thanks-message h2 {
  font-size: 2rem;
  color: #e42c31;
}
.thanks-message p {
  margin-top: 20px;
  line-height: 2;
}

@-webkit-keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.error-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
  text-align: center;
}

.error-inner {
  max-width: 700px;
}

.error-code {
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: bold;
  line-height: 1;
  margin-bottom: 16px;
}

.error-title {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 24px;
}

.error-text {
  margin-bottom: 40px;
  line-height: 1.8;
}

.error-btn {
  display: inline-block;
  padding: 16px 32px;
  border: 1px solid currentColor;
  text-decoration: none;
  color: #3f3f3f;
  transition: 0.3s;
}

.error-btn:hover {
  transform: translateY(-3px);
}
/*# sourceMappingURL=style.css.map */