@charset "UTF-8";
/*************************************************
common-style
*************************************************/
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-margin: 100px;
}

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

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

body {
  font-family: "Noto Sans", sans-serif;
}

@font-face {
  font-family: "Shrimp";
  src: url("../font/SHRIMP.woff2") format("woff2"), url("../font/SHRIMP.woff") format("woff");
  font-display: swap;
}
input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

/*************************************************
アニメーション
*************************************************/
.gradient-sections {
  position: relative;
  width: 100%;
}

.gradation-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  touch-action: none;
  cursor: inherit;
}

.fadeUp {
  transform: translateY(0);
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@media screen and (max-width: 599px) {
  .fadeUp {
    animation-duration: 0.3s;
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.delay-time02 {
  animation-delay: 0.2s;
}
@media screen and (max-width: 599px) {
  .delay-time02 {
    animation-delay: 0.1s;
  }
}

.delay-time04 {
  animation-delay: 0.4s;
}
@media screen and (max-width: 599px) {
  .delay-time04 {
    animation-delay: 0.2s;
  }
}

.delay-time06 {
  animation-delay: 0.6s;
}
@media screen and (max-width: 599px) {
  .delay-time06 {
    animation-delay: 0.3s;
  }
}

.delay-time08 {
  animation-delay: 0.8s;
}
@media screen and (max-width: 599px) {
  .delay-time08 {
    animation-delay: 0.4s;
  }
}

.delay-time1 {
  animation-delay: 1s;
}
@media screen and (max-width: 599px) {
  .delay-time1 {
    animation-delay: 0.5s;
  }
}

/*************************************************
ローディングアニメーション
*************************************************/
.loading-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #0F2319;
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), visibility 1s cubic-bezier(0.4, 0, 0.2, 1);
}
.loading-container.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.logo-loader {
  position: relative;
  width: 365px;
  height: 230px;
}
@media screen and (max-width: 599px) {
  .logo-loader {
    transform: scale(0.7);
  }
}
.logo-loader svg {
  width: 100%;
  height: 100%;
}
.logo-loader svg path:nth-child(2), .logo-loader svg path:nth-child(3), .logo-loader svg path:nth-child(4), .logo-loader svg path:nth-child(5) {
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  fill: transparent;
  stroke: #4DAE7C;
  stroke-width: 2;
  animation: bamboo-draw 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
.logo-loader svg path:nth-child(2) {
  animation-delay: 0s;
}
.logo-loader svg path:nth-child(3) {
  animation-delay: 0.1s;
}
.logo-loader svg path:nth-child(4) {
  animation-delay: 0.2s;
}
.logo-loader svg path:nth-child(5) {
  animation-delay: 0.3s;
}
.logo-loader svg path:nth-child(1) {
  opacity: 0;
  transform-origin: center;
  animation: b-appear 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: 0.8s;
}
.logo-loader svg path:nth-child(n+6) {
  opacity: 0;
  animation: text-reveal 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.logo-loader svg path:nth-child(6) {
  animation-delay: 1.2s;
}
.logo-loader svg path:nth-child(7) {
  animation-delay: 1.3s;
}
.logo-loader svg path:nth-child(8) {
  animation-delay: 1.4s;
}
.logo-loader svg path:nth-child(9) {
  animation-delay: 1.5s;
}
.logo-loader svg path:nth-child(10) {
  animation-delay: 1.6s;
}
.logo-loader svg path:nth-child(11) {
  animation-delay: 1.7s;
}
.logo-loader svg path:nth-child(12) {
  animation-delay: 1.8s;
}
.logo-loader svg path:nth-child(13) {
  animation-delay: 1.9s;
}
.logo-loader svg path:nth-child(14) {
  animation-delay: 2s;
}

@keyframes bamboo-draw {
  0% {
    stroke-dashoffset: 300;
    fill: transparent;
    opacity: 0;
  }
  50% {
    stroke-dashoffset: 0;
    fill: transparent;
    opacity: 1;
  }
  100% {
    stroke-dashoffset: 0;
    fill: white;
    stroke: transparent;
    opacity: 1;
  }
}
@keyframes b-appear {
  0% {
    opacity: 0;
    transform: scale(0.8) translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateX(0);
  }
}
@keyframes text-reveal {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.loading-progress {
  position: absolute;
  bottom: 30%;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
  border-radius: 2px;
}
.loading-progress::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #4DAE7C, #B0D18F, #4DAE7C, transparent);
  animation: progress-move 2s ease-in-out infinite;
  animation-delay: 0.5s;
}

@keyframes progress-move {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
.glow-effect {
  position: absolute;
  width: 400px;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(77, 174, 124, 0.3) 0%, transparent 70%);
  filter: blur(100px);
  opacity: 0;
  animation: glow-pulse 3s ease-in-out infinite;
  animation-delay: 1s;
  pointer-events: none;
}

@keyframes glow-pulse {
  0%, 100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
  }
}
/*************************************************
FVアニメーション
*************************************************/
#fv .logo_01 {
  opacity: 0;
  animation: logo-fade-in 1s ease forwards;
  animation-delay: 0.5s;
}
#fv .fv_01 {
  opacity: 0;
  animation: slide-in-left 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: 1s;
}
#fv .fv_02 {
  opacity: 0;
  animation: slide-in-right 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: 1.3s;
}
#fv .scrolling-text {
  opacity: 0;
  animation: text-fade-in 1s ease forwards, scroll 140s linear infinite;
  animation-delay: 1.8s, 1.8s;
}
#fv .scroll-indicator {
  opacity: 0;
  animation: indicator-fade-in 1s ease forwards;
  animation-delay: 2.2s;
}
#fv .copy {
  opacity: 0;
  animation: copy-fade-in 1s ease forwards;
  animation-delay: 2s;
}

