@charset "UTF-8";

:root {
  --bg-yellow: #FFFDBE;
  --bg-main: #FEDEFF;
  --text-main: #523F32;
  --accent: #ffd166;
  --accent2: #BAF99D;
  --border-dot: rgba(80, 59, 47, 0.25);
  --font-jp: "Potta One", "Klee One", "Handlee", system-ui, sans-serif;
}

body {
  font-family: var(--font-jp);

}

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

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-jp);
  color: var(--text-main);
  background-color: var(--bg-main);
  line-height: 1.7;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(to right, rgba(255, 182, 193, 0.2) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 182, 193, 0.2) 1px, transparent 1px);
  background-size: 36px 36px;
  background-color: #fffaf0;
  opacity: 0.8;
}


.site-header {
  position: relative;
  width: 100%;
  height: auto;
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 247, 200, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header-inner {
  max-width: 800px;
  height: 70px;
  margin: 0 auto;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-logo img {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 80px;
  height: auto;
  transition: transform 0.3s ease, opacity 0.3s ease;
  cursor: pointer;
}

.site-logo img:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

.contact-info {
  top: 20px;
  font-size: 14px;
  display: inline-block;
  padding: 8px;
  border-radius: 999px;
  background: var(--accent2);
  margin: 0 15px 6px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  cursor: pointer;
  color: #523F32;
}


.site-nav {
  display: none;
  gap: 16px;
}

.site-nav a {
  font-size: 16px;
  text-decoration: none;
  color: var(--text-main);
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--accent2);
  transition: width .2s ease;
}

.site-nav a:hover::after {
  width: 100%;
}

.fv {
  position: relative;
  max-width: 1100px;
  margin: auto;
}

* {
  box-sizing: border-box;
}

.fv-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.fv-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateX(8%);
  transition: opacity .8s ease, transform .8s ease;
}

.fv-slide img {
  width: 100%;
  height: calc(100vh - 70px);
  object-fit: cover;
  display: block;
}

.fv-slide.is-active {
  opacity: 1;
  transform: translateX(0);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 48px 16px;
  color: #fff;
}

.hero-label {
  font-family: Handlee;
  font-size: 16px;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin: 0 0 6px;
  opacity: 0.9;
}

.hero-title {
  font-family: klee one;
  font-size: 20px;
  line-height: 1.8;
  font-weight: 200;
  letter-spacing: 0.05em;
  margin: 0 0 30px;
}

.fv-copy {
  margin-top: 30px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  padding: 20px 16px;
  border: 1px dashed var(--border-dot);
  max-width: 1100px;
}

.fv-title {
  font-family: potta one;
  margin: 0 0 4px;
  font-size: 20px;
}

.fv-text {
  font-family: klee one;
  font-size: 18px;
  font-weight: 400;
  margin: 0;
}

.fv-illust {
  position: absolute;
  bottom: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
  opacity: 0.9;
}

.fv-illust-bone {
  left: 40%;
  bottom: -150px;
  background-image: url("top.img/pink-hart.png");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  animation: float1 3.2s ease-in-out infinite;
}

.fv-illust-ball {
  left: 12px;
  bottom: -150px;
  background: #FEDEFF;
  background-image: url("top.img/dog-chairo.png");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  animation: float2 3.5s ease-in-out infinite;
}

.fv-illust-paw {
  left: 70%;
  bottom: -150px;
  width: 80px;
  height: 80px;
  background: #BAF99D;
  background-image: url("top.img/cat-yellow.png");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  animation: wag 1.4s ease-in-out infinite;
}

.pc-fv {
  display: none;
}

@keyframes float1 {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes float2 {

  0%,
  100% {
    transform: translateY(-4px);
  }

  50% {
    transform: translateY(6px);
  }
}

@keyframes wag {

  0%,
  100% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(-6deg);
  }

  50% {
    transform: rotate(6deg);
  }

  75% {
    transform: rotate(-4deg);
  }
}

