/* ======== Layout CSS ======== */
section {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background-image: url(../img/sampleimg.png);
  background-size: cover;
  background-position: center;
}

.l-container {
  max-width: 900px;
}

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

.text {
  flex: 1;
  min-width: 250px;
}

.text h1 {
  font-size: clamp(0.8rem, 2vw, 1.2rem);
  color: #444;
  margin-bottom: 0.8rem;}

.text p {
  font-size: clamp(0.8rem, 1.6vw, 1rem);
  color: #555;
}

.text h1, .text p {
  font-family: 'Noto Serif JP', serif;
}

.logo img{
  width: 100%;
}

@media screen and (max-width: 768px) {
  .content {
    flex-direction: column;
    text-align: center;
    gap: 50px;
    padding: 0 20px;
  }

  .logo img {
    width: 160px;
  }
}

@media screen and (max-width: 480px) {
  .logo img {
    width: 130px;
  }
}

.button {
  text-align: center;
}
.button p {
  margin-bottom: 5px;
  font-family: 'Noto Serif JP', serif;
  font-weight: 600;
  color: #555;
  letter-spacing: 0.04rem;
  display: inline-block;
  position: relative;
}


.button a {
  position: relative;
  display: flex;
  justify-content: center;
  font-family: 'Noto Serif JP', serif;
  letter-spacing: 0.2rem;
  align-items: center;
  margin: 0 auto;
  max-width: 240px;
  padding: 10px 25px;
  color: #444;
  background:#fff4e5;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  filter: drop-shadow(0px 2px 4px #ccc);
  transition: 0.3s ease-in-out;
}


.button a i {
  margin-left: 10px;
  font-size: 1rem;
  transition: 0.2s ease-in-out;
}
.button a:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.15), 0 0 5px rgba(0, 0, 0, 0.1);
  background-color:#fff9f2;
}

.button a:hover i {
  transform: translateX(4px);
}

@media (max-width: 480px) {
  .button a {
    max-width: 85%;
    font-size: 1rem;
  }
}