@keyframes logo-fade-in {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}
@keyframes slide-in-left {
  0% {
    opacity: 0;
    transform: translateX(-100px) translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }
}
@keyframes slide-in-right {
  0% {
    opacity: 0;
    transform: translateX(100px) translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0) translateY(0);
  }
}
@keyframes text-fade-in {
  to {
    opacity: 1;
  }
}
@keyframes indicator-fade-in {
  to {
    opacity: 1;
  }
}
@keyframes copy-fade-in {
  to {
    opacity: 1;
  }
}
/*************************************************
header
*************************************************/
.hamburger {
  width: 40px;
  height: 23px;
  position: fixed;
  top: 30px;
  right: 30px;
  z-index: 1001;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  cursor: pointer;
}
.hamburger .bar {
  height: 2px;
  background: white;
  display: block;
  transition: all 0.3s ease;
  transform-origin: center;
}
.hamburger .top {
  width: 100%;
}
.hamburger .middle {
  width: 75%;
}
.hamburger .bottom {
  width: 50%;
}
.hamburger.active .top {
  transform: rotate(45deg);
  width: 100%;
  position: absolute;
  top: 10px;
}
.hamburger.active .middle {
  opacity: 0;
}
.hamburger.active .bottom {
  transform: rotate(-45deg);
  width: 100%;
  position: absolute;
  bottom: 10px;
}

/* ナビゲーションメニュー */
.menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 40%;
  height: 100vh;
  background-color: #333;
  transition: right 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
@media screen and (max-width: 599px) {
  .menu {
    width: 80%;
  }
}
.menu ul {
  list-style: none;
  padding: 0;
  text-align: center;
}
.menu ul li {
  margin: 20px 0;
}
.menu ul li a {
  font-family: Shrimp;
  color: white;
  font-size: 24px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.menu ul li a:hover {
  opacity: 0.7;
}
.menu.active {
  right: 0;
}

/*************************************************
footer
*************************************************/
/*************************************************
navi
*************************************************/
/*************************************************
top
*************************************************/
#fv {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100vh;
}
#fv .logo_01 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 20%;
}
@media screen and (max-width: 599px) {
  #fv .logo_01 {
    max-width: 300px;
    width: 1005;
  }
}
#fv .fv_01 {
  position: absolute;
  left: 68px;
}
@media screen and (max-width: 599px) {
  #fv .fv_01 {
    left: 10px;
  }
}
#fv .fv_02 {
  position: absolute;
  right: 68px;
  bottom: 0;
}
@media screen and (max-width: 599px) {
  #fv .fv_02 {
    right: 0;
  }
}
#fv .copy {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -120px;
  color: #fff;
  transform: rotate(90deg);
  font-family: Urbanist;
  font-size: 12px;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 599px) {
  #fv .copy {
    display: none;
  }
}

.scrolling-text {
  mix-blend-mode: overlay;
  position: absolute;
  bottom: 10px;
  display: flex;
  white-space: nowrap;
  animation: scroll 140s linear infinite;
  will-change: transform;
  overflow-y: hidden;
}