.layout {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.layout-main {
  width: 100%;
}

.layout-side {
  display: none;
}

.section {
  margin-top: 50px;
  margin-bottom: 40px;
  padding: 20px 18px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 22px;
  border: 1px dotted var(--border-dot);
  position: relative;
  overflow: hidden;
}

.section::before {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 18px;
  border: 1px dashed rgba(255, 209, 102, 0.5);
  pointer-events: none;
}

.section-title {
  margin: 0 0 12px;
  font-size: 20px;
  font-family: potta one;
  position: relative;
  z-index: 1;
}

.case-buton {
  display: inline-block;
  padding: 12px 16px;
  text-decoration: none;
  border-radius: 999px;
  background: var(--accent2);
  margin-left: 150px;
  text-align: right;
  transition: transform 0.3s ease, opacity 0.3s ease;
  cursor: pointer;
  color: #523F32;
}



.section-illust-fifi img {
  width: 250px;
}

.section-text {
  margin: 0;
  font-size: 18px;
  font-family: klee one;
}

.photo-pair {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 24px 0;
}

.photo-pair img {
  width: 100px;
  height: auto;
  object-fit: cover;
  border-radius: 50px;
}

.photo-pair2 {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 24px 0;
  overflow: hidden;
}

.photo-pair2 img {
  width: 80px;
  height: auto;
  object-fit: cover;
  animation: slideLeft 10s linear infinite;
}

@keyframes slideLeft {
  from {
    transform: translateX(150px);
  }

  to {
    transform: translateX(-500px);
  }
}

.divider-illust:nth-child(1) img {
  animation-delay: 0s;
}

.divider-illust:nth-child(2) img {
  animation-delay: 1s;
}

.divider-illust:nth-child(3) img {
  animation-delay: 2s;
}

.section-reason {
  padding: 24px 16px;
  margin-top: 80px;
}

.reason-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.reason-list li {
  width: 100%;
  max-width: 320px;
  text-align: center;
}


.reason-photo {
  width: 80%;
  height: auto;
  object-fit: contain;
  border-radius: 50px;
  margin: 12px 0;
}

.reason-list li+li {
  margin-top: 16px;
}

.reason-list h3 {
  margin: 30px 0 10px;
  font-size: 18px;
}

.reason-list p {
  margin: 0;
  font-size: 18px;
  font-family: klee one;
}

.illust-dog {
  left: 80%;
  bottom: -50px;
  width: 80px;
  height: 80px;
  background: #FEDEFF;
  background-image: url("top.img/dog-gold.png");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  animation: float1 3.2s ease-in-out infinite;
}

.illust-dog-chairo {
  left: 50%;
  bottom: -65px;
  width: 80px;
  height: 80px;
  background: #BAF99D;
  background-image: url("top.img/cat&dog.png");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  animation: float2 3.5s ease-in-out infinite;
}

.illust-cat-cha {
  left: 80%;
  bottom: -50px;
  width: 80px;
  height: 80px;
  background: #bde0fe;
  background-image: url("top.img/cat-illust.png");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  animation: wag 1.4s ease-in-out infinite;
}

.bottom-illust-wrap {
  display: flex;
  justify-content: center;
  gap: 20px;
  position: relative;
  bottom: 10px;
}

.flow-illust-area img {
  width: 300px;
  border-radius: 18px;
  margin-top: 30px;
}

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

.flow-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.flow-step {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--accent2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F0DCB4;
  font-weight: bold;
  font-size: 16px;
  flex-shrink: 0;
}

.flow-body h3 {
  margin: 0 0 4px;
  font-size: 18px;
}

.flow-body p {
  margin: 0;
  font-size: 18px;
  font-family: klee one;
}

.section-price {
  background: #fff6d3;
}

.price-card {
  margin-top: 12px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);

}

.price-plan {
  margin: 0 0 4px;
  font-size: 20px;
}

.price-main {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: bold;
}

.price-main span:first-child {
  font-size: 18px;
  margin-right: 4px;
}

.price-tax {
  font-size: 16px;
  font-weight: normal;
  margin-left: 4px;
}

.price-detail {
  margin: 0;
  padding-left: 18px;
  font-size: 18px;
  font-family: klee one;
}

