@charset "UTF-8";
/* ページ共通 */
:root {
  --white:#ffffff;
  --off-white:#FBF9ED;
  --light-gray:#a8a8a8;
  --medium-gray:#67635F;
  --grey:#4C4B4B;
  --dark-grey:#2e2e2e;
  --pink:#0000002d;
}
html {
    scroll-behavior: smooth;
}
body { 
    font-size: min(1.6vw, 20px);
    font-weight: 300;
    font-family: "Satoshi", "Noto Sans JP", sans-serif;  
    background-color: var(--off-white);  
    color: var(--medium-gray);                              
}

@keyframes slideInFromLeft {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
main {
    margin: 0 30px;
    animation: slideInFromLeft 1s cubic-bezier(0.4, 0, 0.2, 1);  
}
.img-wrap1 {
  /* イージングを標準的な ease-out に変更し、最終状態への到達を滑らかに */
  animation: img-wrap-fixed 2s ease-out forwards; 
}

@keyframes img-wrap-fixed {
  0% {
    clip-path: circle(0% at 60% 60%);
    -webkit-clip-path: circle(0% at 60% 60%);
    /* ハードウェアアクセラレーションを有効にし、ブラウザの描画を安定させる */
    transform: translateZ(0); 
  }

  /* 99.9%で最終状態に到達させ、100%で停止状態を保持することで、アニメーションの終了時のブレを防ぐ */
  99.9% { 
    clip-path: circle(100% at 60% 60%);
    -webkit-clip-path: circle(100% at 60% 60%);
    transform: translateZ(0); 
  }
    
  100% {
    clip-path: circle(100% at 60% 60%);
    -webkit-clip-path: circle(100% at 60% 60%);
    /* transformを最終状態のまま維持 */
    transform: none; 
  }
}
.img-wrap {
  overflow: hidden;
  position: relative;
}

.img-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--off-white);
  -webkit-mask-image: linear-gradient(to left, black 50%, transparent 100%);
  mask-image: linear-gradient(to left, black 50%, transparent 100%);
  mask-mode: alpha;
  z-index: 1;
  transform: translateX(0) translateY(0);
  opacity: 1;
  transition: none;
}

/* 表示時にアニメーションを付ける */
.img-wrap.visible::before {
  animation: displayImg 2s ease forwards;
}

@keyframes displayImg {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}

.content_inner {
    position: relative;
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    line-height: 1.8;
    z-index: 0;
}

/* Header */
header {
    position: relative;
    font-size: min(2vw, 30px);
    font-family: 'Satoshi', sans-serif; 
    z-index: 999999;
}
.menu_box.white-text,
.menu_box.white-text a {
  color: var(--grey);
}
.menu_box {
  width: 100%;
  font-size: clamp(14px, 2vw, 30px); 
  transition: color 0.3s ease;
  box-sizing: border-box; /* パディング込みで幅計算 */
  z-index: 999999;
}
.menu_box,
.menu_box a {
  color: var(--medium-gray);  
}
.menu {
  display: flex;
  /* justify-content: flex-end; */
  gap: clamp(10px, 2.5vw, 30px);
  font-size: inherit; /* 親に合わせる */
  white-space: nowrap; /* 改行防止 */
  font-weight: 300;
}
.menu_li {
  padding-top: 20px;
}
.contact {
  display:inline-block;
  margin-top: 8px;
  padding:6px min(6.6vw, 80px) 9px min(2vw, 25px); 
  line-height:1.6; border-radius:40px; 
  background-color:var(--pink); 
  backdrop-filter: blur(8px); /* 背景をぼかす */
  -webkit-backdrop-filter: blur(8px);
  font-family:Josefin+Sans,'MS PGothic';
  text-align: left;
}
.menu a:hover {
  color: var(--light-gray);

}
.contact:hover {
  color: var(--light-gray);
  background: var(--medium-gray);
}
 /* ハンバーガーメニュー //////////////////////////*/

/* =========================
   PC版（768px以上）
========================= */
@media screen and (min-width:768px) {

  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 40px;
    z-index: 1000;
  }

  header .site-title {
    display: flex;
    align-items: center;
    font-size: 1.4rem;
    font-weight: 600;
    color: #000;
  }

  header .site-title img {
    width: 40px;
    margin-right: 10px;
  }

  /* PCではハンバーガー非表示 */
  .menu-icon,
  .menu-btn,
  .instagram-icon,
  .home {
    display: none;
  }

  /* メニュー横並び */
  .menu_box {
    display: block;
    background: none;
    position: static;
    height: auto;
    max-width: none;
  }

  .menu {
    display: flex;
    gap: min(2.5vw, 30px);
  }

  .menu a {
    text-decoration: none;
    position: relative;
  }
}