.text-item {
  color: #fff;
  font-family: "Shrimp";
  font-size: 128px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  mix-blend-mode: overlay;
  padding-right: 30px;
}
@media screen and (max-width: 599px) {
  .text-item {
    font-size: 60px;
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.scroll-indicator {
  position: absolute;
  top: 50%;
  left: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 10;
}
@media screen and (max-width: 599px) {
  .scroll-indicator {
    top: 60%;
    left: 50%;
    transform: translateX(-50%);
  }
}
.scroll-indicator .scroll-text {
  transform: rotate(90deg);
  font-size: 14px;
  color: #fff;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
  opacity: 0.8;
  font-family: Urbanist;
}
.scroll-indicator .scroll-line {
  width: 1px;
  height: 50px;
  background-color: #fff;
  animation: scrollLine 1.5s infinite ease-in-out;
  transform-origin: top;
}

@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    opacity: 0;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
  100% {
    transform: scaleY(0);
    opacity: 0;
  }
}
#who {
  position: relative;
  padding: 160px 0 120px;
}
@media screen and (max-width: 599px) {
  #who {
    padding: 120px 20px;
  }
}
#who .section_inner {
  position: relative;
  z-index: 1;
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  gap: 150px;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 599px) {
  #who .section_inner {
    flex-direction: column;
  }
}
#who .section_inner .who_image {
  flex: 1;
  position: sticky;
  top: 100px;
  align-self: flex-start;
}
@media screen and (max-width: 599px) {
  #who .section_inner .who_image {
    position: static;
  }
}
#who .section_inner .who_image img {
  width: 100%;
  height: auto;
  display: block;
}
#who .section_inner .who_text {
  flex: 2;
  color: #fff;
  font-weight: 600;
  line-height: 1.9;
}
@media screen and (max-width: 599px) {
  #who .section_inner .who_text {
    line-height: 1.6;
  }
}
#who .section_inner .who_text h3 {
  font-size: 30px;
  letter-spacing: 0.1rem;
  margin-bottom: 50px;
}
@media screen and (max-width: 599px) {
  #who .section_inner .who_text h3 {
    font-size: 20px;
  }
}
#who .section_inner .who_text p {
  font-size: 16px;
  margin-bottom: 50px;
}
#who .section_inner .who_text p:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 599px) {
  #who .section_inner .who_text p {
    font-size: 14px;
    margin-bottom: 30px;
  }
}

.who_image.fixed {
  position: fixed;
  top: 0;
  z-index: 5;
}

.who_image.stick {
  position: absolute;
  top: auto;
  bottom: 0;
}

#service {
  position: relative;
  padding: 250px 0 0px;
}
@media screen and (max-width: 599px) {
  #service {
    padding-top: 120px;
    overflow: hidden;
  }
}
#service .circle_01 {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
@media screen and (max-width: 599px) {
  #service .circle_01 {
    right: -50%;
  }
}
#service .section_inner {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 120px;
}
@media screen and (max-width: 599px) {
  #service .section_inner {
    display: block;
    padding: 0 20px;
    margin-bottom: 60px;
  }
}
#service .section_inner h2 {
  color: #4dae7c;
  font-family: "Shrimp";
  font-size: 64px;
  font-weight: 400;
}
@media screen and (max-width: 599px) {
  #service .section_inner h2 {
    font-size: 42px;
    margin-bottom: 30px;
  }
}
#service .section_inner div p {
  color: #4dae7c;
  line-height: 1.9;
  font-weight: 600;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 599px) {
  #service .section_inner div p {
    font-size: 13px;
  }
}
#service .service_wrap .service_list {
  display: flex;
  color: #fff;
  border-bottom: solid 3px #fff;
}
@media screen and (max-width: 599px) {
  #service .service_wrap .service_list {
    display: block;
    border: none;
  }
}
#service .service_wrap .service_list li:nth-child(odd) {
  background: #4dae7c;
}
#service .service_wrap .service_list li:nth-child(even) {
  background: #b0d18f;
}
#service .service_wrap .service_list li {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 300px;
  border-right: solid 3px #fff;
}
#service .service_wrap .service_list li:last-child {
  border-right: none;
}
@media screen and (max-width: 599px) {
  #service .service_wrap .service_list li {
    border-right: none;
    border-bottom: solid 3px #fff;
  }
}
#service .service_wrap .service_list li::after {
  position: absolute;
  content: "";
  background-image: url(../images/service_btn.svg);
  width: 35px;
  height: 35px;
  right: 20px;
  bottom: 20px;
}
#service .service_wrap .service_list li p {
  font-family: "Shrimp";
  font-size: 36px;
  text-align: center;
}
#service .service_wrap .service_list li p span {
  margin-top: 5px;
  display: block;
  text-align: center;
  font-size: 16px;
  font-family: "Noto Sans", sans-serif;
  font-weight: 600;
}
#service .service_wrap .service_list li .service_inner_text {
  display: none;
}
#service .service_wrap .service_list li:hover {
  transition: 0.2s;
  background: #0f2319;
}
#service .service_wrap .service_list li:hover .service_ttl {
  display: none;
}
#service .service_wrap .service_list li:hover .service_inner_text {
  display: block;
  padding: 0 40px;
  font-family: "Noto Sans", sans-serif;
}
#service .service_wrap .service_list li:hover .service_inner_text p {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
  font-family: "Noto Sans", sans-serif;
}
#service .service_wrap .service_list li:hover::after {
  content: none;
}

