/* ========================================
   Lynova LP Stylesheet
   ======================================== */

/* Reset & Common */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ========================================
   Page Container
   ======================================== */

.page-container {
  width: 100%;
  overflow-x: visible;
}

@media (max-width: 768px) {
  .page-container {
    overflow-x: visible;
  }
}

/* ========================================
   Hero Section
   ======================================== */

.hero-section {
  position: relative;
  background: linear-gradient(135deg, rgb(255, 239, 244) 0%, rgb(255, 211, 225) 100%);
  padding: 80px 20px 100px;
  z-index: 0;
  overflow: hidden;
}

.hero-section::before {
  content: none;
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 20px,
    rgba(255, 255, 255, 0.3) 20px,
    rgba(255, 255, 255, 0.3) 40px
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
}

.hero-bg-texture {
  position: absolute;   
  inset: 0;
  z-index: -2;      
  pointer-events: none;
}

.hero-bg-texture img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  opacity: 0.1;     
  display: block;
}

.hero-overlay-picture,
.hero-overlay-picture-2 {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.hero-overlay-picture {
  top: 0;
  left: 0;
}

.hero-overlay-picture-2 {
  bottom: 0;
  right: 0;
}

.hero-overlay-picture img,
.hero-overlay-picture-2 img {
  width: 320px;
  height: auto;
  display: block;
}

.hero-overlay-picture-2 img {
  transform: scale(-1, -1);
}

.hero-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  text-align: center;
}

.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo {
  max-width: 700px;
  height: auto;
}

.feature-tag {
  background: #A71365;
  color: white;
  padding: 12px 24px;
  font-size: 24px;
  font-weight: 500;
  max-width: fit-content;
  margin: 10px 0;
  white-space: nowrap; 
}

.hero-image {
  width: 100%;
  max-width: 800px;
  height: auto;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 40px 20px 60px;
  }

  .hero-overlay-picture img,
  .hero-overlay-picture-2 img {
    width: 180px;
  }

  .hero-content {
    flex-direction: column;
    gap: 30px;
  }

  .logo {
    max-width: 300px;
  }

  .feature-tag {
    font-size: 14px;
    padding: 10px 20px;
    margin: 10px auto;
  }

  .hero-image {
    max-width: 360px;
  }
}

/* ========================================
   About Section
   ======================================== */

.about-section {
  background: white;
  padding: 120px 20px;
  overflow: hidden;
}

.about-content {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section-title {
  font-size: 40px;
  font-weight: 800;
  color: #4B4B4B;
  text-align: center;
  margin: 0 0 64px;
  line-height: 1.6;
}

.section-title .brand {
  font-size: 40px;
  color: #C7257F;
}

.sp-line {
  display: inline;
}

.button-group {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
}

.feature-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  flex: 1 1 0;                          
  width: 100%;
  max-width: clamp(280px, 38vw, 520px);  
  min-width: 0;
}

.description-button {
  position: relative;
  background: #A71365;
  color: white;
  padding: 20px 40px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  width: 100%;          
  min-height: 90px;
  line-height: 1.6;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.description-button::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 12px solid #A71365;
}

.mobile-feature-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  width: 100%;
}

.features-grid {
  display: none;
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 100%;
}

.feature-image-wrapper {
  width: 100%;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-image {
  width: 100%;
  max-width: 80%;
  height: auto;
  display: block;
}

.feature-description {
  font-size: 16px;
  line-height: 1.8;
  color: #4B4B4B;
  margin: 0;
  text-align: left;
  width: 100%;
  max-width: 100%;
}

.divider {
  font-size: 48px;
  color: #A71365;
  font-weight: 700;
  align-self: center;
}

@media (max-width: 768px) {
  .about-section {
    padding: 60px 20px;
  }

  .section-title {
    font-size: 28px;
    margin: 0 0 40px;
  }

  .feature-image-wrapper {
    height: auto;     
  }

  .feature-group,
  .mobile-feature-content {
    gap: 24px;        
  }

  .sp-line {
    display: block;
  }

  .section-title .brand {
    font-size: 28px;
  }

  .button-group {
    flex-direction: column;
    gap: 60px;
  }

  .feature-group {
    gap: 24px;
    max-width: none;   
    width: 100%;
  }

  .description-button {
    width: 95%;
    padding: 18px 30px;
    font-size: 14px;
    min-height: auto;
  }

  .mobile-feature-content {
    gap: 5px;
  }

  .feature-description {
    font-size: 14px;
    text-align: left;
    max-width: 90%;
  }

  .divider {
    display: none;
  }
}


/* ========================================
   Points Section
   ======================================== */

.points-section {
  background: #ffeff5;
  padding: 120px 20px;
  position: relative;
  overflow: hidden;
}

.points-section::before {
  content: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 20px,
    rgba(255, 255, 255, 0.3) 20px,
    rgba(255, 255, 255, 0.3) 40px
  );
  pointer-events: none;
}