/* =========================
   スマホ版（1000px以下）
========================= */
@media screen and (max-width: 1000px) {

  header {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 20px;
    padding: initial;
  }
  h1 {
    margin: 20px;
  }
  .logo {
    width: 30px;
  }
  .gMenu {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 99;
    width: auto;
  }

  .menu-btn {
    display: none;
  }

  /* ハンバーガーアイコン */
  .menu-icon {
    position: fixed;
    right: 15px;
    top: 15px;
    width: 50px;
    height: 50px;
    background: #0000004d;
    border-radius: 10px;
    cursor: pointer;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
  }

  .menu-icon:hover {
    background: var(--dark-grey);
  }

  /* インスタアイコンボタン */
  .instagram-icon {
    position: fixed;
    right: 15px;
    top: 75px; /* ハンバーガーの下（15px + 50px + 10px間隔） */
    width: 50px;
    height: 50px;
    background-color: #0000004d;
    border-radius: 10px;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
    text-decoration: none;
  }

  .instagram-icon:hover {
    background: var(--dark-grey);
  }

  .instagram-icon img {
    width: 30px; /* アイコンサイズ調整 */
    height: 30px;
    object-fit: contain;
  }

  .nav_icon {
    display: block;
    width: 25px;
    height: 1px;
    background: var(--white);
    position: relative;
    transition: all 0.3s ease;
  }

  .nav_icon::before,
  .nav_icon::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--white);
    transition: all 0.3s ease;
    left: 0;
  }

  .nav_icon::before {
    top: -8px;
  }

  .nav_icon::after {
    top: 8px;
  }

  /* メニュー初期は非表示 */
  .menu_box {
    position: fixed;
    top: 0;
    right: -60%;
    background: #222222;
    width: 60%;
    height: 100vh;
    overflow-y: auto;
    transition: right 0.6s ease;
    display: block !important;
    z-index: 98;
    padding: 80px 20px 20px;
    box-sizing: border-box;
  }

  .menu {
    display: block;
    padding: 0;
    margin: 50px 0 0 0;
  }

  .menu_li {
    padding: 10px 0;
  }

  .menu a {
    display: block;
    color: var(--white);
    text-decoration: none;
    font-size: 25px;
    font-weight: 400;
    padding: 10px;
    transition: background 0.3s;
  }

  .menu a:hover {
    color: var(--light-gray);
  }

  /* チェックONで展開 */
  .menu-btn:checked ~ .menu_box {
    right: 0;
  }

  /* チェックONでXに変化 */
  .menu-btn:checked ~ .menu-icon {
    background: var(--dark-grey);
  }

  .menu-btn:checked ~ .menu-icon .nav_icon {
    background: transparent;
  }

  .menu-btn:checked ~ .menu-icon .nav_icon::before {
    transform: rotate(-45deg);
    top: 0;
  }

  .menu-btn:checked ~ .menu-icon .nav_icon::after {
    transform: rotate(45deg);
    top: 0;
  }

  .contact {
    background-color: initial;
  }
}

/* 　スライダー 　*/
.main_slider {
  list-style: none;
  margin: 150px auto 0;
  padding: 0;
  position: relative;
  width: 100%;
  max-width: 1200px;
  height: 400px;
  overflow: hidden;
  z-index: 10;
}

.main_slider li {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 3s ease;
  z-index: 0;
}

/* 画像のスタイルを明示的に指定 */
.main_slider li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block; /* 余白を削除 */
}

.main_slider li.active {
  opacity: 1;
  z-index: 1;
  transition-delay: 0.2s;
}

/* 最初のスライドだけアニメーション */
.main_slider li:first-child img {
  animation: img-wrap-fixed 2s ease-out forwards;
}

@keyframes img-wrap-fixed {
  0% {
    clip-path: circle(0% at 60% 60%);
  }
  100% {
    clip-path: circle(100% at 60% 60%);
  }
}