@media screen and (max-width: 599px) {
  .service_wrap .service_list li {
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }
  .service_wrap .service_list li:hover {
    background: #4dae7c;
  }
  .service_wrap .service_list li:hover:nth-child(even) {
    background: #b0d18f;
  }
  .service_wrap .service_list li:hover .service_ttl {
    display: block;
  }
  .service_wrap .service_list li:hover .service_inner_text {
    display: none;
  }
  .service_wrap .service_list li:hover::after {
    content: "";
    background-image: url(../images/service_btn.svg);
  }
}

.service-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
}
.service-modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}
.service-modal .service-modal-content {
  background-color: #0f2319;
  margin: 20px;
  padding: 40px 25px;
  border: 2px solid #4dae7c;
  border-radius: 8px;
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  color: #fff;
  animation: slideUp 0.3s ease;
}
.service-modal .service-modal-content::-webkit-scrollbar {
  width: 6px;
}
.service-modal .service-modal-content::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
}
.service-modal .service-modal-content::-webkit-scrollbar-thumb {
  background: #4dae7c;
  border-radius: 3px;
}
.service-modal .service-modal-content .close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 32px;
  color: #4dae7c;
  cursor: pointer;
  line-height: 1;
  font-weight: 300;
  transition: all 0.2s ease;
}
.service-modal .service-modal-content .close-btn:hover {
  opacity: 0.7;
  transform: scale(1.1);
}
.service-modal .service-modal-content .modal-title {
  font-family: "Shrimp";
  font-size: 28px;
  text-align: center;
  margin-bottom: 25px;
  color: #4dae7c;
}
.service-modal .service-modal-content .modal-title span {
  display: block;
  font-size: 14px;
  font-family: "Noto Sans", sans-serif;
  font-weight: 600;
  margin-top: 10px;
  color: #fff;
}
.service-modal .service-modal-content .modal-text {
  font-size: 14px;
  line-height: 1.8;
  font-weight: 600;
  font-family: "Noto Sans", sans-serif;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@media screen and (min-width: 769px) {
  .service-modal {
    display: none !important;
  }
}
#company {
  position: relative;
}
#company .circle_02 {
  position: absolute;
  z-index: -1;
}
@media screen and (max-width: 599px) {
  #company .circle_02 {
    left: -50%;
  }
}
#company .section_inner {
  max-width: 810px;
  width: 100%;
  margin: 0 auto;
  padding: 120px 0;
}
@media screen and (max-width: 599px) {
  #company .section_inner {
    padding: 120px 20px;
  }
}
#company .section_inner h2 {
  color: #4dae7c;
  font-family: "Shrimp";
  font-size: 64px;
  font-weight: 400;
  text-align: center;
}
@media screen and (max-width: 599px) {
  #company .section_inner h2 {
    font-size: 42px;
    margin-bottom: 30px;
  }
}
#company .section_inner table {
  margin: 60px auto 0;
  width: 100%;
  display: block;
}
#company .section_inner table tbody {
  display: block;
}
#company .section_inner table tbody tr {
  display: flex;
  gap: 5px;
}
#company .section_inner table tbody tr th {
  display: block;
  width: 30%;
  border-bottom: 1px solid #00913a;
  padding: 30px;
  font-weight: 400;
}
@media screen and (max-width: 599px) {
  #company .section_inner table tbody tr th {
    font-size: 12px;
    padding: 30px 10px;
  }
}
#company .section_inner table tbody tr td {
  display: block;
  width: 70%;
  border-bottom: 1px solid #b1d585;
  padding: 30px;
  font-weight: 400;
}
@media screen and (max-width: 599px) {
  #company .section_inner table tbody tr td {
    font-size: 12px;
    padding: 30px 10px;
  }
}