.price-illust-area video {
  width: 100%;
  height: auto;
  border-radius: 18px;
  margin-top: 30px;
  display: block;

}

.information p {
  font-family: klee one;
  font-size: 18px;
  margin: 20px;
}

.gallery-list {
  display: block;
}

.gallery-list li {
  width: 100%;
  margin-bottom: 8px;
}

.gallery-list img {
  width: 100%;
  border-radius: 16px;
  display: block;
}

.site-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--bg-yellow);
  padding: 30px 16px 28px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 12px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-name {
  margin: 0 0 4px;
  font-size: 14px;
}

.footer-copy {
  margin: 0;
}

.footer-nav a {
  font-size: 16px;
  text-decoration: none;
  color: var(--text-main);
  position: relative;
}

.footer-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--accent2);
  transition: width .2s ease;
}

.footer-nav a:hover::after {
  width: 100%;
}

.sns_icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.sns_icons a {
  height: 40px;
  width: auto;
  display: inline-block;
}

.sns_icons img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.copyright {
  font-family: klee one;
}

.footer-logo img {
  width: 120px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  cursor: pointer;
}

.footer-logo img:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

@media (min-width: 768px) {

  *,
  *::before,
  *::after {
    cursor: url("top.img/footprint3.png") 16 16, auto !important;
  }

  a:hover,
  button:hover,
  [onclick]:hover {
    cursor: url("top.img/footprint2.png") 16 16, pointer !important;
  }

  a,
  button,
  input[type="submit"],
  .contact-info,
  .case-buton,
  .site-logo img,
  .footer-logo img {
    cursor: url("top.img/footprint2.png") 16 16, pointer !important;
  }

  img {
    cursor: url("top.img/footprint2.png") 16 16, pointer !important;
  }

  a img {
    cursor: url("top.img/footprint2.png") 16 16, pointer !important;
  }

  img[onclick] {
    cursor: url("top.img/footprint2.png") 16 16, pointer !important;
  }


  .header-inner {
    max-width: 1200px;
    height: 130px;
    padding: 15px 20px;
  }

  .site-logo img {
    top: 30px;
    left: 30px;
    width: 120px;
    height: auto;
  }

  .contact-info {
    top: 30px;
    font-size: 18px;
    padding: 10px;
  }

  .site-nav {
    gap: 20px;
    display: flex;
  }

  .fv-slider {
    display: none;
  }

  .pc-fv {
    position: relative;
    max-width: 100%;
    height: auto;
    margin: 0 auto 40px;
    display: block;

  }

  .pc-fv-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    margin-bottom: 200px;
  }

  .pc-fv-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(8%);
    transition: opacity 0.8s ease, transform 0.8s ease;

  }

  .pc-fv-slide.is-active {
    opacity: 1;
    transform: translateX(0);
  }

  .pc-fv-slide img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }

  .slide.active {
    opacity: 1;
    position: relative;
  }

  .fv-illust-bone {
    right: 4px;
    bottom: -350px;
    width: 120px;
    height: 120px;
  }

  .fv-illust-ball {
    left: 12px;
    bottom: -350px;
    width: 120px;
    height: 120px;

  }

  .fv-illust-paw {
    left: 80%;
    bottom: -350px;
    width: 120px;
    height: 120px;
  }

  .fv-copy {
    margin-top: 300px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    padding: 100px 40px;
    border: 1px dashed var(--border-dot);
    height: calc(100sv - 150px);
  }

  .fv-title {
    font-size: 34px;
    margin: 50px auto;
  }

  .fv-text {
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 50px;
  }

  .hero-overlay {
    padding: 40px 40px;
    align-items: flex-start;
  }

  .hero-title {
    font-size: 50px;
  }

  .layout {
    display: block;
    padding: 60px 16px 40px;
    max-width: 1200px;
  }

  .layout-main {
    max-width: 100%;
    margin: 0 auto;
  }

  .section {
    margin: 0 auto 40px;
    padding: 24px 18px;
    max-width: 1200px;
  }

  .case-buton {
    padding: 12px 24px;
    font-size: 18px;
    margin-left: 500px;
    margin-bottom: 50px;
    font-family: potta one;
    color: #523F32;
  }

  .reason-list h3 {
    font-size: 30px;
  }

  .reason-list p {
    font-size: 26px;
  }

  .section-reason .reason-list {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: stretch;
    gap: 32px;
  }

  .section-reason {
    margin-top: 200px;
  }

  .reason-photo {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  .reason-list li {

    flex: 1 1 30%;
    max-width: 30%;
    box-sizing: border-box;


  }

  .reason-list {
    display: flex;
    gap: 24px;
    justify-content: space-between;
    flex-wrap: wrap;

  }

  .reason-photo {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
  }


  .section-about .about-content-wrap {
    display: flex;
    align-items: flex-start;
    gap: 40px;
  }

  .section-about .section-flex {
    width: calc(100% - 200px - 40px);
  }

  .section-about .section-illust-fifi img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    margin-right: auto;
  }

  .section-about .section-illust-fifi {
    width: 500px;
    max-width: 500px;
    height: 400px;
    border-radius: 999px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  }

  .section-about .section-flex p {
    flex-grow: 1;
  }

  .section-about .section-text {
    width: 65%;
  }


  .section-flow {
    margin-top: 200px;
  }

  .photo-pair2 {
    gap: 30px;
    margin-top: 100px;
    display: flex;
    overflow: hidden;
  }

  @keyframes slideLeft {
    from {
      transform: translateX(1000px);
    }

    to {
      transform: translateX(-1000px);
    }


  }


  .photo-pair2 img {
    width: 120px;
    animation: slideLeft 10s linear infinite;


  }

  .flow-body h3 {
    font-size: 30px;
  }

  .flow-body p {
    font-size: 26px;
  }

  .section-flow .flow-content-wrap {
    display: flex;
    gap: 40px;
    align-items: center;
  }

  .section-flow .flow-list {
    width: 60%;
  }

  .section-flow .flow-illust-area {
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: var(--bg-yellow);
    border-radius: 20px;
    flex-shrink: 0;
  }

  .flow-illust-area .section-flow .flow-main-illust {
    width: 80%;
    height: auto;
    object-fit: contain;
  }

  .section-price .price-content-wrap {
    display: flex;
    gap: 40px;
    align-items: center;
    background: var(--bg-yellow);
    border-radius: 20px;
    padding: 60px;
    margin-top: 30px;
  }

  .section-price .price-list {
    width: 60%;
  }

  .section-price .price-illust-area {
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: var(--bg-yellow);
    border-radius: 20px;
    flex-shrink: 0;
  }

  .price-main-illust {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 16px;
  }

  .price-illust-area video {
    width: 400px;
    height: auto;

  }

  .price-illust-area .section-price .flow-main-illust {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .price-card p {
    font-size: 26px;
  }

  .price-detail li {
    font-size: 26px;
  }

  .section-text {
    font-size: 26px;
  }

  .section-title {
    font-size: 36px;
    margin: 50px auto;
  }

  .section::before {
    inset: 18px;
  }

  .layout-side {
    display: block;
  }

  .information p {
    font-size: 26px;
    max-width: 1100px;
    text-align: center;
    margin: 0 auto;
    padding: 50px;
  }

  .section-gallery .gallery-list {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 20px 0;
  }

  .section-gallery .gallery-list li {
    width: calc(33.33% - 13.33px);
    margin: 0;
  }

  .section-gallery .gallery-list img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .side-column {
    position: sticky;
    top: 80px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .side-item {
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.95);
    border: 1px dotted rgba(0, 0, 0, 0.1);
  }

  .side-item img {
    display: block;
    width: 100%;
  }

  .side-item.round img {
    border-radius: 999px;
  }

  .illust-dog {
    width: 120px;
    height: 120px;
  }

  .illust-dog-chairo {
    width: 120px;
    height: 120px;
  }

  .illust-cat-cha {
    width: 120px;
    height: 120px;
  }

  .bottom-illust-wrap {
    gap: 50px;

  }

  .footer-logo {
    width: 150px;
  }

  .footer-nav {
    gap: 50px;
  }

  .footer-name {
    font-size: 20px;
  }



  .pc-footer .sns_icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;

  }

  .pc-footer .sns_icons a {
    height: 40px;
    width: auto;
    display: block;
  }

  .pc-footer .sns_icons img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    margin-top: 10px;
  }

  .pc-footer-copy {
    text-align: center;
    margin-top: 10px;
  }

  body.contact-page {
    background-color: #f5f5f0;

  }

  .contact-header {
    background-color: #FFFDBE;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .contact-header-inner {
    max-width: 960px;
    margin: 0 auto;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 16px;
  }

  .contact-logo img {
    display: block;
    height: 42px;
  }

  .contact-header-copy {
    font-size: 16px;
    line-height: 1.6;
    color: #6b4b3a;
  }

  .contact-main {
    max-width: 720px;
    margin: 32px auto 64px;
    padding: 0 16px;
  }

  .contact-hero {
    text-align: left;
    margin-bottom: 32px;
  }

  .contact-eyecatch {
    display: inline-block;
    padding: 4px 10px;
    margin-bottom: 12px;
    border-radius: 999px;
    background-color: #fff7d1;
    font-size: 12px;
    letter-spacing: .08em;
    color: #a5824e;
  }

  .contact-title {
    font-family: "klee one";
    font-size: 24px;
    margin-bottom: 12px;
  }

  .contact-lead,
  .contact-note {
    font-size: 16px;
    line-height: 1.9;
    font-family: "klee one";
    font-weight: 400;

  }

  .contact-note {
    margin-top: 8px;
    font-size: 16px;
    font-family: "klee one";
  }

  .contact-section {
    background-color: #ffffff;
    border-radius: 18px;
    padding: 24px 20px 28px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(222, 205, 160, 0.4);
  }

  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .form-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 16px;
    font-family: "klee one";
  }

  .form-row label {
    font-weight: 600;
    font-family: "klee one";
  }

  .form-row.is-required label::after {
    content: "＊必須";
    margin-left: 8px;
    font-size: 11px;
    color: #e07a63;
    font-weight: 500;
  }

  .contact-form input[type="text"],
  .contact-form input[type="email"],
  .contact-form input[type="tel"],
  .contact-form select,
  .contact-form textarea {
    width: 100%;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid #e2d8c8;
    background-color: #fffef9;
    font-size: 16px;
    font-family: "klee one";
    line-height: 1.6;
    box-sizing: border-box;
  }

  .contact-form input::placeholder,
  .contact-form textarea::placeholder {
    color: #b6a8a0;
    font-size: 13px;
  }

  .contact-form textarea {
    resize: vertical;
    min-height: 160px;
  }

  .contact-form input:focus,
  .contact-form select:focus,
  .contact-form textarea:focus {
    outline: none;
    border-color: #f0c36a;
    box-shadow: 0 0 0 3px rgba(240, 195, 106, 0.2);
  }

  .form-attention {
    margin-top: 4px;
    font-size: 12px;
    font-family: "klee one";
  }

  .form-submit {
    margin-top: 8px;
    text-align: center;
  }

  .btn-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 230px;
    padding: 12px 24px;
    border-radius: 999px;
    border: none;
    background-color: #BAF99D;
    font-family: "klee one";
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: transform .12s ease-out, box-shadow .12s ease-out, opacity .12s;
  }

  .btn-contact:hover {
    transform: translateY(-1px);
    box-shadow: 0 9px 20px rgba(0, 0, 0, 0.18);
    opacity: .96;
  }

  .btn-contact:active {
    transform: translateY(1px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.16);
  }

  .contact-header-inner {
    padding: 30px 24px;
  }

  .contact-main {
    margin-top: 48px;
    margin-bottom: 80px;
  }

  .contact-title {
    font-size: 28px;
  }

  .contact-section {
    padding: 28px 32px 32px;
  }

}