/* 　静止TOP画像  */
.about_box {
    max-width: 1200px;
    height: 400px;
    margin: min(12vw, 150px) auto 50px;
}
.about_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.logo {
    width: 40px; 
    margin-right: 10px;
}
h1 {
    font-size: min(2.5vw, 30px);
    font-weight: 300;
}
h2 {
    font-size: min(8.3vw, 100px);
    font-weight: 300;
    line-height: 1;
}
h3 {
    font-size: 30px;
}
h4 {
    font-size: 25px;
    margin: 50px 0;
    line-height: 1.1;
}
.fade-in {
    opacity: 0;                /* 初期は透明 */
    transform: translateY(20px); /* 下から少し浮かせる */
    transition: opacity 1s ease, transform 1s ease;
}
.fade-in.visible {
    opacity: 1;                /* 表示時は不透明 */
    transform: translateY(0);  /* 元の位置に戻す */
}
/* フェード用 */
.img-fade {
  /* opacityのtransition時間 (0.2sに短縮を推奨) */
  transition: opacity 0.2s ease-in-out;
}
.img-fade.fade-out {
  opacity: 0;
  /* 完全に非表示にして、切り替え時のズレを防ぐ */
}
table {
  margin: 30px 0px 30px 20px;
}
th {
    padding-right:  50px;
    white-space: nowrap; 
}
td {
  line-height: 1.5;
  white-space: nowrap; 
}
.mb50 {
    margin-bottom: 50px;
}

/* 　下部パンくずリスト　 */
.nav {
    max-width: 1200px;
    margin: 20px auto;
    text-align: right;
}

a:hover {
    opacity: 0.7;
}
.margin {
    height: min(8.3vw, 100px);
}
@media (max-width: 1000px) {
body {
    font-size: 16px;
}
.logo {
    width: 30px;
}

h1 {
    font-size: 20px;
    margin: 20px;
    padding: initial;
}
h4 {
  font-size: 20px;
  margin: 15px 0;
}
.about_box {
  margin: clamp(65px, 8vw, 100px) 0 40px;
}
.main_slider {
  margin: 65px 0 min(3vw, 40px);
}
.nav {
  text-align: center;
}
.m20 {
  margin: 0 20px 100px;
}
.ml60 {
  margin-left: clamp(40px, 10vw, 200px);
}
.ml65 {
  margin-left: clamp(65px, 15vw, 110px);
}
.mb50 {
    margin-bottom: 25px;
}
.case01_list li.active::after {
    opacity: 1;
  }
}
@media (max-width: 450px) {
.nav1 {
  text-align: start;
  margin-bottom: 50px;
}
.nav1 a {
  display: block;
  width: 56px;
  margin: 20px;
  border-bottom: 1px solid var(--grey);
}
.nav1 span {
  display: none;
}
}
/* Case */
.text {
  margin: 40px 0;
  padding: 0 15px;
  font-size: 18px;
  line-height: 1.6;
  border-left: 1px solid #3333;
}
.text1 {
  display: none;
}
.instagram {
    width: min(2.5vw, 30px);
}
.image_list {

  max-width: 1200px;
  margin: 30px 0;
  align-items: center;
}
.case01_list,
.case_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; /* 左右にスペース */
  margin: 0;
  padding: 0;
  list-style: none;
}
.case01_list li {
  position: relative;
  width: calc(50% - 20px); /* 2つ並べる + margin を考慮 */
  margin-bottom: 40px; /* 行間 */
}
.case_list li {
  position: relative;
  width: calc(33.3333% - 20px); /* 3つ並べる + margin を考慮 */
  margin-bottom: 40px; /* 行間 */
}
.case01_list li::after {
  content: "";
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: url("../image/tap0.png") no-repeat center/contain;
  animation: poyoyon 3s ease-out infinite;
}
@keyframes poyoyon {
  0% {
    opacity: 0.9;
    transform: scale(0.8);
  }
  10% {
    opacity: 1;
    transform: scale(1.3);
  }
  20% {
    opacity: 0.8;
    transform: scale(0.95);
  }
  30% {
    opacity: 0.6;
    transform: scale(1.15);
  }
  40% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 0.2;
    transform: scale(1.05);
  }
  100% {
    opacity: 0;
    transform: scale(1.2);
  }
}
.case01_list li img {
  display: block;
  width: 100%; /* li の幅に合わせて伸縮 */
  transition: transform 0.7s ease;
}
.case_list li img {
  display: block;
  width: 100%; /* li の幅に合わせて伸縮 */
  transition: transform 0.7s ease;
}
.nav_container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}
.view_all {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 60px;
  color: var(--medium-gray);
  border: 1px solid var(--medium-gray);
  border-radius: 30px;
  overflow: hidden;
  text-decoration: none;
  transition: color .3s cubic-bezier(.39, .575, .565, 1),
  border-color .3s cubic-bezier(.39, .575, .565, 1);
  z-index: 0;
}
.view_all::before {
  content: "View All";
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--off-white);
  top: 0;
  left: 0;
  width: 100%;
  height: 101%;
  border-radius: 28px;
  background-color: var(--medium-gray); /* 反転時の背景色 */
  opacity: 0;
  transform: scale(.9); /* 最初は少し小さい */
  transition-duration: .3s;
  transition-property: opacity, transform;
  transition-timing-function: cubic-bezier(.39, .575, .565, 1);
  z-index: -1; /* 背景の下に */
}