#contact {
  position: relative;
}
@media screen and (max-width: 599px) {
  #contact {
    overflow: hidden;
  }
}
#contact .circle_03 {
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: -20%;
}
@media screen and (max-width: 599px) {
  #contact .circle_03 {
    right: -50%;
    bottom: 0;
  }
}
#contact .section_inner {
  max-width: 640px;
  width: 100%;
  margin: 0 auto;
}
#contact .section_inner h2 {
  color: #4dae7c;
  font-family: "Shrimp";
  font-size: 64px;
  font-weight: 400;
  text-align: center;
}
@media screen and (max-width: 599px) {
  #contact .section_inner h2 {
    font-size: 42px;
    margin-bottom: 30px;
  }
}
#contact .section_inner .contact_form {
  padding: 60px 0;
}
#contact .section_inner .contact_form h3 {
  text-align: center;
  font-size: 20px;
  margin-bottom: 60px;
}
#contact .section_inner .contact_form p {
  text-align: center;
  line-height: 1.6;
  margin-bottom: 60px;
}
@media screen and (max-width: 599px) {
  #contact .section_inner .contact_form p {
    padding: 0 20px;
  }
}
#contact .section_inner .contact_form table {
  display: block;
  max-width: 640px;
  width: 100%;
  margin: 0 auto 60px;
}
@media screen and (max-width: 599px) {
  #contact .section_inner .contact_form table {
    padding: 0 20px;
  }
}
#contact .section_inner .contact_form table tbody {
  display: block;
}
#contact .section_inner .contact_form table tbody tr {
  display: block;
  align-items: center;
  margin-bottom: 30px;
}
#contact .section_inner .contact_form table tbody tr th {
  display: flex;
  font-weight: 400;
  margin-bottom: 8px;
}
#contact .section_inner .contact_form table tbody tr th .required {
  color: #4dae7c;
  border: 1px solid #4dae7c;
  border-radius: 15px;
  display: block;
  padding: 3px 8px;
  margin-right: 8px;
  font-size: 10px;
}
#contact .section_inner .contact_form table tbody tr th .optional {
  color: #999999;
  border: 1px solid #999999;
  border-radius: 15px;
  display: block;
  padding: 3px 8px;
  margin-right: 8px;
  font-size: 10px;
}
#contact .section_inner .contact_form table tbody tr td {
  width: 100%;
  display: block;
  background-color: #f3f3f3;
  border-radius: 8px;
}
#contact .section_inner .contact_form table tbody tr td input[type=text],
#contact .section_inner .contact_form table tbody tr td textarea,
#contact .section_inner .contact_form table tbody tr td input[type=file] {
  width: 100%;
  padding: 10px 12px;
  border-radius: 4px;
  font-size: 15px;
  color: #333;
  background-color: #f3f3f3;
}
#contact .section_inner .contact_form table tbody tr td input[type=text]:focus,
#contact .section_inner .contact_form table tbody tr td textarea:focus,
#contact .section_inner .contact_form table tbody tr td input[type=file]:focus {
  border-color: #888;
  outline: none;
}
#contact .section_inner .contact_form table tbody tr td textarea {
  resize: vertical;
  min-height: 120px;
}
#contact .section_inner .contact_form button {
  font-family: "Shrimp";
  display: block;
  border-radius: 36px;
  background: #4dae7c;
  width: 220px;
  padding: 16px 0px;
  text-align: center;
  margin: 0 auto;
  font-size: 18px;
  color: #fff;
}
#contact .section_inner .contact_form button:hover {
  opacity: 0.7;
}

small {
  display: block;
  text-align: center;
  padding: 60px 0 30px;
  font-family: "Shrimp";
  color: #999999;
}

.slide .slick-slide {
  padding: 0 10px;
}
@media screen and (max-width: 768px) {
  .slide .slick-slide {
    padding: 0 5px;
  }
}
.slide .slick-list {
  margin: 0 -10px;
}
@media screen and (max-width: 768px) {
  .slide .slick-list {
    margin: 0 -5px;
  }
}
.slide img {
  width: 100%;
  height: auto;
  display: block;
}