.points-overlay-picture,
.points-overlay-picture-2 {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.points-overlay-picture {
  top: 0;
  left: 0;
}

.points-overlay-picture-2 {
  bottom: 0;
  right: 0;
}

.points-overlay-picture img,
.points-overlay-picture-2 img {
  width: 320px;
  height: auto;
  display: block;
}

.points-overlay-picture-2 img {
  transform: scale(-1, -1);
}

.points-content {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.points-title {
  font-size: 40px;
  font-weight: 800;
  text-align: center;
  margin: 0 0 50px;
  line-height: 1.1;
  color: #4B4B4B;
}

.points-title .brand {
  font-size: 36px;
  color: #C7257F;
}

.points-title .sub {
  font-size: 56px;
  color: #C7257F;
}

.points-grid {
  display:flex;
  gap:30px;
  justify-content:center;
  align-items:flex-start;
}

.point-image {
  flex: 1 1 0;                
  width: 100%;
  height: auto;
  max-width: clamp(200px, 25vw, 400px); 
  min-width: 0;                
  display:block;
}

@media (max-width: 768px) {
  .points-section {
    padding: 60px 20px;
  }

  .points-overlay-picture img,
  .points-overlay-picture-2 img {
    width: 180px;
  }

  .points-title {
    font-size: 28px;
    margin: 0 0 40px;
    line-height: 1.0;
  }

  .points-title .brand {
    font-size: 24px;
  }

  .points-title .sub {
    font-size: 40px;
  }

  .points-grid {
    flex-direction: column;
    gap: 40px;
  }

    .point-image{
    max-width: none;  
    width: 100%;      
  }
}

/* ========================================
   Value Section
   ======================================== */

.value-section {
  background: white;
  padding: 120px 20px;
}

.value-content {
  max-width: 1400px;
  margin: 0 auto;
}

.value-title {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 16px;
  line-height: 1.6;
  color: #4B4B4B;
}

.value-title .brand {
  font-size: 40px;
  color: #C7257F;
}

.highlight-text {
  background: linear-gradient(transparent 60%, #ffeb3b 60%);
  font-weight: 700;
}

.value-subtitle {
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  margin: 0 0 60px;
  line-height: 1.6;
  color: #4B4B4B;
}

.value-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: flex-start;
}

.value-card-image {
  flex: 1 1 0; 
  width: 100%;
  height: auto;
  max-width: clamp(260px, 30vw, 560px);
  min-width: 0;
  display: block;
}

@media (max-width: 768px) {
  .value-section {
    padding: 60px 20px;
  }

  .value-title {
    font-size: 28px;
    margin: 0 0 16px;
  }

  .value-title .brand {
    font-size: 28px;
  }

  .value-subtitle {
    font-size: 14px;
    margin: 0 0 40px;
  }

  .value-grid {
    flex-direction: column;
    gap: 40px;
  }

  .value-card-image {
    max-width: none; 
    width: 100%;    
  }

}

/* ========================================
   Actions Section
   ======================================== */

.actions-section {
  background: #ffeff5;
  padding: 120px 20px;
  position: relative;
  overflow: hidden;
}

.actions-section::before {
  content: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 20px,
    rgba(255, 255, 255, 0.3) 20px,
    rgba(255, 255, 255, 0.3) 40px
  );
  pointer-events: none;
}

.actions-overlay-picture,
.actions-overlay-picture-2 {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.actions-overlay-picture {
  top: 0;
  left: 0;
}

.actions-overlay-picture-2 {
  bottom: 0;
  right: 0;
}

.actions-overlay-picture img,
.actions-overlay-picture-2 img {
  width: 320px;
  height: auto;
  display: block;
}

.actions-overlay-picture-2 img {
  transform: scale(-1, -1);
}

.actions-content {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.actions-title {
  font-size: 40px;
  font-weight: 800;
  text-align: center;
  margin: 0 0 20px;
  line-height: 1.6;
  color: #4B4B4B;
}

.actions-title .brand {
  font-size: 40px;
  color: #C7257F;
}

.sp-only { 
  display: none; 
}

.actions-subtitle {
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  margin: 0 0 60px;
  line-height: 1.6;
  color: #4B4B4B;
}

.category-grid {
  display: flex;
  gap: clamp(12px, 2vw, 24px);
  justify-content: center;
  align-items: stretch;

  width: min(1150px, calc(100% - 24px)); 
  margin-inline: auto;

  padding: clamp(12px, 2vw, 24px);      
  margin-bottom: clamp(24px, 5vw, 60px);
  box-sizing: border-box;
}

.category-left {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
}

.category-right {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.category-image-wrapper {
  display: flex;
  align-items: flex-start;
}

.category-image {
  width: 100%;
  height: auto;
}

.toggle-button-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 40px;
}

.toggle-button {
  min-width: 200px;
  padding: 20px 50px;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #e0e0e0;
  border-radius: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  box-shadow: none;
}

.toggle-button.active {
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.toggle-button:hover {
  opacity: 0.9;
  background-image: none;
  background: white;
}

.toggle-button-label {
  font-size: 14px;
  color: #999;
  font-weight: 600;
}

.toggle-button.active .toggle-button-label {
  color: #A71365;
}

.toggle-button-title {
  font-size: 20px;
  color: #999;
  font-weight: 700;
}

.toggle-button.active .toggle-button-title {
  color: #4B4B4B;
}

.flow-container {
  background: white;
  border-radius: 12px;
  padding: clamp(16px, 3vw, 40px) clamp(12px, 2.5vw, 30px);
  margin-bottom: clamp(24px, 5vw, 60px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  max-width: 1300px;
  margin-inline: auto;
}

.flow-container { 
  display: none; 
}

.flow-container.is-active { 
  display: block; 
}

.flow-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;         

  align-items: flex-end;  
}

.flow-item {
  display: flex;
  padding: 20px 0;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;

  flex: 0 0 auto;
  width: clamp(200px, 12vw, 300px); 
}

.flow-image{
  width: 100%;
  height: auto;
  max-width: 100%; 
  display: block;
}

.flow-arrow{
  font-size: 40px;
  color: #9c9c9cff;
  font-weight: 300;
  line-height: 1;
  margin: 0;

  align-self: center;              
  display:flex;
  align-items:center;
  justify-content:center;
  height: clamp(80px, 10vw, 140px); 
}

.subsection-title {
  position: relative;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin: 0 auto 50px;
  line-height: 1.6;
  color: white;
  background: #A71365;
  padding: 20px 90px;
  border-radius: 100px;
  max-width: fit-content;
}

.subsection-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 12px solid #A71365;
}

.form-grid {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-bottom: 80px;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

.form-card {
  background: white;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  flex: 1;
  max-width: 635px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-card-title {
  font-size: 24px;
  font-weight: 700;
  color: #A71365;
  margin: 0;
  text-align: center;
}

.form-card-description {
  font-size: 16px;
  line-height: 1.8;
  color: #4B4B4B;
  margin: 0 auto;
  text-align: left;
  width: 90%;
  margin: 0 auto;
}

.form-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.implement-container {
  background: white;
  border-radius: 12px;
  padding: 30px 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

.implement-grid {
  display: flex;
  padding: 20px 0px;
  gap: 30px;
  justify-content: center;
  align-items: flex-start;
}

.implement-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.implement-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.implement-arrow {
  font-size: 40px;
  color: #9c9c9cff;
  font-weight: 300;
  align-self: center;
  margin-top: 80px;
}

@media (max-width: 900px){
  .flow-grid{
    flex-direction: column;
    align-items: center;
    flex-wrap: nowrap;
  }

  .flow-item{
    width: 100%;
    max-width: 520px;     
  }

  .flow-image{
    max-width: none;      
    width: 100%;
  }

 
  .flow-item .flow-arrow{
    position: static;
    transform: rotate(90deg);
    margin-top: 10px;
  }
}

@media (max-width: 768px) {
  .actions-section {
    padding: 60px 20px;
  }

  .actions-overlay-picture img,
  .actions-overlay-picture-2 img {
    width: 180px;
  }

  .actions-title {
    font-size: 28px;
    margin: 0 0 16px;
  }

  .actions-title .brand {
    font-size: 28px;
  }

  .actions-sp-only { 
    display: inline; 
  }  

  .actions-subtitle {
    font-size: 14px;
    margin: 0 0 40px;
  }

  .category-grid {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
  }

  .category-right {
    justify-content: flex-start;
    gap: 20px;
  }

  .toggle-button-group {
    gap: 15px;
  }

  .toggle-button {
    min-width: 160px;
    padding: 16px 30px;
  }

  .toggle-button-title {
    font-size: 18px;
  }

  .flow-container {
    padding: 30px 15px;
    margin-bottom: 40px;
  }

  .flow-grid {
    flex-direction: column;
    gap: 1px;
    align-items: center;
  }

  .flow-item {
    padding: 20px 0;
  }

  .flow-image {
    max-width: 280px;
  }

  .flow-arrow {
    margin: 0;
    line-height: 1;
    transform: rotate(90deg);
    font-size: 40px;
  }

  .subsection-title {
    font-size: 16px;
    padding: 16px 40px;
    margin: 0 auto 40px;
  }

  .form-grid {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 60px;
  }

  .form-card {
    max-width: 100%;
  }

  .form-card-description {
    font-size: 14px;
    width: 95%;
  }

  .implement-container {
    padding: 20px;
  }

  .implement-grid {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }

  .implement-section {
    max-width: 100%;
  }

  .implement-arrow {
    margin: 0;
    list-style: 1;
    transform: rotate(90deg);
    font-size: 40px;
  }
}

/* ========================================
   Improvement Section
   ======================================== */
   
.improvement-section {
  background: white;
  padding: 120px 20px;
}

.improvement-content {
  max-width: 1300px;
  margin: 0 auto;
}

.improvement-title {
  font-size: 40px;
  font-weight: 800;
  text-align: center;
  margin: 0 0 20px;
  line-height: 1.6;
  color: #4B4B4B;
}

.improvement-title .brand {
  font-size: 36px;
  color: #C7257F;
}

.improvement-description {
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  margin: 0 0 60px;
  line-height: 1.8;
  color: #4B4B4B;
}

.improvement-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 80px;
}

.improvement-image-desktop {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 80px;
}

.improvement-image-mobile {
  display: none;
}

.improvement-image-scroll {
  display: none;
}

.improvement-subtitle {
  font-size: 40px;
  font-weight: 500;
  text-align: center;
  margin: 0 0 20px;
  line-height: 1.6;
  color: #4B4B4B;
}

.improvement-subtitle .brand {
  font-size: 36px;
  color: #C7257F;
}

.improvement-sub-description {
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  margin: 0 0 40px;
  line-height: 1.8;
  color: #4B4B4B;
}

@media (max-width: 768px) {
  .improvement-section {
    padding: 60px 20px;
    overflow-x: visible;
  }

  .improvement-title {
    font-size: 28px;
    margin: 0 0 16px;
  }

  .improvement-title .brand {
    font-size: 28px;
  }

  .improvement-description {
    font-size: 14px;
    margin: 0 0 40px;
  }

  .improvement-image {
    display: none;
    margin: 0;
  }

  .improvement-image-desktop {
    display: none;
    margin: 0;
  }

  .improvement-image-mobile {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 0 auto 60px;
  }

  .improvement-image-mobile-item {
    max-width: 100%;
    height: auto;
    display: block;
  }

  .improvement-image-scroll {
    display: flex;
    flex-direction: row;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap;
    width: 100%;
    margin: 0;
    padding: 0 20px 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .improvement-image-scroll-item {
    display: block;
    height: auto;
    border-radius: 0px;
    width: 100%;
    min-width: 200%;
    flex: 0 0 200%;
    scroll-snap-align: start;
  }

  .improvement-subtitle {
    font-size: 28px;
    margin: 0 0 16px;
  }

  .improvement-subtitle .brand {
    font-size: 28px;
  }

  .improvement-sub-description {
    font-size: 14px;
    margin: 0 0 30px;
  }
}




/* ========================================
   Pricing Section
   ======================================== */

.pricing-section {
  position: relative;
  background: #ffeff5;
  padding: 80px 20px 160px;
  overflow: hidden;
}

.pricing-section::before {
  content: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 20px,
    rgba(255, 255, 255, 0.3) 20px,
    rgba(255, 255, 255, 0.3) 40px
  );
  pointer-events: none;
}

.pricing-overlay-picture,
.pricing-overlay-picture-2 {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.pricing-overlay-picture {
  top: 0;
  left: 0;
}

.pricing-overlay-picture-2 {
  bottom: 0;
  right: 0;
}

.pricing-overlay-picture img,
.pricing-overlay-picture-2 img {
  width: 320px;
  height: auto;
  display: block;
}

.pricing-overlay-picture-2 img {
  transform: scale(-1, -1);
}

.pricing-content {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.pricing-title {
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 60px;
  line-height: 1.4;
  color: #4B4B4B;
}

.pricing-title .brand {
  font-size: 36px;
  color: #C7257F;
}

.pricing-images {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

.pricing-image {
  width: 100%;   
  max-width: 1000px;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .pricing-section {
    padding: 60px 20px;
  }

  .pricing-overlay-picture img,
  .pricing-overlay-picture-2 img {
    width: 180px;
  }

  .pricing-title {
    font-size: 28px;
    margin: 0 0 40px;
  }

  .pricing-title .brand {
    font-size: 24px;
  }
}



/* ========================================
   form Section
   ======================================== */

.from-section {
  position: relative;
  padding: 80px 0 40px;
  overflow: hidden;
}

.from-title {
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  margin: 0;
  line-height: 1.4;
  color: #4B4B4B;
}

@media (max-width: 768px) {
  .from-title {  
    font-size: 28px;
    margin: 0 0 40px;
  }

  .from-section {
  position: relative;
  padding: 60px 0 0px;
  overflow: hidden;
}
}

.landing_pg.line_page .dnd-section:has(form.hs-form){
  padding-top: 0 !important;   
  margin-top: 0 !important;
}

.landing_pg.line_page form.hs-form.lp-form{
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.landing_pg.line_page h3.form-title.hs_cos_wrapper{
  display: block !important;
  width: 100% !important;
  font-size: 40px !important;
  text-align: center !important;
  margin: 0 auto 60px !important;
}

.landing_pg.line_page form.hs-form.lp-form .hs-form-field{
  margin-bottom: 16px;
  width: 100% !important;
  max-width: 100% !important;
  float: none !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.landing_pg.line_page form.hs-form.lp-form label{
  display: inline-block;
  margin-bottom: 4px;
  font-size: 16px;
  font-weight: 600;
  color: #111827;
}

.landing_pg.line_page form.hs-form.lp-form input.hs-input,
.landing_pg.line_page form.hs-form.lp-form select.hs-input,
.landing_pg.line_page form.hs-form.lp-form textarea.hs-input{
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  padding: 14px 16px;
  font-size: 16px;
  border: 1px solid #D1D5DB;
  background: #fff;
  color: #111827;
}

.landing_pg.line_page form.hs-form.lp-form input.hs-input:focus,
.landing_pg.line_page form.hs-form.lp-form select.hs-input:focus,
.landing_pg.line_page form.hs-form.lp-form textarea.hs-input:focus{
  border: 1px solid #111827;
  box-shadow: 0 0 0 3px rgba(17,24,39,0.15);
  outline: none;
}

.landing_pg.line_page form.hs-form.lp-form .hs_firstname,
.landing_pg.line_page form.hs-form.lp-form .hs_lastname{
  width: calc(50% - 8px) !important;
  display: inline-block !important;
  vertical-align: top;
}
.landing_pg.line_page form.hs-form.lp-form .hs_firstname{
  margin-right: 16px !important;
}

.landing_pg.line_page form.hs-form.lp-form .lp-badge{
  display: inline-block;
  margin-left: 8px;
  padding: 3px 6px;
  border-radius: 10px;
  vertical-align: middle;
  font-size: 10px !important;
  line-height: 1.2 !important;
  font-weight: 500 !important;
}
.landing_pg.line_page form.hs-form.lp-form .lp-badge.is-required{
  background: #cd4954;
  color: #fff;
}
.landing_pg.line_page form.hs-form.lp-form .lp-badge.is-optional{
  background: #9CA3AF;
  color: #fff;
}

.landing_pg.line_page form.hs-form.lp-form .hs-form-required,
.landing_pg.line_page form.hs-form.lp-form abbr[title="required"],
.landing_pg.line_page form.hs-form.lp-form abbr[title="Required"]{
  display: none !important;
}

/* 送信ボタン */   
.landing_pg.line_page form.hs-form.lp-form .hs_submit{
  text-align: left !important;
  margin-top: 8px !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

.landing_pg.line_page form.hs-form.lp-form .hs_submit .actions{
  display: block !important;
  width: 100% !important;
}

.landing_pg.line_page form.hs-form.lp-form .hs_submit .actions input[type="submit"],
.landing_pg.line_page form.hs-form.lp-form .hs_submit .actions button[type="submit"],
.landing_pg.line_page form.hs-form.lp-form .hs_submit .actions .hs-button{
  display: flex !important;
  align-items: center;
  justify-content: center !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  border: none;
  cursor: pointer;
  padding: 24px 28px;
  font-size: 20px;
  font-weight: 700;
  border-radius: 3px;
  background: #2c2c2c;
  color: #fff;
}

/* エラー表示 */   
.landing_pg.line_page form.hs-form.lp-form .hs-error-msgs{
  margin: 6px 0 0 !important;
  padding: 0 12px !important;
  list-style: none !important;
}
.landing_pg.line_page form.hs-form.lp-form .hs-error-msg{
  display: block !important;
  margin: 0 !important;
  font-size: 12px !important;
  line-height: 1.4 !important;
  font-weight: 500 !important;
  color: #cd4954 !important;
}

.landing_pg.line_page form.hs-form.lp-form .hs-form-booleancheckbox .inputs-list{
  width: 100% !important;
  padding-left: 0 !important;
  margin: 0 !important;
  list-style: none !important;
  display: flex !important;
  justify-content: center !important;
}

.landing_pg.line_page form.hs-form.lp-form .hs-form-booleancheckbox .inputs-list > li{
  width: auto !important;
  display: block !important;
}

.landing_pg.line_page form.hs-form.lp-form label.hs-form-booleancheckbox-display{
  display: grid !important;
  grid-template-columns: 16px 1fr !important;
  column-gap: 6px !important;
  align-items: start !important;
  justify-items: start !important;
  text-align: left !important;
  width: fit-content !important;
  max-width: 900px !important;
  line-height: 1.6 !important;
}

.landing_pg.line_page form.hs-form.lp-form label.hs-form-booleancheckbox-display input[type="checkbox"]{
  margin: 0 !important;
  transform: translateY(0.90em);
}

.landing_pg.line_page form.hs-form.lp-form
label.hs-form-booleancheckbox-display{
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Safari only */   
@supports (-webkit-touch-callout: none) {
  .landing_pg.line_page form.hs-form
  label.hs-form-booleancheckbox-display{
    display: flex !important;
    align-items: center !important;  
    gap: 14px !important;           
    width: min(900px, 100%) !important;
    margin: 0 auto !important;
    text-align: left !important;
    line-height: 1.6 !important;
  }

  .landing_pg.line_page form.hs-form
  label.hs-form-booleancheckbox-display input[type="checkbox"]{
    -webkit-appearance: none !important;
    appearance: none !important;

    width: 14px !important;
    height: 14px !important;
    box-sizing: border-box !important;

    border: 1.5px solid #9CA3AF !important;
    border-radius: 2px !important;
    background: #fff !important;

    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;

    flex: 0 0 auto !important;
    display: inline-block !important;
    position: relative !important;

    top: 0.05em !important;          
  }

  .landing_pg.line_page form.hs-form
  label.hs-form-booleancheckbox-display input[type="checkbox"]:checked{
    background: #A71365 !important;
    border-color: #A71365 !important;
  }

  .landing_pg.line_page form.hs-form
  label.hs-form-booleancheckbox-display input[type="checkbox"]:checked::after{
    content: "" !important;
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;

    width: 5px !important;
    height: 9px !important;

    border: solid #fff !important;
    border-width: 0 2px 2px 0 !important;
    transform: translate(-50%, -58%) rotate(45deg) !important;
  }
}

@supports (-webkit-touch-callout: none) {

  .landing_pg.line_page form.hs-form.lp-form
  label.hs-form-booleancheckbox-display{
    display: flex !important;
    align-items: flex-start !important; 
    column-gap: 12px !important;
    row-gap: 0 !important;
  }

  .landing_pg.line_page form.hs-form.lp-form
  label.hs-form-booleancheckbox-display input[type="checkbox"]{
    transform: none !important;
    margin-top: 0.70em !important;  
  }
}

.landing_pg.line_page form.hs-form.lp-form .hs-error-msgs{
  margin: 8px 0 0 !important;
  padding: 0 !important;
  list-style: none !important;
  text-align: center !important; 
}

.landing_pg.line_page form.hs-form.lp-form .hs-error-msgs li{
  margin: 0 !important;
  padding: 0 !important;
}

.landing_pg.line_page form.hs-form.lp-form .hs-error-msg{
  display: inline-flex !important;   
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;

  margin: 0 auto !important;          
  padding: 8px 12px !important;

  font-size: 13px !important;
  line-height: 1.5 !important;
  font-weight: 600 !important;

  color: #cd4954 !important;
  background: rgba(205, 73, 84, 0.10) !important;
  border-radius: 8px !important;
}

.landing_pg.line_page form.hs-form.lp-form .hs-error-msg::before{
  content: "!" !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  width: 18px;
  height: 18px;

  font-size: 12px;
  font-weight: 800;

  color: #fff;
  background: #cd4954;
  border-radius: 50%;
  flex: 0 0 auto;
}

.landing_pg.line_page form.hs-form.lp-form .hs-form-field.hs-form-error input.hs-input,
.landing_pg.line_page form.hs-form.lp-form .hs-form-field.hs-form-error select.hs-input,
.landing_pg.line_page form.hs-form.lp-form .hs-form-field.hs-form-error textarea.hs-input{
  border-color: #cd4954 !important;
  box-shadow: 0 0 0 3px rgba(205, 73, 84, 0.18) !important;
}

.landing_pg.line_page form.hs-form.lp-form .hs_error_rollup{
  margin: 0 0 16px !important;
  padding: 0 !important;
  text-align: center !important; 
}

.landing_pg.line_page form.hs-form.lp-form .hs_error_rollup .hs-main-font-element{
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;

  margin: 0 auto !important;
  padding: 10px 12px !important;

  font-size: 13px !important;
  line-height: 1.5 !important;
  font-weight: 700 !important;

  color: #cd4954 !important;
  background: rgba(205, 73, 84, 0.10) !important;
  border-radius: 10px !important;
}


.landing_pg.line_page form.hs-form.lp-form .hs_error_rollup .hs-main-font-element::before{
  content: "!" !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  width: 18px;
  height: 18px;

  font-size: 12px;
  font-weight: 800;

  color: #fff;
  background: #cd4954;
  border-radius: 50%;
}

/* 送信ボタンホバー */

.landing_pg.line_page form.hs-form.lp-form .hs_submit .actions input[type="submit"],
.landing_pg.line_page form.hs-form.lp-form .hs_submit .actions button[type="submit"],
.landing_pg.line_page form.hs-form.lp-form .hs_submit .actions .hs-button{
  transition: opacity 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease !important;
  will-change: transform;
}

.landing_pg.line_page form.hs-form.lp-form .hs_submit .actions input[type="submit"]:hover,
.landing_pg.line_page form.hs-form.lp-form .hs_submit .actions button[type="submit"]:hover,
.landing_pg.line_page form.hs-form.lp-form .hs_submit .actions .hs-button:hover{
  opacity: 0.92;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}

.landing_pg.line_page form.hs-form.lp-form .hs_submit .actions input[type="submit"]:active,
.landing_pg.line_page form.hs-form.lp-form .hs_submit .actions button[type="submit"]:active,
.landing_pg.line_page form.hs-form.lp-form .hs_submit .actions .hs-button:active{
  transform: translateY(0px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
  opacity: 0.98;
}

.landing_pg.line_page form.hs-form.lp-form .hs_submit .actions input[type="submit"]:focus-visible,
.landing_pg.line_page form.hs-form.lp-form .hs_submit .actions button[type="submit"]:focus-visible,
.landing_pg.line_page form.hs-form.lp-form .hs_submit .actions .hs-button:focus-visible{
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(17,24,39,0.25), 0 8px 20px rgba(0,0,0,0.16) !important;
}

#hs_cos_wrapper_widget_1766107592301 label span.lp-badge{
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  margin-left: 10px !important;
  padding: 2px 8px !important;

  font-size: 12px !important;
  line-height: 1.2 !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;

  border-radius: 999px !important;
  white-space: nowrap !important;
  transform: translateY(-1px) !important;
}


#hs_cos_wrapper_widget_1766107592301 label span.lp-badge.is-required{
  background: #cd4954 !important;
  color: #fff !important;
}

#hs_cos_wrapper_widget_1766107592301 label span.lp-badge.is-optional{
  background: #EEF2F7 !important;
  color: #374151 !important;
  border: 1px solid #D1D5DB !important;
}

form.hs-form[data-form-id="6e419a47-0052-4ac4-8986-c361cc3291dc"] .lp-badge{
  font-size: 12px !important;
}


@media (max-width: 768px){
    
  .landing_pg.line_page h3.form-title.hs_cos_wrapper{
    font-size: 28px !important;  
    line-height: 1.3 !important;
    margin-bottom: 28px !important;
  }    

  .landing_pg.line_page form.hs-form.lp-form{
    max-width: 100% !important;
    padding: 0 16px !important;
  }

  .landing_pg.line_page h3.form-title.hs_cos_wrapper{
    margin: 0 auto 32px !important;
  }

  .landing_pg.line_page form.hs-form.lp-form .hs_firstname,
  .landing_pg.line_page form.hs-form.lp-form .hs_lastname{
    width: 100% !important;
    display: block !important;
    margin-right: 0 !important;
  }

  .landing_pg.line_page form.hs-form.lp-form label{
    font-size: 14px !important;
  }

  .landing_pg.line_page form.hs-form.lp-form .hs_submit .actions input[type="submit"],
  .landing_pg.line_page form.hs-form.lp-form .hs_submit .actions button[type="submit"],
  .landing_pg.line_page form.hs-form.lp-form .hs_submit .actions .hs-button{
    font-size: 16px !important;
    padding: 14px 16px !important;
  }

  .landing_pg.line_page form.hs-form.lp-form label.hs-form-booleancheckbox-display{
    max-width: 100% !important;
  }

  .landing_pg.line_page form.hs-form.lp-form .hs-error-msg{
    font-size: 12px !important;
    padding: 7px 10px !important;
  }  

}

/* ========================================
   Company Section
   ======================================== */

.company-section {
  --right-gutter: max(80px, clamp(40px, (100vw - 900px) / 6, 200px));
  --pad: 60px;
  --text-shift: clamp(0px, (100vw - 1100px) / 2, 280px);

  background: #0e0e0e;
  padding: 80px var(--right-gutter) 80px 0;
}

.company-content {
  width: calc(100% - var(--right-gutter));
  margin: 0;
  background: white;
  box-sizing: border-box;

  --pad: clamp(24px, 4vw, 60px);
  padding: var(--pad);

  --extra-left: clamp(0px, 0.8vw, 12px);
  padding-left: calc(var(--pad) + var(--extra-left));
}

.company-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.company-info {
  max-width: 1400px;
  width: 100%;
  text-align: left;

  padding-left: 0;
  margin-left: var(--text-shift);
}

.company-title {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 30px;
  color: #333;

  padding-left: 0;
  margin-left: var(--text-shift);
}

.company-table {
  width: 100%;
  max-width: 520px;
  margin: 0;
}

.company-row {
  text-align: left;
}

.company-label {
  font-size: 16px;
  font-weight: 700;
  color: #333;
}

.company-value {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
}

.company-link {
  color: #0066cc;
  text-decoration: none;
}

.company-link:hover {
  text-decoration: underline;
}

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

.company-list li {
  position: relative;
  padding-left: 1em;
  line-height: 1.8;
}

.company-list li::before {
  content: '•';
  position: absolute;
  left: 0;
}

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

.company-badge {
  height: 80px;
  width: auto;
}

.company-map-wrapper {
  --map-bleed: max(48px, clamp(16px, (100vw - 1000px) / 14, 90px));
  width: calc(100% + var(--right-gutter) + var(--map-bleed));
  height: clamp(320px, 40vw, 520px);
  margin-right: calc((var(--right-gutter) + var(--map-bleed)) * -1);
  overflow: hidden;
}

.company-map {
  width: 100%;
  height: 100%;
  border: none;
}

.company-logo {
  --push: 40px;

  width: calc(100% + var(--push));
  margin-right: calc(var(--push) * -1);

  display: flex;
  justify-content: flex-end;
  padding: 40px 0px;
  box-sizing: border-box;
}

.company-logo img {
  width: clamp(160px, 120vw, 680px);
  max-width: 100%;
  height: auto;
  margin: 8px;
}


@media (max-width: 768px) {
  .company-section {
    --right-gutter: 0px;
    overflow-x: clip;
    padding: 60px 20px;
  }

  .company-content {
    width: 100%;
    margin: 0 auto;
    padding: 60px 24px 0 24px;
    padding-bottom: 0;
    overflow: visible;
    position: relative;

  
  }

  .company-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: -24px;
    right: 0;
    bottom: 0;

    background: inherit;
    border-radius: inherit;
    box-shadow: inherit;

    z-index: 0;
    pointer-events: none;
  }

  .company-content > * {
    position: relative;
    z-index: 1;
  }

  .company-info {
    text-align: center;
    max-width: none;
  }

  .company-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: calc(var(--map-h) + var(--bleed-y) + 24px);
  }

  .company-title {
    font-size: 26px;
    margin: 0 0 24px;
  }

  .company-table {
    width: 100%;
    max-width: none;
    margin: 0 auto;
    text-align: left;
  }

  .company-label,
  .company-value {
    font-size: 16px;
  }

  .company-badges {
    justify-content: right;
  }

  .company-badge {
    height: 60px;
  }

  .company-map-wrapper {
    --bleed-x: 35px;
    --bleed-y: 44px;
    --map-h: 280px;

    position: relative;
    right: auto;
    bottom: auto;
    transform: none;

    width: calc(100% + var(--bleed-x));
    margin-right: calc(var(--bleed-x) * -1);
    height: var(--map-h);
    overflow: hidden;
    margin-bottom: calc(var(--bleed-y) * -1);
  }

  .company-logo {
    margin-top: var(--bleed-y);
    padding: 40px 30px 0 0;
  }

  .company-logo img {
    margin-top: clamp(16px, 6vw, 44px);
    width: clamp(160px, 80vw, 360px);
    height: auto;
    max-width: 100%;
  }
}


/* ========================================
   Reveal Animation 
   ======================================== */

/* ブロックに付く基本クラス */
.reveal-block {}

.reveal-block.is-in {
  animation: fadeUp 0.75s ease both;
}

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

.reveal-block.d1 { animation-delay: 0.08s; }
.reveal-block.d2 { animation-delay: 0.16s; }
.reveal-block.d3 { animation-delay: 0.24s; }
.reveal-block.d4 { animation-delay: 0.32s; }

.hero-section .logo,
.hero-section .feature-tag,
.hero-section .hero-image {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeUp 0.8s ease forwards;
}

.hero-section .logo { animation-delay: 0.10s; }
.hero-section .feature-tag { animation-delay: 0.25s; }
.hero-section .hero-image { animation-delay: 0.40s; }


/* ========================================
   Dot Navigation
   ======================================== */
.dot-nav{
  position: fixed;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;

  display: flex;
  flex-direction: column;
  gap: 12px;

  padding: 10px 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);

  box-shadow: 0 10px 24px rgba(0,0,0,0.10);
}

.dot-nav .dot{
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(167, 19, 101, 0.25);  
  border: 1px solid rgba(167, 19, 101, 0.25);
  display: block;
  transition: transform .15s ease, background .2s ease, opacity .2s ease;
  opacity: 0.9;
}

.dot-nav .dot:hover{
  transform: scale(1.15);
  background: rgba(167, 19, 101, 0.45);
}

.dot-nav .dot.is-active{
  background: #A71365;
  border-color: #A71365;
  transform: scale(1.25);
  opacity: 1;
}

.reveal-block{
  opacity: 0;
  transform: translateY(18px);
  will-change: transform, opacity;
}

.reveal-block.is-in{
  opacity: 1;
  transform: translateY(0);
  transition: opacity .75s ease, transform .75s ease;
}


.hero-section .reveal-block{
  opacity: 1;
  transform: none;
}


@media (max-width: 768px){
  .dot-nav{
    right: 10px;
    gap: 10px;
  }
  .dot-nav .dot{
    width: 9px;
    height: 9px;
  }
}

#about-top,
#points-top,
#value-top,
#actions-top,
#improvement-top,
#pricing-top{
  scroll-margin-top: 60px;
}

@media(max-width:768px){
  #about-top,
  #points-top,
  #value-top,
  #actions-top,
  #improvement-top,
  #pricing-top{
    scroll-margin-top: 30px;
  }
}

/* ========================================
   contact-bubble
   ======================================== */
a.contact-bubble{
  position: fixed !important;
  right: 18px !important;
  bottom: 24px !important;  
  z-index: 10050 !important;

  width: 120px !important;
  height: 120px !important;

  display: grid !important;
  place-items: center !important;
  text-align: center !important;

  background: #fff !important;
  border: none !important;
  border-radius: 999px !important;

  box-shadow:
    0 0 0 6px #A71365,
    0 14px 30px rgba(0,0,0,0.10) !important;

  color: #2e2e2e !important;
  text-decoration: none !important;

  font-size: 14px !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;

  overflow: visible !important;

  animation: bubbleBobPc 2.4s ease-in-out infinite !important;
  will-change: transform;

  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

a.contact-bubble::after{
  content:"";
  position:absolute;
  right: -2px;
  bottom: -2px;
  width:0;
  height:0;

  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 18px solid #A71365;

  transform: rotate(-45deg);
  filter: drop-shadow(0 10px 18px rgba(0,0,0,0.10));
  pointer-events: none;
}

@keyframes bubbleBobPc{
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); } 
}



@media (max-width: 768px){
  a.contact-bubble{
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;

    width: auto !important;
    height: 56px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;

    border-radius: 0 !important;

    background: #A71365 !important;
    color: #fff !important;
    border: none !important;

    box-shadow: 0 -10px 22px rgba(0,0,0,0.12), 0 14px 0 14px #A71365 !important;

    white-space: nowrap !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    line-height: 1 !important;

    padding: 0 12px env(safe-area-inset-bottom) !important;

    animation: mailBob 2.4s ease-in-out infinite !important;
    will-change: transform;
  }

  a.contact-bubble br{ display: none !important; }
  a.contact-bubble::after{ content: none !important; }

  a.contact-bubble::before{
    content:"";
    display: inline-block;
    width: 18px;
    height: 18px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23ffffff' d='M20 4H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h16a2 2 0 0 0 2-2V6a2 2 0 0 0-2-2Zm0 4-8 5L4 8V6l8 5 8-5v2Z'/%3E%3C/svg%3E");
  }
}

@keyframes mailBob{
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-2px); }
}