/* ホバー時：背景がふわっと拡大して出る */
.view_all:hover::before {
  opacity: 1;
  transform: scale(1);
}
.view_all:hover {
  color: var(--off-white);
}
.left,
.right{
  display: inline-block;
  width: 100px;
  height: 60px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: none;
}
/* ボタン */
.left {
  background-image: url("../image/left.png");
}
.right {
  background-image: url("../image/right.png");
}
.left:hover {
  background-image: url("../image/left1.png");
  transition: opacity 1s ease;
}
.right:hover {
  background-image: url("../image/right1.png");
  transition: opacity 1s ease;
}
/* 　施工前画像ホバー動作　　*/

.case01_list li img {
  cursor: pointer;
  transition: opacity 0.3s ease;
}
@media (max-width: 768px) {
  main {
  margin: 0;
}
  .case {
    font-size: 70px;
  }
  h2 {
    font-size: 55px;
  }
  h3 {
    font-size: 22px;
    margin: 0 10px;
  }
  table {
    width: 100%;
    margin: 30px 0px;
  }
  .text {
    display: none;
  }
  .text1 {
    display: block;
    margin: 0 15px 50px;
    line-height: 1.6;
  }
  .case_list p {
    margin: 0 10px;
    line-height: 1.3;
  }
  .image_list {
  display: block;
  justify-content: initial;
  margin: 30px 15px;
}
  .case01_list li {
  width: calc(50% - 5px); /* 2つ並べる + margin を考慮 */
  margin-bottom: 10px; /* 行間 */
}
  .case_list li {
  width: calc(50% - 5px); /* 2つ並べる + margin を考慮 */
  margin-bottom: 10px; /* 行間 */
}
.case01_list li::after {
  bottom: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  /* background: url("../image/tap1_1.png") no-repeat center/contain; */
}
th {
  padding-right: initial;
  padding-right: 20px;
}
.instagram {
  width: min(5vw, 20px);
}
.nav_container {
  display: block;
}
.btn_container {
  display: flex;
  justify-content: space-between;
  margin: 0px 20px 60px;
}
.view_all {
  margin-right: 25px;
}
.left,
.right {
  display: block;
}
.nav1 {
  display: none;
}
}

/* 　Processページフロー図　  */
.process {
  max-width: 1200px;
  margin: 0 auto;
}
.process_inner {
  max-width: 800px;
  margin: 0 auto;
}
.process_list {
    margin: 30px 0 150px;
}
.process_list li {
    display: flex;
    font-size: 18px;
}
.process_list li img {
    display: block;
  /* width: 100%; li の幅に合わせて伸縮 */
}
.number {
    width: 110px;
    margin-right: 50px; 
}
.icon {
    width: 200px;
    margin-left: 20px;
}
.icon_wrapper {
    display: flex;
    align-items: center;
}
.right_space {
    display: flex;
    width: 500px;
}
.span {
  font-size: 14px;
}
.button {
  width: 180px;
  margin: 30px 0 0;
}
.flex {
  display: flex;
  margin: auto 0;
}
/*　 FAQ   */

.faq {
    color: var(--medium-gray);
}
.qa {
    margin: 0 20px;
    font-size: 25px;
    font-weight: 300;
}
.faq_question {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 10px 15px;
    transition: color 0.3s ease;
    background-color: var(--medium-gray);
    border-radius: 8px;
    color: var(--off-white);
}
.faq_question:hover {
    background-color: var(--grey);
}
.pt3 {
  padding-top: 3px;
}
/* 矢印マーク */
.arrow {
    width: 0;
    height: 0;
    margin-left: auto;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 8px solid var(--off-white);
    transition: transform 0.3s ease;
    transform: rotate(0deg);
}

/* 回答 */
.faq_answer {
    display: flex;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s ease;
    padding: 10px 15px;
    color: var(--medium-gray);
    line-height: 1.6;
    border: 1px solid var(--medium-gray);
    border-radius: 8px;
}

/* 開いた状態 */
.faq_question:hover,
.faq_item.active .faq_question {
    background-color: var(--grey); 
}
.faq_item.active .faq_answer {
    max-height: 500px; /* 十分な高さに設定 */
    margin-bottom: 10px;
    opacity: 1;
}
.faq_item.active .arrow {
    transform: rotate(90deg);
}