#thanks .container {
  max-width: 800px;
  margin: 60px auto;
  padding: 40px 30px;
  border-radius: 8px;
  text-align: center;
}
#thanks h1 {
  font-size: 28px;
  color: #333;
  margin-bottom: 20px;
  font-weight: 600;
}
#thanks .complete-icon {
  margin: 20px auto 30px;
  width: 80px;
  height: 80px;
  background-color: #4dae7c;
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
#thanks .complete-icon::before {
  content: "";
  width: 30px;
  height: 15px;
  border-left: 4px solid #fff;
  border-bottom: 4px solid #fff;
  transform: rotate(-45deg);
  position: relative;
  top: -5px;
}
#thanks p {
  font-size: 16px;
  color: #666;
  margin-bottom: 25px;
  line-height: 1.5;
}
#thanks .message {
  padding: 20px;
  border-radius: 4px;
  margin: 30px 0;
  text-align: left;
}
#thanks .message p {
  margin-bottom: 15px;
}
#thanks .message p:last-child {
  margin-bottom: 0;
}
#thanks .button {
  display: inline-block;
  padding: 12px 35px;
  background-color: #4dae7c;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  margin-top: 20px;
  position: relative;
  transition: all 0.2s;
}
#thanks .button:hover {
  opacity: 0.7;
}
#thanks .button:active {
  transform: translateY(1px);
}
@media screen and (max-width: 768px) {
  #thanks .container {
    margin: 30px auto;
    padding: 25px 20px;
  }
  #thanks h1 {
    font-size: 24px;
  }
  #thanks .complete-icon {
    width: 70px;
    height: 70px;
  }
  #thanks .button {
    display: block;
    width: 80%;
    margin: 20px auto 0;
    padding: 15px;
  }
}

#formWrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 30px;
  background-color: #fff;
}
#formWrap h3 {
  font-size: 28px;
  color: #333;
  text-align: center;
  margin-bottom: 25px;
  font-weight: 600;
}
#formWrap p {
  text-align: center;
  margin-bottom: 30px;
  color: #666;
  font-size: 16px;
  line-height: 1.6;
}
#formWrap .formTable {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
}
#formWrap .formTable tr {
  border-bottom: 1px solid #eee;
}
#formWrap .formTable th {
  padding: 20px 15px;
  text-align: left;
  font-weight: normal;
  color: #333;
  background-color: #f9f9f9;
  vertical-align: top;
}
#formWrap .formTable td {
  padding: 20px 15px;
  line-height: 1.6;
}
#formWrap .error_messe {
  color: #4dae7c;
  font-weight: bold;
  margin: 5px 0;
  padding: 5px;
  background-color: rgba(231, 76, 60, 0.1);
  border-radius: 4px;
}
#formWrap p:last-child {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}
#formWrap p:last-child input[type=submit],
#formWrap p:last-child input[type=button] {
  padding: 12px 30px;
  font-size: 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}
#formWrap p:last-child input[type=submit]:hover,
#formWrap p:last-child input[type=button]:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
#formWrap p:last-child input[type=submit]:active,
#formWrap p:last-child input[type=button]:active {
  transform: translateY(0);
}
#formWrap p:last-child input[type=submit] {
  background-color: #4dae7c;
  color: white;
  font-weight: 600;
}
#formWrap p:last-child input[type=submit]::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  width: 100%;
  height: 100%;
  background-color: #3d8b63;
  z-index: -1;
  transition: all 0.2s ease;
}
#formWrap p:last-child input[type=submit]:hover::before {
  top: 7px;
  left: 7px;
}
#formWrap p:last-child input[type=button] {
  background-color: #f2f2f2;
  color: #666;
}
#formWrap p:last-child input[type=button]::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  width: 100%;
  height: 100%;
  background-color: #d9d9d9;
  z-index: -1;
  transition: all 0.2s ease;
}
#formWrap p:last-child input[type=button]:hover::before {
  top: 7px;
  left: 7px;
}

@media screen and (max-width: 768px) {
  #formWrap {
    padding: 20px 15px;
  }
  #formWrap h3 {
    font-size: 24px;
  }
  #formWrap .formTable th,
  #formWrap .formTable td {
    display: block;
    width: 100%;
  }
  #formWrap .formTable th {
    padding: 15px 10px 5px;
    background-color: transparent;
    border-bottom: none;
  }
  #formWrap .formTable td {
    padding: 5px 10px 15px;
  }
  #formWrap p:last-child {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  #formWrap p:last-child input[type=submit],
  #formWrap p:last-child input[type=button] {
    width: 80%;
    padding: 15px;
  }
}