@media (max-width: 768px) {
.process {
    margin: 0 20px;
}
.process_list {
    margin-bottom: 50px;
}
.process_list li {
    justify-content: center;
    font-size: 13px;
}
.number {
    width: 70px;
    margin: 0 clamp(0px, calc((100vw - 500px) / 1), 100px) 0 0;

}
.icon {
  width: 130px;
  margin: 0 auto;
}
.span {
  font-size: 10px;
}
.button_wrapper {
  text-align: center; /* 子要素を中央揃え */
}
.button {
  width: 140px;
  margin: 20px 0;
}

.flex {
  flex-direction: column-reverse;
  max-width: 300px;
  align-items: center;
}
.faq {
  font-size: 14px;
  margin-bottom: 20px;
}
.faq_question,
.faq_answer  {
  padding: 5px 10px;
}
.faq_question p {
  padding-right: 5px;
}
.pt3 {
  padding: 3px 0;
}
.qa {
  margin: 0 10px 0 5px;
  font-size: 20px;
}
.arrow {
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 5px solid var(--off-white);
}
}

/* フォーム */
form {
  margin-bottom: 100px;
}
form p {
  margin-bottom: 20px;
}
.contact_span {
  font-size: 30px;
  color: var(--medium-gray);
  margin-left: 5px;
  border-radius: 5px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group2 {
  margin-bottom: 60px;
}
form input[type="text"],
form input[type="email"],
form input[type="tel"] {
  width: 100%;
  max-width: 500px;     /* 好きに調整可 */
  margin-bottom: 20px;
  padding: 10px 12px;
  font-size: 20px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: #fff;
  box-sizing: border-box;
}
form textarea {
  width: 100%;
  max-width: 800px;     /* 好きに調整可 */
  height: 200px;
  padding: 10px 12px;
  font-size: 20px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: #fff;
  box-sizing: border-box;
}
form label {
  display: block;
}
.label-title {
  font-size: 25px;
}
.label-title2 {
  display: inline-flex;  /* inline-flex に変更 */
  align-items: center;   /* 中央揃え */
  gap: 10px;  
  font-size: 25px;
  margin-bottom: 30px;
}
.custom-radio {
  display: flex;
  align-items: center;
  cursor: pointer;
  margin-right: 14px;
  margin-bottom: 35px;
}
.custom-radio input {
  appearance: none;
  width: 24px;
  height: 24px;
  border: 2px solid #aaa;
  border-radius: 50%;
  margin-right: 20px;
  position: relative;
  box-sizing: border-box;
}
.custom-radio input:checked {
  border-color: var(--medium-gray);
}
.custom-radio input:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 15px;
  background: var(--medium-gray);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
/* チェックボックス全体 */
.custom-checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
  margin-right: 14px;
  margin-bottom: 35px;
}
/* 見た目の箱部分 */
.custom-checkbox input {
  appearance: none;
  width: 24px;
  height: 24px;
  border: 2px solid #aaa;
  border-radius: 4px; /* 四角形なので4px */
  margin-right: 20px;
  position: relative;
}
/* チェックされた時の枠色 */
.custom-checkbox input:checked {
  border-color: var(--medium-gray);
}
/* チェックマーク表示 */
.custom-checkbox input:checked::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 8px;
  width: 8px;
  height: 14px;
  border-right: 2px solid var(--medium-gray);
  border-bottom: 2px solid var(--medium-gray);
  transform: rotate(45deg);
}
/* .file-upload-wrapper {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
} */
/* ボタン風デザイン */
/* .file-upload-label {
  background: var(--medium-gray);
  color: var(--off-white);
  padding: 20px 35px;
  border-radius: 6px;
  cursor: pointer;
  display: inline-block;
  font-size: 16px;
  transition: 0.3s;
} */
/* ホバー時 */
/* .file-upload-label:hover {
  background: var(--dark-grey);
} */
/* 元の input は完全非表示 */
/* .file-upload-input {
  display: none;
} */
/* 選択されたファイル名 */
/* .file-name {
  font-size: 16px;
  color: var(--medium-gray);
  word-break: break-all;
} */
.form-submit-btn {
  display: inline-block;
  background: var(--medium-gray);
  color: var(--off-white);
  padding: 20px 40px;
  font-size: 18px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}
.form-submit-btn:hover {
  background: var(--dark-grey);
  color: var(--off-white);
}
.form-submit-btn:active {
  transform: scale(0.97);
}
.error {
  border: 1px solid #e74c3c !important;
}
.error-message {
  font-size: 15px !important;
  color: #e74c3c !important;
  margin-top: 4px;
}
@media (max-width: 768px) {
  .label-title,
  .label-title2 {
    font-size: 20px;
  }
}